Home
last modified time | relevance | path

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

/ohos5.0/base/hiviewdfx/hilog_lite/frameworks/mini/
H A Dhiview_output_log.c216 while (ReadFromCache(&g_logCache, (uint8 *)&(logContent.commonContent), in OutputLogRealtime()
224 if (len > 0 && ReadFromCache(&g_logCache, (uint8 *)&(logContent.values), len) != len) { in OutputLogRealtime()
248 while (ReadFromCache(&g_logCache, (uint8 *)&(logContent.commonContent), in OutputLog2TextFile()
256 if (len > 0 && ReadFromCache(&g_logCache, (uint8 *)&(logContent.values), len) != len) { in OutputLog2TextFile()
302 … if (ReadFromCache(&g_logCache, tmpBuffer + len, sizeof(HiLogCommon)) != sizeof(HiLogCommon)) { in OutputLog2BinFile()
319 if (ReadFromCache(&g_logCache, tmpBuffer + len, valueLen) != valueLen) { in OutputLog2BinFile()
/ohos5.0/base/hiviewdfx/hievent_lite/frameworks/
H A Dhiview_output_event.c291 …while (ReadFromCache(c, (uint8 *)&(event.common), sizeof(HiEventCommon)) == sizeof(HiEventCommon))… in OutputEventRealtime()
305 if (payloadLen > 0 && ReadFromCache(c, payload, payloadLen) != payloadLen) { in OutputEventRealtime()
345 if (ReadFromCache(c, tmpBuffer + len, sizeof(HiEventCommon)) != sizeof(HiEventCommon)) { in Output2Flash()
357 if (ReadFromCache(c, tmpBuffer + len, payloadLen) != payloadLen) { in Output2Flash()
/ohos5.0/base/hiviewdfx/hiview_lite/
H A Dhiview_cache.h83 int32 ReadFromCache(HiviewCache *cache, uint8 *data, uint16 rLen);
H A Dhiview_cache.c109 int32 ReadFromCache(HiviewCache *cache, uint8 *data, uint16 rLen) in ReadFromCache() function