HomeSort by relevance Sort by last modified time
    Searched refs:newSession (Results 1 - 25 of 57) sorted by null

1 2 3

  /frameworks/base/core/java/android/service/voice/
IVoiceInteractionSessionService.aidl 27 void newSession(IBinder token, in Bundle args, int startFlags);
VoiceInteractionSessionService.java 47 public void newSession(IBinder token, Bundle args, int startFlags) {
  /frameworks/base/core/java/com/android/internal/textservice/
ISpellCheckerServiceCallback.aidl 29 // TODO: Currently SpellCheckerSession just ignores null newSession and continues waiting for
30 // the next onSessionCreated with non-null newSession, which is supposed to never happen if
34 void onSessionCreated(ISpellCheckerSession newSession);
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
AbstractSessionContextTest.java 47 SslSessionWrapper a = newSession("a");
48 SslSessionWrapper b = newSession("b");
59 SslSessionWrapper a = newSession("a");
60 SslSessionWrapper b = newSession("b");
61 SslSessionWrapper c = newSession("c");
62 SslSessionWrapper d = newSession("d");
77 SslSessionWrapper a = newSession("a");
78 SslSessionWrapper b = newSession("b");
79 SslSessionWrapper c = newSession("c");
80 SslSessionWrapper d = newSession("d")
    [all...]
  /frameworks/support/customtabs/tests/src/android/support/customtabs/
TestCustomTabsService.java 39 protected boolean newSession(CustomTabsSessionToken sessionToken) {
PostMessageTest.java 91 mSession = client.newSession(mCallback);
  /frameworks/opt/net/voip/src/java/android/net/sip/
ISipSessionListener.aidl 77 * @param newSession the new session that the call will be transferred to
80 void onCallTransferring(in ISipSession newSession, String sessionDescription);
SipAudioCall.java 537 public void onCallTransferring(SipSession newSession,
540 + mSipSession + " newSession=" + newSession);
541 mTransferringSession = newSession;
544 newSession.makeCall(newSession.getPeerProfile(),
548 newSession.answerCall(answer, SESSION_TIMEOUT);
552 newSession.endCall();
    [all...]
  /frameworks/support/customtabs/src/android/support/customtabs/
ICustomTabsService.aidl 32 boolean newSession(in ICustomTabsCallback callback) = 2;
CustomTabsService.java 91 public boolean newSession(ICustomTabsCallback callback) {
104 return CustomTabsService.this.newSession(sessionToken);
191 protected abstract boolean newSession(CustomTabsSessionToken sessionToken);
CustomTabsClient.java 187 public CustomTabsSession newSession(final CustomTabsCallback callback) {
240 if (!mService.newSession(wrapper)) return null;
  /frameworks/base/telephony/java/android/telephony/ims/stub/
ImsCallSessionListenerImplBase.java 98 public void callSessionMergeStarted(IImsCallSession session, IImsCallSession newSession,
136 public void callSessionConferenceExtended(IImsCallSession session, IImsCallSession newSession,
149 IImsCallSession newSession,
  /frameworks/base/telephony/java/com/android/ims/internal/
ImsCallSession.java 195 * Called when the session merge has been started. At this point, the {@code newSession}
200 * @param newSession the session object that is merged with an active & hold session
203 ImsCallSession newSession, ImsCallProfile profile) {
257 * @param newSession the session object that is extended to the conference
261 ImsCallSession newSession, ImsCallProfile profile) {
280 ImsCallSession newSession, ImsCallProfile profile) {
    [all...]
IImsCallSessionListener.aidl 55 in IImsCallSession newSession, in ImsCallProfile profile);
74 in IImsCallSession newSession, in ImsCallProfile profile);
78 in IImsCallSession newSession, in ImsCallProfile profile);
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipSessionGroup.java 290 private synchronized void addSipSession(SipSessionImpl newSession) {
291 removeSipSession(newSession);
292 String key = newSession.getCallId();
293 mSessionMap.put(key, newSession);
294 if (isLoggable(newSession)) {
425 SipSessionImpl newSession = new SipSessionImpl(listener);
426 newSession.mServerTransaction = transaction;
427 newSession.mState = newState;
428 newSession.mDialog = newSession.mServerTransaction.getDialog()
    [all...]
SipSessionListenerProxy.java 124 public void onCallTransferring(final ISipSession newSession,
131 mListener.onCallTransferring(newSession, sessionDescription);
  /packages/apps/Settings/src/com/android/settings/applications/
AppStateBaseBridge.java 41 mAppSession = mAppState != null ? mAppState.newSession(this) : null;
  /packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
AppStateBaseBridge.java 41 mAppSession = mAppState != null ? mAppState.newSession(this) : null;
  /frameworks/base/services/autofill/java/com/android/server/autofill/
AutofillManagerServiceImpl.java 291 final Session newSession = createSessionByTokenLocked(activityToken, uid, appCallbackToken,
293 if (newSession == null) {
298 "id=" + newSession.id + " uid=" + uid + " s=" + mInfo.getServiceInfo().packageName
303 newSession.updateLocked(autofillId, virtualBounds, value, ACTION_START_SESSION, flags);
305 return newSession.id;
403 final Session newSession = new Session(this, mUi, mContext, mHandlerCaller, mUserId, mLock,
406 mSessions.put(newSession.id, newSession);
408 return newSession;
  /frameworks/av/drm/libdrmframework/plugins/forward-lock/FwdLockEngine/src/
FwdLockEngine.cpp 391 ConvertSession *newSession = new ConvertSession();
393 FwdLockConv_OpenSession(&(newSession->uniqueId), &(newSession->output))) {
394 convertSessionMap.addValue(convertId, newSession);
398 delete newSession;
  /prebuilts/sdk/current/support/customtabs/
android-support-customtabs.jar 
  /frameworks/opt/net/ims/src/java/com/android/ims/
ImsCall.java     [all...]
  /packages/apps/Settings/src/com/android/settings/datausage/
DataSaverSummary.java 64 mSession = mApplicationsState.newSession(this);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/specialaccess/
ManageApplications.java 91 mAppSession = mApplicationsState.newSession(mAppSessionCallbacks);
  /frameworks/base/telecomm/java/android/telecom/Logging/
SessionManager.java 152 Session newSession = new Session(getNextSessionID(), shortMethodName,
154 mSessionMapper.put(threadId, newSession);

Completed in 1670 milliseconds

1 2 3