Home
last modified time | relevance | path

Searched refs:real_format (Results 1 – 3 of 3) sorted by relevance

/system/unwinding/libunwindstack/
DLogStdout.cpp32 std::string real_format; in PrintToStdout() local
34 real_format = android::base::StringPrintf("%*s%s", 2 * indent, " ", format); in PrintToStdout()
36 real_format = format; in PrintToStdout()
38 real_format += '\n'; in PrintToStdout()
40 vprintf(real_format.c_str(), args); in PrintToStdout()
DLogAndroid.cpp39 std::string real_format; in LogWithPriority() local
41 real_format = android::base::StringPrintf("%*s%s", 2 * indent, " ", format); in LogWithPriority()
43 real_format = format; in LogWithPriority()
45 LOG_PRI_VA(priority, LOG_TAG, real_format.c_str(), args); in LogWithPriority()
/system/logging/logd/
DLogKlog.cpp262 static const char real_format[] = "%Y-%m-%d %H:%M:%S.%09q UTC"; in calculateCorrection() local
263 if (len < (ssize_t)(strlen(real_format) + 5)) return; in calculateCorrection()
266 const char* ep = real.strptime(real_string, real_format); in calculateCorrection()