Home
last modified time | relevance | path

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

/developtools/profiler/device/plugins/native_hook/src/
Dhook_client.cpp353 void* pRet = nullptr; in hook_valloc() local
355 pRet = fn(size); in hook_valloc()
357 return pRet; in hook_valloc()
362 void* pRet = nullptr; in hook_calloc() local
364 pRet = fn(number, size); in hook_calloc()
367 return pRet; in hook_calloc()
369 if (!ohos_set_filter_size(number * size, pRet)) { in hook_calloc()
370 return pRet; in hook_calloc()
414 rawdata.addr = pRet; in hook_calloc()
427 return pRet; in hook_calloc()
[all …]
/developtools/profiler/device/plugins/hidump_plugin/test/unittest/
Dhidump_plugin_unittest.cpp229 char* pRet = fgets(buff, BUF_MAX_LEN - 1, fp.get()); in RecordFileExist() local
230 if (pRet == nullptr) { in RecordFileExist()
235 if (!strncmp(pRet, "123", strlen("123"))) { in RecordFileExist()
/developtools/profiler/device/plugins/hilog_plugin/test/unittest/
Dhilog_plugin_unittest.cpp118 char* pRet = fgets(buff, BUF_MAX_LEN - 1, fp.get()); in RecordFileExist() local
119 CHECK_NOTNULL(pRet, false, "FileCache: fgets Failed, errno(%d)", errno); in RecordFileExist()