Home
last modified time | relevance | path

Searched refs:mGpuVotes (Results 1 – 2 of 2) sorted by relevance

/hardware/google/pixel/power-libperfmgr/aidl/
DUClampVoter.cpp64 auto it = mGpuVotes.find(static_cast<int>(hint)); in getGpuCapacityRequest()
65 if (it != mGpuVotes.end() && it->second.isTimeInRange(t)) { in getGpuCapacityRequest()
75 mGpuVotes[id] = vote; in add()
81 auto const it = mGpuVotes.find(voteId); in updateDuration()
82 if (it != mGpuVotes.end()) { in updateDuration()
103 for (const auto &v : mGpuVotes) { in anyTimedOut()
118 for (const auto &v : mGpuVotes) { in allTimedOut()
134 auto const it = mGpuVotes.find(voteId); in remove()
135 if (it != mGpuVotes.end()) { in remove()
136 mGpuVotes.erase(it); in remove()
[all …]
DUClampVoter.h147 std::unordered_map<int, GpuVote> mGpuVotes; variable