/system/core/include/log/ |
log_read.h | 23 /* struct log_time is a wire-format variant of struct timespec */ 31 struct log_time { struct 39 log_time(const timespec &T) function in struct:log_time 44 log_time(uint32_t sec, uint32_t nsec) function in struct:log_time 50 log_time() function in struct:log_time 53 log_time(clockid_t id) function in struct:log_time 60 log_time(const char *T) function in struct:log_time 97 log_time operator-= (const timespec &T); 98 log_time operator- (const timespec &T) const 100 log_time local(*this) 163 typedef struct log_time { struct 166 } __attribute__((__packed__)) log_time; typedef in typeref:struct:log_time [all...] |
logger.h | 88 /* Matching log_time operators */ 168 log_time start,
|
/system/core/logd/ |
LogKlog.h | 29 const log_time signature; 41 static log_time correction; 48 static void convertMonotonicToReal(log_time &real) { real += correction; } 51 void sniffTime(log_time &now, const char **buf, bool reverse); 52 void calculateCorrection(const log_time &monotonic, const char *real_string);
|
LogBufferElement.h | 68 const log_time mRealTime; 76 LogBufferElement(log_id_t log_id, log_time realtime, 96 log_time getRealTime(void) const { return mRealTime; }
|
LogReader.cpp | 62 log_time start(log_time::EPOCH); 109 if (start != log_time::EPOCH) { 114 log_time &start; 119 LogFindStart(unsigned logMask, pid_t pid, log_time &start, uint64_t &sequence) :
|
LogKlog.cpp | 171 log_time LogKlog::correction = log_time(CLOCK_REALTIME) - log_time(CLOCK_MONOTONIC); 234 void LogKlog::calculateCorrection(const log_time &monotonic, 236 log_time real; 240 // kernel report UTC, log_time::strptime is localtime from calendar. 252 void LogKlog::sniffTime(log_time &now, const char **buf, bool reverse) { 267 log_time real; 283 now = log_time(CLOCK_REALTIME); 299 log_time now [all...] |
LogBuffer.h | 51 int log(log_id_t log_id, log_time realtime,
|
LogListener.cpp | 44 char buffer[sizeof_log_id_t + sizeof(uint16_t) + sizeof(log_time)
|
LogAudit.cpp | 116 log_time now;
|
LogBufferElement.cpp | 35 LogBufferElement::LogBufferElement(log_id_t log_id, log_time realtime,
|
LogBuffer.cpp | 137 int LogBuffer::log(log_id_t log_id, log_time realtime,
|
/system/core/liblog/ |
log_time.cpp | 25 const char log_time::default_format[] = "%m-%d %H:%M:%S.%q"; 26 const timespec log_time::EPOCH = { 0, 0 }; 30 char *log_time::strptime(const char *s, const char *format) { 33 *this = log_time(CLOCK_REALTIME); 127 *this = log_time(CLOCK_REALTIME); 136 log_time log_time::operator-= (const timespec &T) { 153 log_time log_time::operator+= (const timespec &T) { 164 log_time log_time::operator-= (const log_time &T) [all...] |
Android.mk | 46 liblog_target_sources := $(liblog_sources) log_time.cpp log_is_loggable.c
|
log_read.c | 250 log_time start; 551 log_time start,
|
log_read_kern.c | 309 log_time start __unused,
|
/system/core/liblog/tests/ |
liblog_benchmark.cpp | 144 log_time ts; 146 ts = log_time(CLOCK_REALTIME), 168 log_time tx(eventData + 4 + 1); 224 log_time ts(CLOCK_REALTIME); 248 log_time tx(eventData + 4 + 1);
|
liblog_test.cpp | 129 log_time ts(CLOCK_MONOTONIC); 155 log_time tx(eventData + 4 + 1); 167 log_time signal_time; 177 signal_time = log_time(CLOCK_MONOTONIC); 283 } while (!signaled || (log_time(CLOCK_MONOTONIC) < signal_time));
|
/system/core/logcat/ |
logcat.cpp | 383 static log_time lastLogTime(char *outputFileName) { 384 log_time retval(log_time::EPOCH); 389 log_time now(CLOCK_REALTIME); 403 log_time modulo(0, NS_PER_SEC); 425 log_time t(log_time::EPOCH); 451 if (retval == log_time::EPOCH) { 481 log_time tail_time(log_time::EPOCH) [all...] |
/system/core/include/private/ |
android_logger.h | 41 log_time realtime;
|
/bionic/libc/bionic/ |
libc_logging.cpp | 485 struct log_time { // Wire format struct 508 log_time realtime_ts; 570 log_time realtime_ts;
|
/system/core/logcat/tests/ |
logcat_test.cpp | 240 log_time ts(CLOCK_MONOTONIC); 262 log_time tx((const char *) &t);
|