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

123456

/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DCryptoFactory.cpp46 android::sp<Session> session = SessionLibrary::get()->findSession( local
48 *plugin = new CryptoPlugin(session);
H A DCryptoPlugin.h34 CryptoPlugin(const android::sp<Session>& session) : mSession(session) {} argument
H A DSessionLibrary.cpp73 void SessionLibrary::destroySession(const sp<Session>& session) { argument
75 mSessions.removeItem(session->sessionId());
H A DDrmPlugin.cpp33 sp<Session> session = mSessionLibrary->createSession(); local
34 sessionId = session->sessionId();
39 sp<Session> session = mSessionLibrary->findSession(sessionId); local
40 mSessionLibrary->destroySession(session);
57 sp<Session> session = mSessionLibrary->findSession(scope); local
59 return session->getKeyRequest(initData, initDataType, &request);
66 sp<Session> session = mSessionLibrary->findSession(scope); local
67 status_t res = session->provideKeyResponse(response);
/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;
/frameworks/support/v4/froyo/android/support/v4/media/session/
H A DMediaSessionCompatApi8.java16 package android.support.v4.media.session;
/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/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;
/frameworks/base/core/java/android/hardware/display/
H A DWifiDisplaySessionInfo.java23 * This class contains information regarding a wifi display session
24 * (such as session id, source ip address, etc.). This is needed for
44 int session = in.readInt();
49 return new WifiDisplaySessionInfo(client, session, group, pp, ip);
63 boolean client, int session, String group, String pp, String ip) {
65 mSessionId = session;
62 WifiDisplaySessionInfo( boolean client, int session, String group, String pp, String ip) argument
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaBassBoostTest.java184 private void getBassBoost(int session) { argument
185 if (mBassBoost == null || session != mSession) {
186 if (session != mSession && mBassBoost != null) {
191 mBassBoost = new BassBoost(0, session);
192 mSession = session;
H A DMediaPresetReverbTest.java295 // reverb will be chosen by the effect framework as we are on session 0
353 private void getReverb(int session) { argument
354 if (mReverb == null || session != mSession) {
355 if (session != mSession && mReverb != null) {
360 mReverb = new PresetReverb(0, session);
361 mSession = session;

Completed in 2505 milliseconds

123456