Home
last modified time | relevance | path

Searched refs:hours (Results 1 – 5 of 5) sorted by relevance

/system/core/storaged/
Dstoraged_service.cpp95 double hours = 0; in dump() local
104 if(!ParseDouble(String8(args[i]).c_str(), &hours)) in dump()
130 storaged->get_uid_records(hours, threshold, force_report); in dump()
Dstoraged_uid_monitor.cpp188 double hours, uint64_t threshold, bool force_report) in dump() argument
199 if (hours != 0) { in dump()
200 first_ts = time(NULL) - hours * HOUR_TO_SEC; in dump()
/system/core/storaged/include/
Dstoraged_uid_monitor.h103 double hours, uint64_t threshold, bool force_report);
Dstoraged.h277 double hours, uint64_t threshold, bool force_report) { in get_uid_records() argument
278 return mUidm.dump(hours, threshold, force_report); in get_uid_records()
/system/update_engine/common/
Dutils.cc837 unsigned hours = delta.InHours(); in FormatTimeDelta() local
838 delta -= TimeDelta::FromHours(hours); in FormatTimeDelta()
847 if (days || hours) in FormatTimeDelta()
848 base::StringAppendF(&str, "%uh", hours); in FormatTimeDelta()
849 if (days || hours || mins) in FormatTimeDelta()