Searched defs:session (Results 51 - 57 of 57) sorted by relevance

123

/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp235 int session)
242 return mpAudioPolicy->start_output(mpAudioPolicy, output, stream, session);
247 int session)
254 return mpAudioPolicy->stop_output(mpAudioPolicy, output, stream, session);
452 int session,
458 return mpAudioPolicy->register_effect(mpAudioPolicy, desc, io, strategy, session, id);
1484 static int aps_move_effects(void *service, int session, argument
1492 return af->moveEffects(session, src_output, dst_output);
233 startOutput(audio_io_handle_t output, audio_stream_type_t stream, int session) argument
245 stopOutput(audio_io_handle_t output, audio_stream_type_t stream, int session) argument
449 registerEffect(const effect_descriptor_t *desc, audio_io_handle_t io, uint32_t strategy, int session, int id) argument
H A DAudioFlinger.cpp328 result.append("Global session refs:\n");
329 result.append(" session pid count\n");
483 // check if an effect chain with the same session ID is present on another
497 // if no audio session id is provided, create one here
508 // move effect chain to this output thread if an effect on same session was waiting
516 // Look for sync events awaiting for a session to be used.
890 // collect all of the thread's session IDs
892 // suspend effects associated with those session IDs
1088 ALOGV(" removing entry for pid %d session %d", pid, ref->mSessionid);
1501 ALOGV("updateSuspendedSessions_l() restore removing session
7986 int session = chain->sessionId(); local
8048 int session = chain->sessionId(); local
[all...]
/frameworks/base/voip/java/com/android/server/sip/
H A DSipSessionGroup.java118 // session that processes INVITE requests
286 SipSessionImpl session = mSessionMap.get(key);
287 if ((session != null) && isLoggable(session)) {
288 Log.d(TAG, "session key from event: " + key);
294 return ((session != null) ? session : mCallReceiverSession);
302 Log.d(TAG, "+++ add a session with key: '" + key + "'");
309 private synchronized void removeSipSession(SipSessionImpl session) { argument
310 if (session
1551 onError(ISipSession session, int errorCode, String message) argument
[all...]
/frameworks/base/services/java/com/android/server/
H A DInputMethodManagerService.java211 final IInputMethodSession session; field in class:InputMethodManagerService.SessionState
218 + " session " + Integer.toHexString(
219 System.identityHashCode(session))
227 session = _session;
368 * Currently enabled session. Only touched by service thread, not
566 public void sessionCreated(IInputMethodSession session) throws RemoteException { argument
567 mParentIMMS.onSessionCreated(mMethod, session);
1075 final SessionState session = mCurClient.curSession;
1077 executeOrSendMessage(session.method, mCaller.obtainMessageOOO(
1078 MSG_START_INPUT, session, mCurInputContex
1277 onSessionCreated(IInputMethod method, IInputMethodSession session) argument
2228 setEnabledSessionInMainThread(SessionState session) argument
[all...]
H A DBackupManagerService.java288 public ActiveRestoreSession session; field in class:BackupManagerService.RestoreGetSetsParams
294 session = _session;
613 // cache the result in the active session
614 synchronized (params.session) {
615 params.session.mRestoreSets = sets;
631 // Done: reset the session timeout clock
650 // Client app left the restore session dangling. We know that it
654 Slog.w(TAG, "Restore session timed out; aborting");
4233 // that has opened a restore session.
4543 // Furthermore we need to reset the session timeou
5765 EndRestoreRunnable(BackupManagerService manager, ActiveRestoreSession session) argument
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DWindowManagerService.java2089 public int addWindow(Session session, IWindow client, int seq, argument
2195 win = new WindowState(this, session, client, token,
2330 public void removeWindow(Session session, IWindow client) { argument
2332 WindowState win = windowForClientLocked(session, client, false);
2336 removeWindowLocked(session, win);
2340 public void removeWindowLocked(Session session, WindowState win) { argument
2402 removeWindowInnerLocked(session, win);
2414 private void removeWindowInnerLocked(Session session, WindowState win) { argument
2540 void setTransparentRegionWindow(Session session, IWindow client, Region region) { argument
2544 WindowState w = windowForClientLocked(session, clien
2554 setInsetsWindow(Session session, IWindow client, int touchableInsets, Rect contentInsets, Rect visibleInsets, Region touchableRegion) argument
2581 getWindowDisplayFrame(Session session, IWindow client, Rect outDisplayFrame) argument
2719 relayoutWindow(Session session, IWindow client, int seq, WindowManager.LayoutParams attrs, int requestedWidth, int requestedHeight, int viewVisibility, int flags, Rect outFrame, Rect outContentInsets, Rect outVisibleInsets, Configuration outConfig, Surface outSurface) argument
3031 performDeferredDestroyWindow(Session session, IWindow client) argument
3047 outOfMemoryWindow(Session session, IWindow client) argument
3063 finishDrawingWindow(Session session, IWindow client) argument
7029 prepareDragSurface(IWindow window, SurfaceSession session, int flags, int width, int height, Surface outSurface) argument
8040 windowForClientLocked(Session session, IWindow client, boolean throwOnError) argument
8045 windowForClientLocked(Session session, IBinder client, boolean throwOnError) argument
[all...]
/frameworks/base/core/java/android/view/
H A DView.java11905 * Retrieve private session object this view hierarchy is using to
11907 * @return the session object to communicate with the window manager
17941 AttachInfo(IWindowSession session, IWindow window, Display display, argument
17943 mSession = session;

Completed in 752 milliseconds

123