Searched defs:hour (Results 1 - 3 of 3) sorted by relevance

/system/core/logcat/tests/
H A Dlogcat_benchmark.cpp39 int hour; member in class:timestamp
49 ok = sscanf(buffer, "%d-%d %d:%d:%d.%d ", &month, &day, &hour,
63 ((hour < T.hour) ||
64 ((hour == T.hour) &&
/system/core/logd/
H A DLogStatistics.cpp580 static const uint64_t hour = 60 * minute; local
581 static const uint64_t day = 24 * hour;
591 if (val >= hour) {
593 (val / hour) % (day / hour));
596 (val >= hour) ? "%02" PRIu64 ":" : "%" PRIu64 ":",
597 (val / minute) % (hour / minute));
/system/core/liblog/
H A Dlogprint.c930 static const uint64_t hour = 60 * minute; local
931 static const uint64_t day = 24 * hour;
945 if (val >= hour) {
947 (val / hour) % (day / hour));
954 (val >= hour) ? "%02" PRIu64 ":" : "%" PRIu64 ":",
955 (val / minute) % (hour / minute));

Completed in 95 milliseconds