Searched refs:real_format (Results 1 – 3 of 3) sorted by relevance
/system/unwinding/libunwindstack/ |
D | LogStdout.cpp | 32 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()
|
D | LogAndroid.cpp | 39 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/ |
D | LogKlog.cpp | 262 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()
|