Home
last modified time | relevance | path

Searched refs:day (Results 1 – 8 of 8) sorted by relevance

/system/logging/logcat/tests/
Dlogcat_benchmark.cpp38 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/
Dkeymaster_configuration.cpp96 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/
DLogStatistics.cpp734 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()
DREADME.compression.md45 * Captured 2, 5 day periods of full time personal usage of Pixel 4 and replayed the logs offline
/system/logging/liblog/
Dlogprint.cpp889 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/
DREADME.md51 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/
Dfastboot.cpp2343 unsigned year, month, day; in ParseOsPatchLevel() local
2344 if (sscanf(arg, "%u-%u-%u", &year, &month, &day) != 3) { in ParseOsPatchLevel()
/system/core/init/
DREADME.md286 or 86400 to indicate that the service should run every day.