/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/opt/net/voip/src/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/opt/net/voip/src/java/com/android/server/sip/ |
D | SipService.java | 612 private SipSessionGroup.SipSessionImpl mSession; field in SipService.SipKeepAliveProcessCallback 627 if (mSession != null) { in start() 649 mSession = (SipSessionGroup.SipSessionImpl) in start() 651 mSession.startKeepAliveProcess(mInterval, this); in start() 660 if (mSession != null) { in stop() 661 mSession.stopKeepAliveProcess(); in stop() 662 mSession = null; in stop() 676 if (mSession == null) return; in restart() 680 mSession.stopKeepAliveProcess(); in restart() 682 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() 41 mSession.finishDrawing(this); in resized() 79 mSession.wallpaperOffsetsComplete(asBinder()); in dispatchWallpaperOffsets() 100 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() 111 RenderSession session = mSession.getSession(); in run() 141 result = mSession.acquire(250); in run() 156 if (mSession.render(false /*freshRender*/).isSuccess()) { in run() 160 mSession.release(); in run()
|
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
D | SimplePlayer.java | 59 int mSession; field in SimplePlayer 93 mSession = session; in set() 111 if (mSession != 0) { in playOrPause() 112 mMediaPlayer.setAudioSessionId(mSession); in playOrPause() 113 Log.d(TAG, "mMediaPlayer.setAudioSessionId(): "+ mSession); in playOrPause()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
D | MediaBassBoostTest.java | 50 private int mSession = -1; field in MediaBassBoostTest 185 if (mBassBoost == null || session != mSession) { in getBassBoost() 186 if (session != mSession && mBassBoost != null) { in getBassBoost() 192 mSession = session; in getBassBoost()
|
D | MediaVirtualizerTest.java | 50 private int mSession = -1; field in MediaVirtualizerTest 186 if (mVirtualizer == null || session != mSession) { in getVirtualizer() 187 if (session != mSession && mVirtualizer != null) { in getVirtualizer() 193 mSession = session; in getVirtualizer()
|
D | MediaEqualizerTest.java | 54 private int mSession = -1; field in MediaEqualizerTest 254 if (mEqualizer == null || session != mSession) { in getEqualizer() 255 if (session != mSession && mEqualizer != null) { in getEqualizer() 261 mSession = session; in getEqualizer()
|
D | MediaPresetReverbTest.java | 57 private int mSession = -1; field in MediaPresetReverbTest 354 if (mReverb == null || session != mSession) { in getReverb() 355 if (session != mSession && mReverb != null) { in getReverb() 361 mSession = session; in getReverb()
|
D | MediaEnvReverbTest.java | 63 private int mSession = -1; field in MediaEnvReverbTest 513 if (mReverb == null || session != mSession) { in getReverb() 514 if (session != mSession && mReverb != null) { in getReverb() 520 mSession = session; in getReverb()
|
D | MediaVisualizerTest.java | 56 private int mSession = -1; field in MediaVisualizerTest 545 if (mVisualizer == null || session != mSession) { in getVisualizer() 546 if (session != mSession && mVisualizer != null) { in getVisualizer() 552 mSession = session; in getVisualizer()
|
/frameworks/base/core/java/android/service/textservice/ |
D | SpellCheckerService.java | 239 private final Session mSession; field in SpellCheckerService.InternalISpellCheckerSession 246 mSession = session; in InternalISpellCheckerSession() 259 mSession.onGetSuggestionsMultiple( in onGetSuggestionsMultiple() 271 mSession.onGetSentenceSuggestionsMultiple(textInfos, suggestionsLimit)); in onGetSentenceSuggestionsMultiple() 281 mSession.onCancel(); in onCancel() 292 mSession.onClose(); in onClose()
|
/frameworks/base/core/java/android/view/ |
D | SurfaceView.java | 102 IWindowSession mSession; field in SurfaceView 214 mSession = getWindowSession(); in onAttachedToWindow() 267 mSession.remove(mWindow); in onDetachedFromWindow() 273 mSession = null; in onDetachedFromWindow() 491 mSession.addToDisplayWithoutInputChannel(mWindow, mWindow.mSeq, mLayout, in updateWindow() 509 relayoutResult = mSession.relayout( in updateWindow() 603 mSession.finishDrawing(mWindow); in updateWindow() 605 mSession.performDeferredDestroy(mWindow); in updateWindow()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
D | NetworkStatsServiceTest.java | 118 private INetworkStatsSession mSession; field in NetworkStatsServiceTest 157 mSession = mService.openSession(); in setUp() 177 mSession.close(); in tearDown() 355 history = mSession.getHistoryForNetwork(sTemplateWifi, FIELD_ALL); in testStatsBucketResize() 373 history = mSession.getHistoryForNetwork(sTemplateWifi, FIELD_ALL); in testStatsBucketResize() 658 NetworkStats stats = mSession.getSummaryForAllUid( in testSummaryForAllUid() 667 stats = mSession.getSummaryForAllUid( in testSummaryForAllUid() 729 final NetworkStats stats = mSession.getSummaryForAllUid( in testForegroundBackground() 848 final NetworkStatsHistory history = mSession.getHistoryForNetwork(template, FIELD_ALL); in assertNetworkTotal() 852 final NetworkStats stats = mSession.getSummaryForNetwork(template, start, end); in assertNetworkTotal() [all …]
|
/frameworks/base/core/java/android/service/wallpaper/ |
D | WallpaperService.java | 162 IWindowSession mSession; field in WallpaperService.Engine 615 if (mSession.addToDisplay(mWindow, mWindow.mSeq, mLayout, View.VISIBLE, in updateSurface() 629 final int relayoutResult = mSession.relayout( in updateSurface() 741 mSession.finishDrawing(mWindow); in updateSurface() 765 mSession = WindowManagerGlobal.getWindowSession(); in attach() 767 mWindow.setSession(mSession); in attach() 862 mSession.wallpaperOffsetsComplete(mWindow.asBinder()); in doOffsetsChanged() 879 mSession.wallpaperCommandComplete(mWindow.asBinder(), result); in doCommand() 931 mSession.remove(mWindow); in detach()
|
/frameworks/base/services/java/com/android/server/wm/ |
D | InputMonitor.java | 79 mService.removeWindowLocked(windowState.mSession, windowState); in notifyInputChannelBroken() 145 windowState.mSession.mPid, aboveSystem, reason); in notifyANR() 193 inputWindowHandle.ownerPid = child.mSession.mPid; in addInputWindowHandleLw() 194 inputWindowHandle.ownerUid = child.mSession.mUid; in addInputWindowHandleLw()
|
D | DragState.java | 236 if (Process.myPid() != newWin.mSession.mPid) { in sendDragStartedLw() 334 if (myPid != mTargetWindow.mSession.mPid) { in notifyMoveLw() 345 if (myPid != touchedWin.mSession.mPid) { in notifyMoveLw() 385 if (myPid != touchedWin.mSession.mPid) { in notifyDropLw()
|
D | WindowState.java | 74 final Session mSession; field in WindowState 310 mSession = s; in WindowState() 448 mSession.windowAddedLocked(); in attach() 1008 mSession.windowRemovedLocked(); in removeLocked() 1047 WindowState win = mService.windowForClientLocked(mSession, mClient, false); in binderDied() 1050 mService.removeWindowLocked(mSession, win); in binderDied() 1053 mService.removeWindowLocked(mSession, WindowState.this); in binderDied() 1306 pw.print(" mSession="); pw.print(mSession); in dump() 1476 + " u" + UserHandle.getUserId(mSession.mUid) in toString()
|
D | WindowStateAnimator.java | 62 final Session mSession; field in WindowStateAnimator 170 mSession = win.mSession; in WindowStateAnimator() 650 + mSession.mSurfaceSession + " window " + this in createSurfaceLocked() 686 mSession.mSurfaceSession, in createSurfaceLocked() 691 mSession.mSurfaceSession, in createSurfaceLocked() 699 + mSession.mSurfaceSession in createSurfaceLocked() 700 + ": pid=" + mSession.mPid + " format=" in createSurfaceLocked() 777 + mSurfaceControl + ", session " + mSession, e); in destroySurfaceLocked() 808 + " surface " + mSurfaceControl + " session " + mSession in destroySurfaceLocked() 836 + " session " + mSession + ": " + e.toString()); in destroyDeferredSurfaceLocked()
|
/frameworks/base/core/java/android/view/textservice/ |
D | SpellCheckerSession.java | 248 public ISpellCheckerSession mSession; field in SpellCheckerSession.SpellCheckerSessionListenerImpl.SpellCheckerParams 308 scp.mSession = session; in processTask() 339 processTask(scp.mSession, scp, true); in onServiceConnected()
|
/frameworks/base/cmds/bootanimation/ |
D | BootAnimation.h | 88 sp<SurfaceComposerClient> mSession; variable
|
D | BootAnimation.cpp | 70 mSession = new SurfaceComposerClient(); in BootAnimation() 77 status_t err = mSession->linkToComposerDeath(this); in onFirstRef() 85 return mSession; in session()
|
/frameworks/av/media/libstagefright/httplive/ |
D | PlaylistFetcher.cpp | 60 mSession(session), in PlaylistFetcher() 220 ssize_t err = mSession->fetchFile(keyURI.c_str(), &key); in decryptBuffer() 567 mPacketSources.valueAt(i)->queueAccessUnit(mSession->createFormatChangeBuffer()); in onResumeUntil() 678 sp<M3UParser> playlist = mSession->fetchPlaylist( in refreshPlaylist() 850 bytesRead = mSession->fetchFile( in onDownloadNext() 1141 packetSource->queueAccessUnit(mSession->createFormatChangeBuffer()); in extractAndQueueAccessUnitsFromTs()
|
D | PlaylistFetcher.h | 99 sp<LiveSession> mSession; member
|