Home
last modified time | relevance | path

Searched refs:CpuSet (Results 1 – 6 of 6) sorted by relevance

/aosp12/frameworks/native/services/vr/performanced/
H A Dcpu_set.h22 class CpuSet {
26 CpuSet* parent() const { return parent_; } in parent()
40 CpuSet(CpuSet* parent, const std::string& name, base::unique_fd&& cpuset_fd);
42 void AddChild(std::unique_ptr<CpuSet> child);
51 CpuSet* parent_;
55 std::vector<std::unique_ptr<CpuSet>> children_;
60 CpuSet(const CpuSet&) = delete;
61 void operator=(const CpuSet&) = delete;
76 CpuSet* Lookup(const std::string& path);
81 std::vector<CpuSet*> GetCpuSets();
[all …]
H A Dcpu_set.cpp31 bool CpuSet::prefix_enabled_ = false;
59 std::unique_ptr<CpuSet> group( in Create()
91 CpuSet* CpuSetManager::Lookup(const std::string& path) { in Lookup()
99 std::vector<CpuSet*> CpuSetManager::GetCpuSets() { in GetCpuSets()
100 std::vector<CpuSet*> sets(path_map_.size()); in GetCpuSets()
111 std::vector<CpuSet*> sets; in DumpState()
118 std::sort(sets.begin(), sets.end(), [](const CpuSet* a, const CpuSet* b) { in DumpState()
191 CpuSet::CpuSet(CpuSet* parent, const std::string& name, in CpuSet() function in android::dvr::CpuSet
255 std::vector<pid_t> CpuSet::GetTasks() const { in GetTasks()
271 std::string CpuSet::GetCpuList() const { in GetCpuList()
[all …]
/aosp12/frameworks/base/libs/hwui/tests/macrobench/
H A Dmain.cpp171 CpuSet, enumerator
188 {"cpuset", required_argument, nullptr, LongOpts::CpuSet},
257 case LongOpts::CpuSet: in parseOptions()
/aosp12/art/dex2oat/
H A Ddex2oat_options.def56 DEX2OAT_OPTIONS_KEY (std::vector<std::int32_t>, CpuSet)
H A Ddex2oat_options.cc300 .IntoKey(M::CpuSet) in CreateDex2oatArgumentParser()
H A Ddex2oat.cc1056 AssignIfExists(args, M::CpuSet, &cpu_set_); in ParseArgs()