HomeSort by relevance Sort by last modified time
    Searched refs:cpuUsages (Results 1 - 8 of 8) sorted by null

  /hardware/interfaces/thermal/1.0/
IThermal.hal 48 * @return cpuUsages If status code is SUCCESS, it's filled with the current
56 getCpuUsages() generates (ThermalStatus status, vec<CpuUsage> cpuUsages);
  /development/tools/bugreport/src/com/android/bugreport/anr/
Anr.java 35 public ArrayList<CpuUsageSnapshot> cpuUsages = new ArrayList<CpuUsageSnapshot>();
AnrParser.java 92 anr.cpuUsages.add(snapshot);
  /hardware/interfaces/thermal/1.0/default/
Thermal.cpp 106 hidl_vec<CpuUsage> cpuUsages;
111 _hidl_cb(status, cpuUsages);
122 cpuUsages.resize(size);
124 cpuUsages[i].name = list[i].name;
125 cpuUsages[i].active = list[i].active;
126 cpuUsages[i].total = list[i].total;
127 cpuUsages[i].isOnline = list[i].is_online;
138 _hidl_cb(status, cpuUsages);
  /hardware/interfaces/thermal/1.0/vts/functional/
VtsHalThermalV1_0TargetTest.cpp 81 void checkCpuUsages(const hidl_vec<CpuUsage>& cpuUsages) {
82 size_t size = cpuUsages.size();
87 checkCpuUsage(cpuUsages[i]);
89 EXPECT_EQ(names_[i], cpuUsages[i].name.c_str());
93 cpuUsages[i].name.c_str()));
94 names_.push_back(cpuUsages[i].name);
183 [&passed](ThermalStatus status, hidl_vec<CpuUsage> cpuUsages) {
185 passed = cpuUsages;
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
HardwarePropertiesManagerTest.java 75 private void checkCpuUsages(CpuUsageInfo[] cpuUsages) {
76 for (CpuUsageInfo info : cpuUsages) {
178 CpuUsageInfo[] cpuUsages = hm.getCpuUsages();
185 checkCpuUsages(cpuUsages);
190 checkCpuUsages(cpuUsages, oldCpuUsages);
193 oldCpuUsages = cpuUsages;
  /frameworks/base/services/core/jni/
com_android_server_HardwarePropertiesManagerService.cpp 163 [&list](ThermalStatus status, hidl_vec<CpuUsage> cpuUsages) {
165 list = std::move(cpuUsages);
176 jobjectArray cpuUsages = env->NewObjectArray(list.size(), gCpuUsageInfoClassInfo.clazz,
184 env->SetObjectArrayElement(cpuUsages, i, cpuUsage);
187 return cpuUsages;
  /development/tools/bugreport/src/com/android/bugreport/html/
Renderer.java 124 final int N = anr.cpuUsages.size();
126 makeCpuUsageSnapshotHdf(hdf.createChild("monkey.cpuUsage." + i), anr.cpuUsages.get(i));

Completed in 700 milliseconds