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

12345678

/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, const sp<DeviceDescriptor>& descriptor, uid_t uid) argument
[all...]
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DSessionLibrary.cpp69 void SessionLibrary::destroySession(const sp<Session>& session) { argument
71 mSessions.removeItem(session->sessionId());
/frameworks/base/wifi/java/android/net/wifi/aware/
H A DAttachCallback.java31 * @param session The Aware object on which we can execute further Aware operations - e.g.
34 public void onAttached(WifiAwareSession session) { argument
/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.java98 public void execute(ClientSession session) throws IOException { argument
99 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);
/frameworks/support/media-compat/api22/android/support/v4/media/session/
H A DMediaSessionCompatApi22.java16 package android.support.v4.media.session;
18 import android.media.session.MediaSession;
/frameworks/av/camera/ndk/
H A DNdkCameraCaptureSession.cpp34 void ACameraCaptureSession_close(ACameraCaptureSession* session) { argument
36 if (session != nullptr) {
37 session->closeByApp();
44 ACameraCaptureSession* session, ACameraDevice **device) {
46 if (session == nullptr || device == nullptr) {
47 ALOGE("%s: Error: invalid input: session %p, device %p",
48 __FUNCTION__, session, device);
52 if (session->isClosed()) {
53 ALOGE("%s: session %p is already closed", __FUNCTION__, session);
43 ACameraCaptureSession_getDevice( ACameraCaptureSession* session, ACameraDevice **device) argument
68 ACameraCaptureSession_capture( ACameraCaptureSession* session, ACameraCaptureSession_captureCallbacks* cbs, int numRequests, ACaptureRequest** requests, int* captureSequenceId) argument
89 ACameraCaptureSession_setRepeatingRequest( ACameraCaptureSession* session, ACameraCaptureSession_captureCallbacks* cbs, int numRequests, ACaptureRequest** requests, int* captureSequenceId) argument
110 ACameraCaptureSession_stopRepeating(ACameraCaptureSession* session) argument
125 ACameraCaptureSession_abortCaptures(ACameraCaptureSession* session) argument
[all...]
/frameworks/av/drm/mediacas/plugins/mock/
H A DMockSessionLibrary.cpp46 sp<MockCasSession> session = new MockCasSession(plugin); local
55 mIDToSessionMap.add(*sessionId, session);
78 sp<MockCasSession> session = mIDToSessionMap.valueAt(index); local
86 sp<MockCasSession> session = mIDToSessionMap.valueAt(index); local
87 if (session->getPlugin() == plugin) {
/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/support/media-compat/api23/android/support/v4/media/session/
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/support/media-compat/api24/android/support/v4/media/session/
H A DMediaControllerCompatApi24.java17 package android.support.v4.media.session;
19 import android.media.session.MediaController;
/frameworks/av/drm/mediacas/plugins/clearkey/
H A DClearKeySessionLibrary.cpp59 sp<ClearKeyCasSession> session = new ClearKeyCasSession(plugin); local
68 mIDToSessionMap.add(*sessionId, session);
91 sp<ClearKeyCasSession> session = mIDToSessionMap.valueAt(index); local
99 sp<ClearKeyCasSession> session = mIDToSessionMap.valueAt(index); local
100 if (session->getPlugin() == plugin) {
/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.cpp77 sp<ARTPSession> session = new ARTPSession; local
78 looper->registerHandler(session);
164 CHECK_EQ(session->setup(desc), (status_t)OK);
176 CHECK_EQ(session->countTracks(), 1u);
177 sp<MediaSource> source = session->trackAt(0);
/frameworks/base/core/tests/coretests/src/android/print/mockservice/
H A DPrinterDiscoverySessionCallbacks.java29 public void setSession(StubbablePrinterDiscoverySession session) { argument
30 mSession = session;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DEnergyProbe.java41 public EnergyProbe(int session) { argument
43 mVisualizer = new Visualizer(session);

Completed in 814 milliseconds

12345678