/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/ |
D | BridgeRenderSession.java | 43 private final RenderSessionImpl mSession; field in BridgeRenderSession 53 return mSession.getImage(); in getImage() 58 return mSession.isAlphaChannelImage(); in isAlphaChannelImage() 63 return mSession.getViewInfos(); in getRootViews() 68 return mSession.getDefaultProperties(viewObject); in getDefaultProperties() 87 mLastResult = mSession.acquire(timeout); in render() 89 mLastResult = mSession.render(false /*freshRender*/); in render() 92 mSession.release(); in render() 104 mLastResult = mSession.acquire(RenderParams.DEFAULT_TIMEOUT); in animate() 106 mLastResult = mSession.animate(targetObject, animationName, isFrameworkAnimation, in animate() [all …]
|
/frameworks/base/voip/java/android/net/sip/ |
D | SipSession.java | 236 private final ISipSession mSession; field in SipSession 240 mSession = realSession; in SipSession() 262 return mSession.getLocalIp(); in getLocalIp() 276 return mSession.getLocalProfile(); in getLocalProfile() 291 return mSession.getPeerProfile(); in getPeerProfile() 306 return mSession.getState(); in getState() 320 return mSession.isInCall(); in isInCall() 334 return mSession.getCallId(); in getCallId() 365 mSession.register(duration); in register() 382 mSession.unregister(); in unregister() [all …]
|
/frameworks/base/voip/java/com/android/server/sip/ |
D | SipService.java | 639 private SipSessionGroup.SipSessionImpl mSession; field in SipService.IntervalMeasurementProcess 654 if (mSession != null) { in start() 676 mSession = (SipSessionGroup.SipSessionImpl) in start() 678 mSession.startKeepAliveProcess(mInterval, this); in start() 687 if (mSession != null) { in stop() 688 mSession.stopKeepAliveProcess(); in stop() 689 mSession = null; in stop() 702 if (mSession == null) return; in restart() 706 mSession.stopKeepAliveProcess(); in restart() 708 mSession.startKeepAliveProcess(mInterval, this); in restart() [all …]
|
/frameworks/base/core/java/com/android/internal/view/ |
D | BaseIWindow.java | 29 private IWindowSession mSession; field in BaseIWindow 33 mSession = session; in setSession() 40 mSession.finishDrawing(this); in resized() 64 mSession.wallpaperOffsetsComplete(asBinder()); in dispatchWallpaperOffsets() 82 mSession.wallpaperCommandComplete(asBinder(), null); in dispatchWallpaperCommand()
|
/frameworks/base/tools/layoutlib/bridge/src/android/animation/ |
D | AnimationThread.java | 68 private final RenderSessionImpl mSession; field in AnimationThread 76 mSession = scene; in AnimationThread() 105 RenderSession session = mSession.getSession(); in run() 135 result = mSession.acquire(250); in run() 150 if (mSession.render(false /*freshRender*/).isSuccess()) { in run() 154 mSession.release(); in run()
|
/frameworks/base/core/java/android/service/textservice/ |
D | SpellCheckerService.java | 166 private final Session mSession; field in SpellCheckerService.InternalISpellCheckerSession 173 mSession = session; in InternalISpellCheckerSession() 184 mSession.onGetSuggestionsMultiple( in onGetSuggestionsMultiple() 192 mSession.onCancel(); in onCancel()
|
/frameworks/base/core/java/android/view/ |
D | SurfaceView.java | 98 IWindowSession mSession; field in SurfaceView 210 mSession = getWindowSession(); in onAttachedToWindow() 249 if (mSession != null) { in showSurface() 264 if (mSession != null && mWindow != null) { in hideSurface() 269 mSession.relayout(mWindow, mWindow.mSeq, mLayout, mWidth, mHeight, VISIBLE, false, in hideSurface() 293 mSession.remove(mWindow); in onDetachedFromWindow() 299 mSession = null; in onDetachedFromWindow() 495 mSession.addWithoutInputChannel(mWindow, mWindow.mSeq, mLayout, in updateWindow() 515 final int relayoutResult = mSession.relayout( in updateWindow() 585 mSession.finishDrawing(mWindow); in updateWindow()
|
D | View.java | 5828 mAttachInfo.mSession.getDisplayFrame(mAttachInfo.mWindow, outRect); 9701 return mAttachInfo != null ? mAttachInfo.mSession : null; 13255 IBinder token = mAttachInfo.mSession.prepareDrag(mAttachInfo.mWindow, 13276 okay = mAttachInfo.mSession.performDrag(mAttachInfo.mWindow, token, 14311 final IWindowSession mSession; 14542 mSession = session;
|
D | ViewDebug.java | 1166 root.mAttachInfo.mSession.getDisplayFrame(root.mAttachInfo.mWindow, outRect); in captureLayers()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
D | MediaVirtualizerTest.java | 56 private int mSession = -1; field in MediaVirtualizerTest 275 if (mVirtualizer == null || session != mSession) { in getVirtualizer() 276 if (session != mSession && mVirtualizer != null) { in getVirtualizer() 282 mSession = session; in getVirtualizer()
|
D | MediaBassBoostTest.java | 56 private int mSession = -1; field in MediaBassBoostTest 270 if (mBassBoost == null || session != mSession) { in getBassBoost() 271 if (session != mSession && mBassBoost != null) { in getBassBoost() 277 mSession = session; in getBassBoost()
|
D | MediaEqualizerTest.java | 59 private int mSession = -1; field in MediaEqualizerTest 333 if (mEqualizer == null || session != mSession) { in getEqualizer() 334 if (session != mSession && mEqualizer != null) { in getEqualizer() 340 mSession = session; in getEqualizer()
|
D | MediaPresetReverbTest.java | 57 private int mSession = -1; field in MediaPresetReverbTest 348 if (mReverb == null || session != mSession) { in getReverb() 349 if (session != mSession && mReverb != null) { in getReverb() 355 mSession = session; in getReverb()
|
D | MediaEnvReverbTest.java | 63 private int mSession = -1; field in MediaEnvReverbTest 507 if (mReverb == null || session != mSession) { in getReverb() 508 if (session != mSession && mReverb != null) { in getReverb() 514 mSession = session; in getReverb()
|
D | MediaVisualizerTest.java | 56 private int mSession = -1; field in MediaVisualizerTest 423 if (mVisualizer == null || session != mSession) { in getVisualizer() 424 if (session != mSession && mVisualizer != null) { in getVisualizer() 430 mSession = session; in getVisualizer()
|
/frameworks/base/core/java/android/service/wallpaper/ |
D | WallpaperService.java | 159 IWindowSession mSession; field in WallpaperService.Engine 568 … if (mSession.add(mWindow, mWindow.mSeq, mLayout, View.VISIBLE, mContentInsets, in updateSurface() 582 final int relayoutResult = mSession.relayout( in updateSurface() 694 mSession.finishDrawing(mWindow); in updateSurface() 717 mSession = ViewRootImpl.getWindowSession(getMainLooper()); in attach() 719 mWindow.setSession(mSession); in attach() 814 mSession.wallpaperOffsetsComplete(mWindow.asBinder()); in doOffsetsChanged() 831 mSession.wallpaperCommandComplete(mWindow.asBinder(), result); in doCommand() 882 mSession.remove(mWindow); in detach()
|
/frameworks/base/services/java/com/android/server/wm/ |
D | DragState.java | 217 if (Process.myPid() != newWin.mSession.mPid) { in sendDragStartedLw() 315 if (myPid != mTargetWindow.mSession.mPid) { in notifyMoveLw() 326 if (myPid != touchedWin.mSession.mPid) { in notifyMoveLw() 366 if (myPid != touchedWin.mSession.mPid) { in notifyDropLw()
|
D | WindowState.java | 64 final Session mSession; field in WindowState 291 mSession = s; in WindowState() 382 mSession.windowAddedLocked(); in attach() 620 + mSession.mSurfaceSession + " window " + this in createSurfaceLocked() 654 mSession.mSurfaceSession, mSession.mPid, in createSurfaceLocked() 660 + mSession.mSurfaceSession in createSurfaceLocked() 661 + ": pid=" + mSession.mPid + " format=" in createSurfaceLocked() 752 + mSurface + ", session " + mSession, e); in destroySurfaceLocked() 765 + " surface " + mSurface + " session " + mSession in destroySurfaceLocked() 1406 mSession.windowRemovedLocked(); in removeLocked() [all …]
|
D | InputMonitor.java | 71 mService.removeWindowLocked(windowState.mSession, windowState); in notifyInputChannelBroken() 212 inputWindowHandle.ownerPid = child.mSession.mPid; in updateInputWindowsLw() 213 inputWindowHandle.ownerUid = child.mSession.mUid; in updateInputWindowsLw()
|
D | WindowManagerService.java | 2271 removeWindowInnerLocked(cwin.mSession, cwin); in removeWindowInnerLocked() 4953 if (ws.mSession.mPid == pid && ws.isVisibleLw()) { in showStrictModeViolation() 6838 if (imFocus.mSession.mClient != null && in inputMethodClientHasFocus() 6839 imFocus.mSession.mClient.asBinder() == client.asBinder()) { in inputMethodClientHasFocus() 6851 if (mCurrentFocus != null && mCurrentFocus.mSession.mClient != null && in inputMethodClientHasFocus() 6852 mCurrentFocus.mSession.mClient.asBinder() == client.asBinder()) { in inputMethodClientHasFocus() 7037 if (session != null && win.mSession != session) { 7040 win.mSession + ", not " + session); 7197 removeWindowInnerLocked(ws.mSession, ws); 7225 removeWindowInnerLocked(w.mSession, w); [all …]
|
/frameworks/base/cmds/bootanimation/ |
D | BootAnimation.h | 86 sp<SurfaceComposerClient> mSession; variable
|
D | BootAnimation.cpp | 63 mSession = new SurfaceComposerClient(); in BootAnimation() 70 status_t err = mSession->linkToComposerDeath(this); in onFirstRef() 78 return mSession; in session()
|
/frameworks/base/services/java/com/android/server/ |
D | BackupManagerService.java | 5649 ActiveRestoreSession mSession; field in BackupManagerService.ActiveRestoreSession.EndRestoreRunnable 5653 mSession = session; in EndRestoreRunnable() 5658 synchronized (mSession) { in run() 5660 if (mSession.mRestoreTransport != null) { in run() 5661 mSession.mRestoreTransport.finishRestore(); in run() 5666 mSession.mRestoreTransport = null; in run() 5667 mSession.mEnded = true; in run() 5673 mBackupManager.clearRestoreSession(mSession); in run()
|