Home
last modified time | relevance | path

Searched refs:systemState (Results 1 – 10 of 10) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/storagemonitoring/
DIoStatsTrackerTest.java274 UidIoRecord updateSystemState(MockSystemStateInterface systemState) { in updateSystemState() argument
287 systemState.addIoRecord(uidIoRecord); in updateSystemState()
289 systemState.addProcess(new ProcessInfo(1, mUid)); in updateSystemState()
291 systemState.removeUserProcesses(mUid); in updateSystemState()
/packages/services/Car/cpp/watchdog/server/src/
DWatchdogPerfService.h117 time_point_millis time, SystemState systemState,
132 time_point_millis time, SystemState systemState,
225 virtual void setSystemState(SystemState systemState) = 0;
294 void setSystemState(SystemState systemState) override;
DPerformanceProfiler.h274 time_point_millis time, SystemState systemState,
285 time_point_millis time, SystemState systemState,
351 time_point_millis time, SystemState systemState,
DWatchdogPerfService.cpp159 constexpr const char* toString(SystemState systemState) { in toString() argument
160 switch (systemState) { in toString()
324 void WatchdogPerfService::setSystemState(SystemState systemState) { in setSystemState() argument
326 if (mSystemState != systemState) { in setSystemState()
328 toString(systemState)); in setSystemState()
330 mSystemState = systemState; in setSystemState()
DIoOveruseMonitor.h167 time_point_millis time, SystemState systemState,
173 time_point_millis time, SystemState systemState,
DIoOveruseMonitor.cpp252 time_point_millis time, SystemState systemState, in onPeriodicCollection() argument
287 bool isGarageModeActive = systemState == SystemState::GARAGE_MODE; in onPeriodicCollection()
401 time_point_millis time, SystemState systemState, in onCustomCollection() argument
407 return onPeriodicCollection(time, systemState, uidStatsCollector, procStatCollector, in onCustomCollection()
DPerformanceProfiler.cpp1041 time_point_millis time, SystemState systemState, in onPeriodicCollection() argument
1052 return processLocked(time, systemState, std::unordered_set<std::string>(), uidStatsCollectorSp, in onPeriodicCollection()
1103 time_point_millis time, SystemState systemState, in onCustomCollection() argument
1114 return processLocked(time, systemState, filterPackages, uidStatsCollectorSp, in onCustomCollection()
1119 time_point_millis time, SystemState systemState, in processLocked() argument
1133 bool isGarageModeActive = systemState == SystemState::GARAGE_MODE; in processLocked()
/packages/modules/Permission/PermissionController/iconloaderlib/src/com/android/launcher3/icons/
DIconProvider.java114 public String getSystemStateForPackage(String systemState, String packageName) { in getSystemStateForPackage() argument
116 return systemState + SYSTEM_STATE_SEPARATOR + getDay(); in getSystemStateForPackage()
118 return systemState; in getSystemStateForPackage()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/watchdog/
DWatchdogPerfHandlerUnitTest.java4303 int systemState, int[] killedUids) {
4317 uid, systemState, threshold, writtenBytes));
4386 int uid, int systemState, AtomsProto.CarWatchdogPerStateBytes threshold,
4389 CAR_WATCHDOG_KILL_STATS_REPORTED__UID_STATE__UNKNOWN_UID_STATE, systemState,
4397 int uid, int uidState, int systemState, int killReason,
4403 systemState))
/packages/services/Car/service/src/com/android/car/watchdog/
DWatchdogPerfHandler.java2092 int systemState; in pushIoOveruseKillMetrics() local
2095 systemState = inferSystemStateLocked(); in pushIoOveruseKillMetrics()
2111 systemState, in pushIoOveruseKillMetrics()