Searched refs:mSession (Results 1 - 25 of 29) sorted by relevance

12

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridgeRenderSession.java43 private final RenderSessionImpl mSession; field in class:BridgeRenderSession
53 return mSession.getImage();
58 return mSession.isAlphaChannelImage();
63 return mSession.getViewInfos();
68 return mSession.getDefaultProperties(viewObject);
87 mLastResult = mSession.acquire(timeout);
89 mLastResult = mSession.render(false /*freshRender*/);
92 mSession.release();
104 mLastResult = mSession.acquire(RenderParams.DEFAULT_TIMEOUT);
106 mLastResult = mSession
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DBaseIWindow.java29 private IWindowSession mSession; field in class:BaseIWindow
33 mSession = session;
41 mSession.finishDrawing(this);
79 mSession.wallpaperOffsetsComplete(asBinder());
100 mSession.wallpaperCommandComplete(asBinder(), null);
/frameworks/base/voip/java/android/net/sip/
H A DSipSession.java236 private final ISipSession mSession; field in class:SipSession
240 mSession = realSession;
262 return mSession.getLocalIp();
276 return mSession.getLocalProfile();
291 return mSession.getPeerProfile();
306 return mSession.getState();
320 return mSession.isInCall();
334 return mSession.getCallId();
365 mSession.register(duration);
382 mSession
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/animation/
H A DAnimationThread.java68 private final RenderSessionImpl mSession; field in class:AnimationThread
76 mSession = scene;
111 RenderSession session = mSession.getSession();
141 result = mSession.acquire(250);
156 if (mSession.render(false /*freshRender*/).isSuccess()) {
160 mSession.release();
/frameworks/base/voip/java/com/android/server/sip/
H A DSipService.java592 private SipSessionGroup.SipSessionImpl mSession; field in class:SipService.IntervalMeasurementProcess
607 if (mSession != null) {
629 mSession = (SipSessionGroup.SipSessionImpl)
631 mSession.startKeepAliveProcess(mInterval, this);
640 if (mSession != null) {
641 mSession.stopKeepAliveProcess();
642 mSession = null;
655 if (mSession == null) return;
659 mSession.stopKeepAliveProcess();
661 mSession
745 private SipSessionGroup.SipSessionImpl mSession; field in class:SipService.AutoRegistrationProcess
[all...]
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaBassBoostTest.java50 private int mSession = -1; field in class:MediaBassBoostTest
185 if (mBassBoost == null || session != mSession) {
186 if (session != mSession && mBassBoost != null) {
192 mSession = session;
H A DMediaVirtualizerTest.java50 private int mSession = -1; field in class:MediaVirtualizerTest
186 if (mVirtualizer == null || session != mSession) {
187 if (session != mSession && mVirtualizer != null) {
193 mSession = session;
H A DMediaEqualizerTest.java54 private int mSession = -1; field in class:MediaEqualizerTest
254 if (mEqualizer == null || session != mSession) {
255 if (session != mSession && mEqualizer != null) {
261 mSession = session;
H A DMediaPresetReverbTest.java57 private int mSession = -1; field in class:MediaPresetReverbTest
354 if (mReverb == null || session != mSession) {
355 if (session != mSession && mReverb != null) {
361 mSession = session;
H A DMediaEnvReverbTest.java63 private int mSession = -1; field in class:MediaEnvReverbTest
513 if (mReverb == null || session != mSession) {
514 if (session != mSession && mReverb != null) {
520 mSession = session;
H A DMediaVisualizerTest.java56 private int mSession = -1; field in class:MediaVisualizerTest
545 if (mVisualizer == null || session != mSession) {
546 if (session != mSession && mVisualizer != null) {
552 mSession = session;
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DSimplePlayer.java59 int mSession; field in class:SimplePlayer
93 mSession = session;
111 if (mSession != 0) {
112 mMediaPlayer.setAudioSessionId(mSession);
113 Log.d(TAG, "mMediaPlayer.setAudioSessionId(): "+ mSession);
/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java239 private final Session mSession; field in class:SpellCheckerService.InternalISpellCheckerSession
246 mSession = session;
259 mSession.onGetSuggestionsMultiple(
271 mSession.onGetSentenceSuggestionsMultiple(textInfos, suggestionsLimit));
281 mSession.onCancel();
292 mSession.onClose();
/frameworks/base/core/java/android/view/
H A DSurfaceView.java102 IWindowSession mSession; field in class:SurfaceView
213 mSession = getWindowSession();
266 mSession.remove(mWindow);
272 mSession = null;
488 mSession.addToDisplayWithoutInputChannel(mWindow, mWindow.mSeq, mLayout,
506 relayoutResult = mSession.relayout(
600 mSession.finishDrawing(mWindow);
602 mSession.performDeferredDestroy(mWindow);
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h88 sp<SurfaceComposerClient> mSession; member in class:android::BootAnimation
H A DBootAnimation.cpp70 mSession = new SurfaceComposerClient();
77 status_t err = mSession->linkToComposerDeath(this);
85 return mSession;
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSession.java248 public ISpellCheckerSession mSession; field in class:SpellCheckerSession.SpellCheckerSessionListenerImpl.SpellCheckerParams
308 scp.mSession = session;
339 processTask(scp.mSession, scp, true);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkStatsServiceTest.java118 private INetworkStatsSession mSession; field in class:NetworkStatsServiceTest
157 mSession = mService.openSession();
177 mSession.close();
355 history = mSession.getHistoryForNetwork(sTemplateWifi, FIELD_ALL);
373 history = mSession.getHistoryForNetwork(sTemplateWifi, FIELD_ALL);
658 NetworkStats stats = mSession.getSummaryForAllUid(
667 stats = mSession.getSummaryForAllUid(
729 final NetworkStats stats = mSession.getSummaryForAllUid(
848 final NetworkStatsHistory history = mSession.getHistoryForNetwork(template, FIELD_ALL);
852 final NetworkStats stats = mSession
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java162 IWindowSession mSession; field in class:WallpaperService.Engine
615 if (mSession.addToDisplay(mWindow, mWindow.mSeq, mLayout, View.VISIBLE,
629 final int relayoutResult = mSession.relayout(
741 mSession.finishDrawing(mWindow);
765 mSession = WindowManagerGlobal.getWindowSession(getMainLooper());
767 mWindow.setSession(mSession);
862 mSession.wallpaperOffsetsComplete(mWindow.asBinder());
879 mSession.wallpaperCommandComplete(mWindow.asBinder(), result);
931 mSession.remove(mWindow);
/frameworks/base/services/java/com/android/server/wm/
H A DDragState.java234 if (Process.myPid() != newWin.mSession.mPid) {
332 if (myPid != mTargetWindow.mSession.mPid) {
343 if (myPid != touchedWin.mSession.mPid) {
383 if (myPid != touchedWin.mSession.mPid) {
H A DInputMonitor.java80 mService.removeWindowLocked(windowState.mSession, windowState);
142 windowState.mSession.mPid, aboveSystem);
179 inputWindowHandle.ownerPid = child.mSession.mPid;
180 inputWindowHandle.ownerUid = child.mSession.mUid;
H A DWindowStateAnimator.java66 final Session mSession; field in class:WindowStateAnimator
174 mSession = win.mSession;
642 + mSession.mSurfaceSession + " window " + this
678 mSession.mSurfaceSession,
683 mSession.mSurfaceSession,
691 + mSession.mSurfaceSession
692 + ": pid=" + mSession.mPid + " format="
769 + mSurface + ", session " + mSession, e);
800 + " surface " + mSurface + " session " + mSession
[all...]
H A DWindowState.java69 final Session mSession; field in class:WindowState
271 mSession = s;
369 mSession.windowAddedLocked();
880 mSession.windowRemovedLocked();
913 WindowState win = mService.windowForClientLocked(mSession, mClient, false);
916 mService.removeWindowLocked(mSession, win);
1097 pw.print(" mSession="); pw.print(mSession);
1249 + " u" + UserHandle.getUserId(mSession.mUid)
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DUniverseBackground.java45 final IWindowSession mSession; field in class:UniverseBackground
100 mSession = WindowManagerGlobal.getWindowSession(context.getMainLooper());
150 mSession.setUniverseTransform(getWindowToken(), mUniverseTransform.getAlpha(),
/frameworks/av/media/libstagefright/wifi-display/
H A DANetworkSession.cpp48 ANetworkSession *mSession; member in struct:android::ANetworkSession::NetworkThread
113 : mSession(session) {
120 mSession->threadLoop();

Completed in 504 milliseconds

12