Searched defs:session (Results 1 - 25 of 144) sorted by relevance

123456

/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DSoundTriggerSession.cpp25 status_t SoundTriggerSessionCollection::acquireSession(audio_session_t session, argument
28 add(session, ioHandle);
33 status_t SoundTriggerSessionCollection::releaseSession(audio_session_t session) argument
35 ssize_t index = indexOfKey(session);
37 ALOGW("acquireSoundTriggerSession() session %d not registered", session);
41 removeItem(session);
H A DSessionRoute.cpp38 bool SessionRouteMap::hasRoute(audio_session_t session) argument
40 return indexOfKey(session) >= 0 && valueFor(session)->mDeviceDescriptor != 0;
43 bool SessionRouteMap::hasRouteChanged(audio_session_t session) argument
45 if (indexOfKey(session) >= 0) {
46 if (valueFor(session)->mChanged) {
47 valueFor(session)->mChanged = false;
54 void SessionRouteMap::removeRoute(audio_session_t session) argument
56 sp<SessionRoute> route = indexOfKey(session) >= 0 ? valueFor(session)
66 incRouteActivity(audio_session_t session) argument
72 decRouteActivity(audio_session_t session) argument
90 addRoute(audio_session_t session, audio_stream_type_t streamType, audio_source_t source, sp<DeviceDescriptor> descriptor, uid_t uid) argument
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DSessionLibrary.cpp66 void SessionLibrary::destroySession(const sp<Session>& session) { argument
68 mSessions.removeItem(session->sessionId());
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestUpdateInbox.java33 public void execute(ClientSession session) throws IOException { argument
34 executePut(session, FILLER_BYTE);
H A DBluetoothMasRequestGetFolderListing.java72 public void execute(ClientSession session) throws IOException { argument
73 executeGet(session);
H A DBluetoothMasRequestGetFolderListingSize.java53 public void execute(ClientSession session) throws IOException { argument
54 executeGet(session);
H A DBluetoothMasRequestGetMessage.java86 public void execute(ClientSession session) throws IOException { argument
87 executeGet(session);
H A DBluetoothMasRequestGetMessagesListingSize.java54 public void execute(ClientSession session) throws IOException { argument
55 executeGet(session);
H A DBluetoothMasRequestSetMessageStatus.java49 public void execute(ClientSession session) throws IOException { argument
50 executePut(session, FILLER_BYTE);
H A DBluetoothMasRequestSetNotificationRegistration.java45 public void execute(ClientSession session) throws IOException { argument
46 executePut(session, FILLER_BYTE);
H A DBluetoothMasRequestSetPath.java52 public void execute(ClientSession session) { argument
59 hs = session.setPath(mHeaderSet, false, false);
62 hs = session.setPath(mHeaderSet, true, false);
H A DBluetoothMasRequestPushMessage.java76 public void execute(ClientSession session) throws IOException { argument
77 executePut(session, mMsg.getBytes());
/frameworks/support/v4/api22/android/support/v4/media/session/
H A DMediaSessionCompatApi22.java16 package android.support.v4.media.session;
18 import android.media.session.MediaSession;
H A DPlaybackStateCompatApi22.java17 package android.support.v4.media.session;
19 import android.media.session.PlaybackState;
/frameworks/support/v4/froyo/android/support/v4/media/session/
H A DMediaSessionCompatApi8.java16 package android.support.v4.media.session;
/frameworks/base/core/java/org/apache/http/conn/ssl/
H A DX509HostnameVerifier.java67 boolean verify(String host, SSLSession session); argument
/frameworks/base/media/java/android/media/session/
H A DParcelableVolumeInfo.java16 package android.media.session;
24 * session. The public implementation is {@link MediaController.PlaybackInfo}.
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapRequestSetPath.java52 public void execute(ClientSession session) { argument
61 hs = session.setPath(mHeaderSet, false, false);
64 hs = session.setPath(mHeaderSet, true, false);
/frameworks/support/v4/api23/android/support/v4/media/
H A DMediaControllerCompatApi23.java17 package android.support.v4.media.session;
19 import android.media.session.MediaController;
H A DMediaSessionCompatApi23.java17 package android.support.v4.media.session;
/frameworks/av/media/libmedia/
H A DIRemoteDisplayClient.cpp41 uint32_t width, uint32_t height, uint32_t flags, uint32_t session)
49 data.writeInt32(session);
84 uint32_t session = data.readInt32(); local
85 onDisplayConnected(surfaceTexture, width, height, flags, session);
40 onDisplayConnected(const sp<IGraphicBufferProducer>& bufferProducer, uint32_t width, uint32_t height, uint32_t flags, uint32_t session) argument
/frameworks/av/media/libstagefright/rtsp/
H A Drtp_test.cpp79 sp<ARTPSession> session = new ARTPSession; local
80 looper->registerHandler(session);
166 CHECK_EQ(session->setup(desc), (status_t)OK);
178 CHECK_EQ(session->countTracks(), 1u);
179 sp<MediaSource> source = session->trackAt(0);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DEnergyProbe.java41 public EnergyProbe(int session) { argument
43 mVisualizer = new Visualizer(session);
/frameworks/base/services/core/java/com/android/server/wm/
H A DStrictModeFlash.java41 public StrictModeFlash(Display display, SurfaceSession session) { argument
44 ctrl = new SurfaceControl(session, "StrictModeFlash",
/frameworks/support/v4/java/android/support/v4/media/session/
H A DParcelableVolumeInfo.java16 package android.support.v4.media.session;

Completed in 486 milliseconds

123456