Searched refs:ptm (Results 1 – 7 of 7) sorted by relevance
/system/core/liblog/ |
D | log_time.cpp | 42 struct tm* ptm; in strptime() local 45 ptm = localtime_r(&now, &tmBuf); in strptime() 47 ptm = localtime(&now); in strptime() 58 ret = ::strptime(ret, f, ptm); in strptime() 71 ret = ::strptime(ret, f, ptm); in strptime() 83 ptm = localtime_r(&now, &tmBuf); in strptime() 85 ptm = localtime(&now); in strptime() 100 ret = ::strptime(ret, f, ptm); in strptime() 122 tv_sec = mktime(ptm); in strptime()
|
D | fake_log_device.cpp | 355 struct tm* ptm; in showLog() local 382 ptm = localtime_r(&when, &tmBuf); in showLog() 384 ptm = localtime(&when); in showLog() 387 strftime(timeBuf, sizeof(timeBuf), "%m-%d %H:%M:%S", ptm); in showLog()
|
D | logprint.cpp | 1530 struct tm* ptm; in android_log_formatLogLine() local 1573 ptm = NULL; in android_log_formatLogLine() 1578 ptm = localtime_r(&now, &tmBuf); in android_log_formatLogLine() 1580 ptm = localtime(&now); in android_log_formatLogLine() 1582 strftime(timeBuf, sizeof(timeBuf), &"%Y-%m-%d %H:%M:%S"[p_format->year_output ? 0 : 3], ptm); in android_log_formatLogLine() 1592 if (p_format->zone_output && ptm) { in android_log_formatLogLine() 1593 strftime(timeBuf + len, sizeof(timeBuf) - len, " %z", ptm); in android_log_formatLogLine()
|
/system/core/libziparchive/ |
D | zip_writer.cc | 159 struct tm* ptm; in ExtractTimeAndDate() local 162 ptm = localtime_r(&when, &tm_result); in ExtractTimeAndDate() 164 ptm = localtime(&when); in ExtractTimeAndDate() 167 int year = ptm->tm_year; in ExtractTimeAndDate() 172 *out_date = (year - 80) << 9 | (ptm->tm_mon + 1) << 5 | ptm->tm_mday; in ExtractTimeAndDate() 173 *out_time = ptm->tm_hour << 11 | ptm->tm_min << 5 | ptm->tm_sec >> 1; in ExtractTimeAndDate()
|
/system/bt/btif/src/ |
D | btif_debug_conn.cc | 42 struct tm* ptm = localtime(&secs); in format_ts() local 45 strftime(tempbuff, sizeof(tempbuff), "%m-%d %H:%M:%S", ptm); in format_ts()
|
/system/core/debuggerd/libdebuggerd/ |
D | tombstone.cpp | 551 struct tm* ptm; in dump_log_file() local 552 ptm = localtime_r(&sec, &tmBuf); in dump_log_file() 553 strftime(timeBuf, sizeof(timeBuf), "%m-%d %H:%M:%S", ptm); in dump_log_file()
|
/system/core/logcat/tests/ |
D | logcat_test.cpp | 191 struct tm* ptm; in TEST() local 194 ptm = localtime_r(&now, &tmBuf); in TEST() 196 ptm = localtime(&&now); in TEST() 198 strftime(needle, sizeof(needle), "[ %Y-", ptm); in TEST()
|