/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/power/hint/ |
H A D | HintManagerServiceTest.java | 121 () -> service.getBinderServiceInstance().createHintSession(token, in testCreateHintSessionInvalidPid() 130 IHintSession a = service.getBinderServiceInstance().createHintSession(token, in testCreateHintSession() 134 IHintSession b = service.getBinderServiceInstance().createHintSession(token, in testCreateHintSession() 145 .createHintSession(token, SESSION_TIDS_A, DEFAULT_TARGET_DURATION); in testPauseResumeHintSession() 182 IHintSession a = service.getBinderServiceInstance().createHintSession(token, in testCloseHintSession() 194 IHintSession a = service.getBinderServiceInstance().createHintSession(token, in testUpdateTargetWorkDuration() 215 .createHintSession(token, SESSION_TIDS_A, DEFAULT_TARGET_DURATION); in testReportActualWorkDuration() 258 .createHintSession(token, SESSION_TIDS_A, DEFAULT_TARGET_DURATION); in testDoHintInBackground() 280 .createHintSession(token, SESSION_TIDS_A, DEFAULT_TARGET_DURATION); in testDoHintInForeground()
|
/aosp12/frameworks/native/services/powermanager/tests/ |
H A D | PowerHalWrapperAidlTest.cpp | 50 MOCK_METHOD(Status, createHintSession, 215 createHintSession(Eq(tgid), Eq(uid), Eq(threadIds), Eq(durationNanos), _)) in TEST_F() 217 auto result = mWrapper->createHintSession(tgid, uid, threadIds, durationNanos); in TEST_F() 227 createHintSession(Eq(tgid), Eq(uid), Eq(threadIds), Eq(durationNanos), _)) in TEST_F() 230 auto result = mWrapper->createHintSession(tgid, uid, threadIds, durationNanos); in TEST_F()
|
/aosp12/frameworks/base/services/core/jni/ |
H A D | com_android_server_hint_HintManagerService.cpp | 45 static jlong createHintSession(JNIEnv* env, int32_t tgid, int32_t uid, in createHintSession() function 48 gPowerHalController.createHintSession(tgid, uid, std::move(threadIds), durationNanos); in createHintSession() 109 return createHintSession(env, tgid, uid, std::move(threadIds), durationNanos); in nativeCreateHintSession()
|
/aosp12/frameworks/native/services/powermanager/ |
H A D | PowerHalWrapper.cpp | 95 HalResult<sp<Aidl::IPowerHintSession>> EmptyHalWrapper::createHintSession( in createHintSession() function in android::power::EmptyHalWrapper 155 HalResult<sp<Aidl::IPowerHintSession>> HidlHalWrapperV1_0::createHintSession( in createHintSession() function in android::power::HidlHalWrapperV1_0 237 HalResult<sp<Aidl::IPowerHintSession>> AidlHalWrapper::createHintSession( in createHintSession() function in android::power::AidlHalWrapper 241 fromStatus(mHandle->createHintSession(tgid, uid, threadIds, durationNanos, &appSession), in createHintSession()
|
H A D | PowerHalController.cpp | 101 HalResult<sp<IPowerHintSession>> PowerHalController::createHintSession( in createHintSession() function in android::power::PowerHalController 104 auto result = handle->createHintSession(tgid, uid, threadIds, durationNanos); in createHintSession()
|
/aosp12/frameworks/native/include/powermanager/ |
H A D | PowerHalWrapper.h | 122 virtual HalResult<sp<hardware::power::IPowerHintSession>> createHintSession( 136 virtual HalResult<sp<hardware::power::IPowerHintSession>> createHintSession( 151 virtual HalResult<sp<hardware::power::IPowerHintSession>> createHintSession( 189 virtual HalResult<sp<hardware::power::IPowerHintSession>> createHintSession(
|
H A D | PowerHalController.h | 60 virtual HalResult<sp<hardware::power::IPowerHintSession>> createHintSession(
|
/aosp12/frameworks/native/services/powermanager/benchmarks/ |
H A D | PowerHalAidlBenchmarks.cpp | 105 auto status = pwHal->createHintSession(1, 0, threadIds, durationNanos, &hal); in runSessionBenchmark() 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()
|
/aosp12/hardware/interfaces/power/aidl/vts/ |
H A D | VtsHalPowerTargetTest.cpp | 166 auto status = power->createHintSession(getpid(), getuid(), kSelfTids, 16666666L, &session); in TEST_P() 180 auto status = power->createHintSession(getpid(), getuid(), kEmptyTids, 16666666L, &session); in TEST_P() 190 auto status = power->createHintSession(getpid(), getuid(), kSelfTids, 16666666L, &session); in TEST_P()
|
/aosp12/frameworks/base/native/android/tests/performance_hint/ |
H A D | PerformanceHintNativeTest.cpp | 37 MOCK_METHOD(Status, createHintSession, 96 EXPECT_CALL(*mMockIHintManager, createHintSession(_, Eq(tids), Eq(targetDuration), _)) in TEST_F()
|
/aosp12/frameworks/base/core/java/android/os/ |
H A D | IHintManager.aidl | 27 IHintSession createHintSession(in IBinder token, in int[] tids, long durationNanos); in createHintSession() method
|
H A D | PerformanceHintManager.java | 58 public Session createHintSession(@NonNull int[] tids, long initialTargetWorkDurationNanos) { in createHintSession() method in PerformanceHintManager
|
/aosp12/hardware/interfaces/power/aidl/android/hardware/power/ |
H A D | IPower.aidl | 95 IPowerHintSession createHintSession( in createHintSession() method
|
/aosp12/hardware/interfaces/power/aidl/aidl_api/android.hardware.power/2/android/hardware/power/ |
H A D | IPower.aidl | 41 …android.hardware.power.IPowerHintSession createHintSession(in int tgid, in int uid, in int[] threa… in createHintSession() method
|
/aosp12/hardware/interfaces/power/aidl/aidl_api/android.hardware.power/current/android/hardware/power/ |
H A D | IPower.aidl | 41 …android.hardware.power.IPowerHintSession createHintSession(in int tgid, in int uid, in int[] threa… in createHintSession() method
|
/aosp12/hardware/interfaces/power/aidl/default/ |
H A D | Power.h | 33 ndk::ScopedAStatus createHintSession(int32_t tgid, int32_t uid,
|
H A D | Power.cpp | 55 ndk::ScopedAStatus Power::createHintSession(int32_t, int32_t, const std::vector<int32_t>&, int64_t, in createHintSession() function in aidl::android::hardware::power::impl::example::Power
|
/aosp12/hardware/google/pixel/power-libperfmgr/aidl/ |
H A D | Power.h | 48 ndk::ScopedAStatus createHintSession(int32_t tgid, int32_t uid,
|
H A D | Power.cpp | 256 ndk::ScopedAStatus Power::createHintSession(int32_t tgid, int32_t uid, in createHintSession() function in aidl::google::hardware::power::impl::pixel::Power
|
/aosp12/frameworks/base/core/tests/coretests/src/android/os/ |
H A D | PerformanceHintManagerTest.java | 56 return mPerformanceHintManager.createHintSession( in createSession()
|
/aosp12/frameworks/base/native/android/ |
H A D | performance_hint.cpp | 125 mHintManager->createHintSession(token, tids, initialTargetWorkDurationNanos, &session); in createSession()
|
/aosp12/frameworks/base/services/core/java/com/android/server/power/hint/ |
H A D | HintManagerService.java | 290 public IHintSession createHintSession(IBinder token, int[] tids, long durationNanos) { in createHintSession() method in HintManagerService.BinderService
|
/aosp12/frameworks/base/boot/ |
H A D | boot-image-profile.txt | 6616 HSPLandroid/graphics/HardwareRenderer;->createHintSession([I)Landroid/os/PerformanceHintManager$Ses… 12749 HSPLandroid/os/IHintManager$Stub$Proxy;->createHintSession(Landroid/os/IBinder;[IJ)Landroid/os/IHin… 13144 HSPLandroid/os/PerformanceHintManager;->createHintSession([IJ)Landroid/os/PerformanceHintManager$Se…
|
/aosp12/frameworks/base/config/ |
H A D | boot-image-profile.txt | 6614 HSPLandroid/graphics/HardwareRenderer;->createHintSession([I)Landroid/os/PerformanceHintManager$Ses… 12741 HSPLandroid/os/IHintManager$Stub$Proxy;->createHintSession(Landroid/os/IBinder;[IJ)Landroid/os/IHin… 13135 HSPLandroid/os/PerformanceHintManager;->createHintSession([IJ)Landroid/os/PerformanceHintManager$Se…
|
/aosp12/frameworks/base/core/api/ |
H A D | current.txt | 31668 …method @Nullable public android.os.PerformanceHintManager.Session createHintSession(@NonNull int[]…
|