Searched refs:day (Results 1 – 8 of 8) sorted by relevance
/system/logging/logcat/tests/ |
D | logcat_benchmark.cpp | 38 int day; in BM_logcat_sorted_order() member in BM_logcat_sorted_order::timestamp 49 ok = sscanf(buffer, "%d-%d %d:%d:%d.%d ", &month, &day, &hour, in BM_logcat_sorted_order() 61 ((day < T.day) || in BM_logcat_sorted_order() 62 ((day == T.day) && in BM_logcat_sorted_order()
|
/system/keymaster/android_keymaster/ |
D | keymaster_configuration.cpp | 96 uint32_t day = match_to_uint32(patchlevel_str, matches[kDayMatch]); in GetPatchlevel() local 97 if (day < 1 || day > 31) { in GetPatchlevel() 98 ALOGE("Invalid patch day %d", day); in GetPatchlevel() 101 return year * 10000 + month * 100 + day; in GetPatchlevel()
|
/system/logging/logd/ |
D | LogStatistics.cpp | 734 static const uint64_t day = 24 * hour; in formatMsec() local 739 if (val >= day) { in formatMsec() 740 output = android::base::StringPrintf("%" PRIu64 "d ", val / day); in formatMsec() 741 val = (val % day) + day; in formatMsec() 746 (val / hour) % (day / hour)); in formatMsec()
|
D | README.compression.md | 45 * Captured 2, 5 day periods of full time personal usage of Pixel 4 and replayed the logs offline
|
/system/logging/liblog/ |
D | logprint.cpp | 889 static const uint64_t day = 24 * hour; in android_log_printBinaryEvent() local 895 if (val >= day) { in android_log_printBinaryEvent() 896 outCount = snprintf(outBuf, outBufLen, "%" PRIu64 "d ", val / day); in android_log_printBinaryEvent() 900 val = (val % day) + day; in android_log_printBinaryEvent() 904 outCount = snprintf(outBuf, outBufLen, "%" PRIu64 ":", (val / hour) % (day / hour)); in android_log_printBinaryEvent()
|
/system/update_engine/ |
D | README.md | 51 during certain times of a day or they require the update check time to be 52 scattered throughout the day randomly, etc. 149 during certain times of the day so as not to interfere with normal
|
/system/core/fastboot/ |
D | fastboot.cpp | 2343 unsigned year, month, day; in ParseOsPatchLevel() local 2344 if (sscanf(arg, "%u-%u-%u", &year, &month, &day) != 3) { in ParseOsPatchLevel()
|
/system/core/init/ |
D | README.md | 286 or 86400 to indicate that the service should run every day.
|