Searched defs:real (Results 1 - 2 of 2) sorted by relevance

/system/core/logd/
H A DLogKlog.h49 static void convertMonotonicToReal(log_time &real) { real += correction; } argument
50 static void convertRealToMonotonic(log_time &real) { real -= correction; } argument
H A DLogKlog.cpp280 log_time real; local
281 const char *ep = real.strptime(real_string, "%Y-%m-%d %H:%M:%S.%09q UTC");
282 if (!ep || (ep > &real_string[len]) || (real > log_time(CLOCK_REALTIME))) {
288 time_t now = real.tv_sec;
293 if ((tm.tm_gmtoff < 0) && ((-tm.tm_gmtoff) > (long)real.tv_sec)) {
294 real = log_time::EPOCH;
296 real.tv_sec += tm.tm_gmtoff;
298 if (monotonic > real) {
301 correction = real - monotonic;
367 log_time real(CLOCK_REALTIM
373 log_time real; local
[all...]

Completed in 23 milliseconds