Home
last modified time | relevance | path

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

/system/core/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/core/logd/
DLogStatistics.cpp581 static const uint64_t day = 24 * hour; in formatMsec() local
586 if (val >= day) { in formatMsec()
587 output = android::base::StringPrintf("%" PRIu64 "d ", val / day); in formatMsec()
588 val = (val % day) + day; in formatMsec()
593 (val / hour) % (day / hour)); in formatMsec()
/system/core/liblog/
Dlogprint.cpp914 static const uint64_t day = 24 * hour; in android_log_printBinaryEvent() local
920 if (val >= day) { in android_log_printBinaryEvent()
921 outCount = snprintf(outBuf, outBufLen, "%" PRIu64 "d ", val / day); in android_log_printBinaryEvent()
925 val = (val % day) + day; in android_log_printBinaryEvent()
929 outCount = snprintf(outBuf, outBufLen, "%" PRIu64 ":", (val / hour) % (day / hour)); in android_log_printBinaryEvent()
/system/core/fastboot/
Dfastboot.cpp2012 unsigned year, month, day; in ParseOsPatchLevel() local
2013 if (sscanf(arg, "%u-%u-%u", &year, &month, &day) != 3) { in ParseOsPatchLevel()
/system/core/init/
DREADME.md289 or 86400 to indicate that the service should run every day.