Lines Matching full:real
280 log_time real;
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_REALTIME);
369 correction = (real < mono) ? log_time::EPOCH : (real - mono);
373 log_time real;
375 real.tv_sec = strtol(b, &endp, 10);
378 real.tv_nsec = 0;
381 real.tv_nsec += (*endp - '0') * multiplier;
384 if (real > correction) {
387 correction -= real;
390 correction += real;