Searched defs:session (Results 126 - 132 of 132) sorted by relevance

123456

/frameworks/base/services/core/java/com/android/server/am/
H A DActivityStackSupervisor.java1388 // If this activity is being launched as part of a voice session, we need
1390 // be part of the voice session, we can only launch it if it has explicitly
1406 // If the caller is starting a new voice session, just make sure the target
2502 void finishVoiceTask(IVoiceInteractionSession session) { argument
2508 stack.finishVoiceTask(session);
H A DActivityManagerService.java3499 Intent intent, String resolvedType, IVoiceInteractionSession session,
3511 if (session == null || interactor == null) {
3512 throw new NullPointerException("null session or interactor");
3518 resolvedType, session, interactor, null, null, 0, startFlags, profilerInfo, null,
4471 public void finishVoiceTask(IVoiceInteractionSession session) { argument
4475 mStackSupervisor.finishVoiceTask(session);
3498 startVoiceActivity(String callingPackage, int callingPid, int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session, IVoiceInteractor interactor, int startFlags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
/frameworks/av/services/audiopolicy/
H A DAudioPolicyManager.cpp889 audio_session_t session,
972 *output = getOutputForDevice(device, session, *stream,
983 audio_session_t session __unused,
1064 // FIXME: We should check the audio session here but we do not have it in this context.
1238 audio_session_t session)
1240 ALOGV("startOutput() output %d, stream %d, session %d", output, stream, session);
1343 audio_session_t session)
1345 ALOGV("stopOutput() output %d, stream %d, session %d", output, stream, session);
887 getOutputForAttr(const audio_attributes_t *attr, audio_io_handle_t *output, audio_session_t session, audio_stream_type_t *stream, uint32_t samplingRate, audio_format_t format, audio_channel_mask_t channelMask, audio_output_flags_t flags, const audio_offload_info_t *offloadInfo) argument
1236 startOutput(audio_io_handle_t output, audio_stream_type_t stream, audio_session_t session) argument
1341 stopOutput(audio_io_handle_t output, audio_stream_type_t stream, audio_session_t session) argument
1456 getInputForAttr(const audio_attributes_t *attr, audio_io_handle_t *input, audio_session_t session, uint32_t samplingRate, audio_format_t format, audio_channel_mask_t channelMask, audio_input_flags_t flags, input_type_t *inputType) argument
1618 startInput(audio_io_handle_t input, audio_session_t session) argument
1686 stopInput(audio_io_handle_t input, audio_session_t session) argument
1736 releaseInput(audio_io_handle_t input, audio_session_t session) argument
1945 registerEffect(const effect_descriptor_t *desc, audio_io_handle_t io, uint32_t strategy, int session, int id) argument
2975 acquireSoundTriggerSession(audio_session_t *session, audio_io_handle_t *ioHandle, audio_devices_t *device) argument
2988 releaseSoundTriggerSession(audio_session_t session) argument
[all...]
/frameworks/base/core/java/android/app/
H A DIActivityManager.java86 Intent intent, String resolvedType, IVoiceInteractionSession session,
96 public void finishVoiceTask(IVoiceInteractionSession session) throws RemoteException; argument
85 startVoiceActivity(String callingPackage, int callingPid, int callingUid, Intent intent, String resolvedType, IVoiceInteractionSession session, IVoiceInteractor interactor, int flags, ProfilerInfo profilerInfo, Bundle options, int userId) argument
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java393 public ActiveRestoreSession session; field in class:BackupManagerService.RestoreGetSetsParams
399 session = _session;
842 // cache the result in the active session
843 synchronized (params.session) {
844 params.session.mRestoreSets = sets;
860 // Done: reset the session timeout clock
879 // Client app left the restore session dangling. We know that it
883 Slog.w(TAG, "Restore session timed out; aborting");
7747 // Clear any ongoing session timeout.
7758 // We were invoked via an active restore session, no
9210 EndRestoreRunnable(BackupManagerService manager, ActiveRestoreSession session) argument
[all...]
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowManagerService.java2271 public int addWindow(Session session, IWindow client, int seq, argument
2297 if (!displayContent.hasAccess(session.mUid)) {
2419 win = new WindowState(this, session, client, token,
2591 public void removeWindow(Session session, IWindow client) { argument
2593 WindowState win = windowForClientLocked(session, client, false);
2597 removeWindowLocked(session, win);
2601 public void removeWindowLocked(Session session, WindowState win) { argument
2675 removeWindowInnerLocked(session, win);
2685 void removeWindowInnerLocked(Session session, WindowState win) { argument
2829 void setTransparentRegionWindow(Session session, IWindo argument
2843 setInsetsWindow(Session session, IWindow client, int touchableInsets, Rect contentInsets, Rect visibleInsets, Region touchableRegion) argument
2873 getWindowDisplayFrame(Session session, IWindow client, Rect outDisplayFrame) argument
2995 relayoutWindow(Session session, IWindow client, int seq, WindowManager.LayoutParams attrs, int requestedWidth, int requestedHeight, int viewVisibility, int flags, Rect outFrame, Rect outOverscanInsets, Rect outContentInsets, Rect outVisibleInsets, Rect outStableInsets, Configuration outConfig, Surface outSurface) argument
3316 performDeferredDestroyWindow(Session session, IWindow client) argument
3332 outOfMemoryWindow(Session session, IWindow client) argument
3348 finishDrawingWindow(Session session, IWindow client) argument
5548 dispatchNewAnimatorScaleLocked(Session session) argument
7369 prepareDragSurface(IWindow window, SurfaceSession session, int flags, int width, int height, Surface outSurface) argument
8528 windowForClientLocked(Session session, IWindow client, boolean throwOnError) argument
8533 windowForClientLocked(Session session, IBinder client, boolean throwOnError) argument
[all...]
/frameworks/base/core/java/android/view/
H A DView.java13495 * Retrieve private session object this view hierarchy is using to
13497 * @return the session object to communicate with the window manager
20561 AttachInfo(IWindowSession session, IWindow window, Display display, argument
20563 mSession = session;

Completed in 356 milliseconds

123456