Home
last modified time | relevance | path

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

/base/hiviewdfx/hilog_lite/frameworks/mini/
Dhiview_output_log.c163 char tempOutStr[LOG_FMT_MAX_LEN] = {0}; in OutputLog() local
164 if (LogContentFmt(tempOutStr, sizeof(tempOutStr), data) > 0) { in OutputLog()
165 HIVIEW_UartPrint(tempOutStr); in OutputLog()
212 char tempOutStr[LOG_FMT_MAX_LEN] = {0}; in OutputLogRealtime() local
227 len = LogContentFmt(tempOutStr, sizeof(tempOutStr), (uint8 *)&logContent); in OutputLogRealtime()
231 HIVIEW_UartPrint(tempOutStr); in OutputLogRealtime()
240 char tempOutStr[LOG_FMT_MAX_LEN] = {0}; in OutputLog2TextFile() local
259 len = LogContentFmt(tempOutStr, sizeof(tempOutStr), (uint8 *)&logContent); in OutputLog2TextFile()
260 if (len > 0 && tempOutStr[len - 1] == '\0') { in OutputLog2TextFile()
273 if (len > 0 && WriteToFile(&g_logFile, (uint8 *)tempOutStr, len) != len) { in OutputLog2TextFile()