Searched refs:appSession (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/services/core/jni/ |
D | com_android_server_hint_HintManagerService.cpp | 50 sp<IPowerHintSession> appSession = result.value(); in createHintSession() local 51 if (appSession) appSession->incStrong(env); in createHintSession() 52 return reinterpret_cast<jlong>(appSession.get()); in createHintSession() 58 sp<IPowerHintSession> appSession = reinterpret_cast<IPowerHintSession*>(session_ptr); in pauseHintSession() local 59 appSession->pause(); in pauseHintSession() 63 sp<IPowerHintSession> appSession = reinterpret_cast<IPowerHintSession*>(session_ptr); in resumeHintSession() local 64 appSession->resume(); in resumeHintSession() 68 sp<IPowerHintSession> appSession = reinterpret_cast<IPowerHintSession*>(session_ptr); in closeHintSession() local 69 appSession->close(); in closeHintSession() 70 appSession->decStrong(env); in closeHintSession() [all …]
|
/frameworks/native/services/powermanager/benchmarks/ |
D | PowerHalAidlBenchmarks.cpp | 158 sp<IPowerHintSession> appSession; in BM_PowerHalAidlBenchmarks_createHintSession() local 166 binder::Status ret = hal->createHintSession(tgid, uid, threadIds, durationNanos, &appSession); in BM_PowerHalAidlBenchmarks_createHintSession() 173 ret = hal->createHintSession(tgid, uid, threadIds, durationNanos, &appSession); in BM_PowerHalAidlBenchmarks_createHintSession() 176 appSession->close(); in BM_PowerHalAidlBenchmarks_createHintSession()
|
/frameworks/native/services/powermanager/ |
D | PowerHalWrapper.cpp | 239 sp<IPowerHintSession> appSession; in createHintSession() local 241 fromStatus(mHandle->createHintSession(tgid, uid, threadIds, durationNanos, &appSession), in createHintSession() 242 appSession); in createHintSession()
|
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/ |
D | DragDropControllerTests.java | 566 final SurfaceSession appSession = new SurfaceSession(); in startDrag() local 568 final SurfaceControl surface = new SurfaceControl.Builder(appSession) in startDrag() 581 appSession.kill(); in startDrag()
|