Home
last modified time | relevance | path

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

/developtools/profiler/device/plugins/hilog_plugin/src/
Dhilog_plugin.cpp452 struct tm* pTM; in GetDateTime() local
455 pTM = localtime(&nSeconds); in GetDateTime()
456 if (pTM == nullptr) { in GetDateTime()
464 …ntf_s(psDateTime, size, size - 1, "%04d%02d%02d%02d%02d%02d", pTM->tm_year + BASE_YEAR, pTM->tm_mo… in GetDateTime()
465 pTM->tm_mday, pTM->tm_hour, pTM->tm_min, pTM->tm_sec) < 0) { in GetDateTime()
/developtools/profiler/device/plugins/hilog_plugin/test/unittest/
Dhilog_plugin_unittest.cpp99 struct tm* pTM; in RecordFileExist() local
102 pTM = localtime(&nSeconds); in RecordFileExist()
103 if (snprintf_s(name, sizeof(name), sizeof(name) - 1, "%04d", pTM->tm_year + BASE_YEAR) < 0) { in RecordFileExist()
139 struct tm* pTM = localtime(&nSeconds); in GetSec() local
140 if (pTM == nullptr) { in GetSec()
149 tmTime.tm_year = pTM->tm_year; in GetSec()