Home
last modified time | relevance | path

Searched refs:InteractionHandler (Results 1 – 5 of 5) sorted by relevance

/hardware/google/pixel/power-libperfmgr/
DInteractionHandler.cpp39 InteractionHandler::InteractionHandler(std::shared_ptr<HintManager> const &hint_manager) in InteractionHandler() function in InteractionHandler
47 InteractionHandler::~InteractionHandler() { in ~InteractionHandler()
62 bool InteractionHandler::Init() { in Init()
81 mThread = std::unique_ptr<std::thread>(new std::thread(&InteractionHandler::Routine, this)); in Init()
86 void InteractionHandler::Exit() { in Exit()
102 void InteractionHandler::PerfLock() { in PerfLock()
110 void InteractionHandler::PerfRel() { in PerfRel()
118 size_t InteractionHandler::CalcTimespecDiffMs(struct timespec start, struct timespec end) { in CalcTimespecDiffMs()
125 void InteractionHandler::Acquire(int32_t duration) { in Acquire()
169 void InteractionHandler::Release() { in Release()
[all …]
DInteractionHandler.h37 class InteractionHandler {
39 InteractionHandler(std::shared_ptr<HintManager> const &hint_manager);
40 ~InteractionHandler();
DPower.h38 using ::InteractionHandler;
74 std::unique_ptr<InteractionHandler> mInteractionHandler;
DAndroid.bp27 srcs: ["service.cpp", "Power.cpp", "InteractionHandler.cpp",
DPower.cpp72 mInteractionHandler = std::make_unique<InteractionHandler>(mHintManager); in Power()