Home
last modified time | relevance | path

Searched defs:session (Results 1 – 25 of 75) sorted by relevance

123

/frameworks/opt/net/voip/src/java/android/net/sip/
DSipSessionAdapter.java25 public void onCalling(ISipSession session) { in onCalling()
28 public void onRinging(ISipSession session, SipProfile caller, in onRinging()
32 public void onRingingBack(ISipSession session) { in onRingingBack()
35 public void onCallEstablished(ISipSession session, in onCallEstablished()
39 public void onCallEnded(ISipSession session) { in onCallEnded()
42 public void onCallBusy(ISipSession session) { in onCallBusy()
45 public void onCallTransferring(ISipSession session, in onCallTransferring()
49 public void onCallChangeFailed(ISipSession session, int errorCode, in onCallChangeFailed()
53 public void onError(ISipSession session, int errorCode, String message) { in onError()
56 public void onRegistering(ISipSession session) { in onRegistering()
[all …]
DISipSessionListener.aidl32 void onCalling(in ISipSession session); in onCalling()
41 void onRinging(in ISipSession session, in SipProfile caller, in onRinging()
49 void onRingingBack(in ISipSession session); in onRingingBack()
57 void onCallEstablished(in ISipSession session, in onCallEstablished()
65 void onCallEnded(in ISipSession session); in onCallEnded()
72 void onCallBusy(in ISipSession session); in onCallBusy()
90 void onError(in ISipSession session, int errorCode, String errorMessage); in onError()
99 void onCallChangeFailed(in ISipSession session, int errorCode, in onCallChangeFailed()
107 void onRegistering(in ISipSession session); in onRegistering()
115 void onRegistrationDone(in ISipSession session, int duration); in onRegistrationDone()
[all …]
DSipSession.java117 public void onCalling(SipSession session) { in onCalling()
127 public void onRinging(SipSession session, SipProfile caller, in onRinging()
136 public void onRingingBack(SipSession session) { in onRingingBack()
145 public void onCallEstablished(SipSession session, in onCallEstablished()
154 public void onCallEnded(SipSession session) { in onCallEnded()
162 public void onCallBusy(SipSession session) { in onCallBusy()
184 public void onError(SipSession session, int errorCode, in onError()
195 public void onCallChangeFailed(SipSession session, int errorCode, in onCallChangeFailed()
204 public void onRegistering(SipSession session) { in onRegistering()
213 public void onRegistrationDone(SipSession session, int duration) { in onRegistrationDone()
[all …]
DSipAudioCall.java391 public void onRingingBack(SipSession session) { in createListener()
404 public void onRinging(SipSession session, in createListener()
428 public void onCallEstablished(SipSession session, in createListener()
455 public void onCallEnded(SipSession session) { in createListener()
479 public void onCallBusy(SipSession session) { in createListener()
493 public void onCallChangeFailed(SipSession session, int errorCode, in createListener()
510 public void onError(SipSession session, int errorCode, in createListener()
516 public void onRegistering(SipSession session) { in createListener()
521 public void onRegistrationTimeout(SipSession session) { in createListener()
526 public void onRegistrationFailed(SipSession session, int errorCode, in createListener()
[all …]
DSipManager.java397 ISipSession session = mSipService.getPendingSession(callId); in takeAudioCall() local
478 ISipSession session = mSipService.createSession(localProfile, in register() local
503 ISipSession session = mSipService.createSession(localProfile, in unregister() local
586 private String getUri(ISipSession session) { in getUri()
599 public void onRegistering(ISipSession session) { in onRegistering()
604 public void onRegistrationDone(ISipSession session, int duration) { in onRegistrationDone()
611 public void onRegistrationFailed(ISipSession session, int errorCode, in onRegistrationFailed()
617 public void onRegistrationTimeout(ISipSession session) { in onRegistrationTimeout()
/frameworks/opt/net/voip/src/java/com/android/server/sip/
DSipSessionListenerProxy.java47 public void onCalling(final ISipSession session) { in onCalling()
62 public void onRinging(final ISipSession session, final SipProfile caller, in onRinging()
78 public void onRingingBack(final ISipSession session) { in onRingingBack()
93 public void onCallEstablished(final ISipSession session, in onCallEstablished()
109 public void onCallEnded(final ISipSession session) { in onCallEnded()
140 public void onCallBusy(final ISipSession session) { in onCallBusy()
155 public void onCallChangeFailed(final ISipSession session, in onCallChangeFailed()
171 public void onError(final ISipSession session, final int errorCode, in onError()
187 public void onRegistering(final ISipSession session) { in onRegistering()
202 public void onRegistrationDone(final ISipSession session, in onRegistrationDone()
[all …]
DSipService.java386 private synchronized void addPendingSession(ISipSession session) { in addPendingSession()
389 mPendingSessions.put(session.getCallId(), session); in addPendingSession() local
548 SipSessionGroup.SipSessionImpl session = in onRinging() local
575 public void onError(ISipSession session, int errorCode, in onError()
993 public void onRegistering(ISipSession session) { in onRegistering()
1003 private boolean notCurrentSession(ISipSession session) { in notCurrentSession()
1013 public void onRegistrationDone(ISipSession session, int duration) { in onRegistrationDone()
1050 public void onRegistrationFailed(ISipSession session, int errorCode, in onRegistrationFailed()
1075 public void onRegistrationTimeout(ISipSession session) { in onRegistrationTimeout()
/frameworks/base/core/java/android/view/inputmethod/
DInputMethod.java77 public void sessionCreated(InputMethodSession session); in sessionCreated()
166 public void setSessionEnabled(InputMethodSession session, boolean enabled); in setSessionEnabled()
177 public void revokeSession(InputMethodSession session); in revokeSession()
/frameworks/base/core/java/android/app/backup/
DBackupManager.java144 RestoreSession session = null; in requestRestore() local
169 RestoreSession session = null; in beginRestoreSession() local
/frameworks/ml/bordeaux/service/src/android/bordeaux/services/
DBordeauxSessionManager.java88 Session session = mSessions.get(mKey); in modelChanged() local
131 Session session = new Session(); in getSessionBinder() local
156 Session session = mSessions.get(key.value); in saveSession() local
DBordeauxSessionStorage.java102 BordeauxSessionManager.Session session = new BordeauxSessionManager.Session(); in getSessionFromCursor() local
139 BordeauxSessionManager.Session session = getSessionFromCursor(cursor); in getAllSessions() local
/frameworks/base/core/java/com/android/internal/view/
DIInputSessionCallback.aidl28 void sessionCreated(IInputMethodSession session); in sessionCreated()
DIInputMethod.aidl47 void setSessionEnabled(IInputMethodSession session, boolean enabled); in setSessionEnabled()
49 void revokeSession(IInputMethodSession session); in revokeSession()
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
DSimplePlayer.java65 …stopButtonId, ImageView stopButton, TextView sessionText, String fileName, int stream, int session) in SimplePlayer()
72 …stopButtonId, ImageView stopButton, TextView sessionText, int fileResId, int stream, int session) { in SimplePlayer()
79 int stopButtonId, ImageView stopButton, TextView sessionText, int stream, int session) { in set()
DVisualizerTest.java251 private void getEffect(int session) { in getEffect()
283 private void putEffect(int session) { in putEffect()
/frameworks/av/media/libmedia/
DIRemoteDisplayClient.cpp41 uint32_t width, uint32_t height, uint32_t flags, uint32_t session) in onDisplayConnected()
84 uint32_t session = data.readInt32(); in onTransact() local
/frameworks/av/media/libeffects/preprocessing/
DPreProcessing.cpp89 preproc_session_t *session; // session the effect is on member
729 preproc_session_t *session, in Effect_Create()
752 int Session_Init(preproc_session_t *session) in Session_Init()
769 extern "C" int Session_CreateEffect(preproc_session_t *session, in Session_CreateEffect()
841 int Session_ReleaseEffect(preproc_session_t *session, in Session_ReleaseEffect()
879 int Session_SetConfig(preproc_session_t *session, effect_config_t *config) in Session_SetConfig()
1008 void Session_GetConfig(preproc_session_t *session, effect_config_t *config) in Session_GetConfig()
1020 int Session_SetReverseConfig(preproc_session_t *session, effect_config_t *config) in Session_SetReverseConfig()
1053 void Session_GetReverseConfig(preproc_session_t *session, effect_config_t *config) in Session_GetReverseConfig()
1064 void Session_SetProcEnabled(preproc_session_t *session, uint32_t procId, bool enabled) in Session_SetProcEnabled()
[all …]
/frameworks/base/core/java/android/view/textservice/
DSpellCheckerSession.java258 private void processTask(ISpellCheckerSession session, SpellCheckerParams scp, in processTask()
327 public synchronized void onServiceConnected(ISpellCheckerSession session) { in onServiceConnected()
393 ISpellCheckerSession session; in processOrEnqueueTask() local
465 public void onServiceConnected(ISpellCheckerSession session) { in onServiceConnected()
/frameworks/base/core/java/android/print/
DPrinterDiscoverySession.java292 public PrinterDiscoveryObserver(PrinterDiscoverySession session) { in PrinterDiscoveryObserver()
299 PrinterDiscoverySession session = mWeakSession.get(); in onPrintersAdded() local
309 PrinterDiscoverySession session = mWeakSession.get(); in onPrintersRemoved() local
/frameworks/base/core/java/android/inputmethodservice/
DAbstractInputMethodService.java71 public void setSessionEnabled(InputMethodSession session, boolean enabled) { in setSessionEnabled()
80 public void revokeSession(InputMethodSession session) { in revokeSession()
DIInputMethodWrapper.java94 public void sessionCreated(InputMethodSession session) { in sessionCreated()
278 public void setSessionEnabled(IInputMethodSession session, boolean enabled) { in setSessionEnabled()
294 public void revokeSession(IInputMethodSession session) { in revokeSession()
/frameworks/base/services/java/com/android/server/wm/
DBlackFrame.java39 BlackSurface(SurfaceSession session, int layer, int l, int t, int r, int b, int layerStack) in BlackSurface()
115 public BlackFrame(SurfaceSession session, Rect outer, Rect inner, int layer, int layerStack, in BlackFrame()
/frameworks/av/media/libstagefright/foundation/
DANetworkSession.cpp145 ANetworkSession::NetworkThread::NetworkThread(ANetworkSession *session) in NetworkThread()
975 sp<Session> session; in createClientOrServer() local
1177 const sp<Session> session = mSessions.valueAt(index); in connectUDPSession() local
1216 const sp<Session> session = mSessions.valueAt(index); in sendRequest() local
1234 const sp<Session> session = mSessions.valueAt(index); in switchToWebSocketMode() local
1263 const sp<Session> &session = mSessions.valueAt(i); in threadLoop() local
1322 const sp<Session> &session = mSessions.valueAt(i); in threadLoop() local
1401 sp<Session> session = *sessionsToAdd.begin(); in threadLoop() local
/frameworks/base/media/java/android/media/
DRemoteDisplay.java126 final int width, final int height, final int flags, final int session) { in notifyDisplayConnected()
160 int width, int height, int flags, int session); in onDisplayConnected()
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
DEnergyProbe.java41 public EnergyProbe(int session) { in EnergyProbe()

123