Home
last modified time | relevance | path

Searched refs:NodeLooperThread (Results 1 – 7 of 7) sorted by relevance

/aosp12/hardware/google/pixel/power-libperfmgr/libperfmgr/include/perfmgr/
H A DNodeLooperThread.h54 class NodeLooperThread : public ::android::Thread {
56 explicit NodeLooperThread(std::vector<std::unique_ptr<Node>> nodes) in NodeLooperThread() function
58 virtual ~NodeLooperThread() { Stop(); } in ~NodeLooperThread()
83 NodeLooperThread(NodeLooperThread const&) = delete;
84 void operator=(NodeLooperThread const&) = delete;
H A DHintManager.h82 HintManager(sp<NodeLooperThread> nm, const std::unordered_map<std::string, Hint> &actions) in HintManager()
147 sp<NodeLooperThread> nm_;
/aosp12/hardware/google/pixel/power-libperfmgr/libperfmgr/tests/
H A DNodeLooperThreadTest.cc65 sp<NodeLooperThread> th = new NodeLooperThread(std::move(nodes_)); in TEST_F()
77 sp<NodeLooperThread> th = new NodeLooperThread(std::move(nodes_)); in TEST_F()
100 sp<NodeLooperThread> th = new NodeLooperThread(std::move(nodes_)); in TEST_F()
132 sp<NodeLooperThread> th = new NodeLooperThread(std::move(nodes_)); in TEST_F()
153 sp<NodeLooperThread> th = new NodeLooperThread(std::move(nodes_)); in TEST_F()
H A DHintManagerTest.cc144 nm_ = new NodeLooperThread(std::move(nodes_)); in SetUp()
181 sp<NodeLooperThread> nm_;
/aosp12/hardware/google/pixel/power-libperfmgr/libperfmgr/
H A DNodeLooperThread.cc29 bool NodeLooperThread::Request(const std::vector<NodeAction>& actions, in Request()
68 bool NodeLooperThread::Cancel(const std::vector<NodeAction>& actions, in Cancel()
93 void NodeLooperThread::DumpToFd(int fd) { in DumpToFd()
100 bool NodeLooperThread::threadLoop() { in threadLoop()
129 bool NodeLooperThread::Start() { in Start()
139 void NodeLooperThread::Stop() { in Stop()
H A DAndroid.bp57 "NodeLooperThread.cc",
H A DHintManager.cc283 sp<NodeLooperThread> nm = new NodeLooperThread(std::move(nodes)); in GetFromJSON()