Home
last modified time | relevance | path

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

/system/core/libunwindstack/
DLog.cpp40 std::string real_format; in log() local
42 real_format = android::base::StringPrintf("%*s%s", 2 * indent, " ", format); in log()
44 real_format = format; in log()
49 real_format += '\n'; in log()
50 vprintf(real_format.c_str(), args); in log()
52 LOG_PRI_VA(ANDROID_LOG_INFO, LOG_TAG, real_format.c_str(), args); in log()
/system/core/logd/
DLogKlog.cpp268 static const char real_format[] = "%Y-%m-%d %H:%M:%S.%09q UTC"; in calculateCorrection() local
269 if (len < (ssize_t)(strlen(real_format) + 5)) return; in calculateCorrection()
272 const char* ep = real.strptime(real_string, real_format); in calculateCorrection()