Searched refs:errBuf (Results 1 – 2 of 2) sorted by relevance
/developtools/profiler/device/plugins/native_daemon/test/unittest/common/native/include/ |
D | callstack_test.h | 133 char errBuf[errBufSize] = { 0 }; in LoadFromFile() local 134 strerror_r(errno, errBuf, errBufSize); in LoadFromFile() 135 HLOGE("fread fail! errno(%d:%s)", errno, errBuf); in LoadFromFile()
|
/developtools/profiler/device/plugins/native_daemon/src/ |
D | utilities.cpp | 335 char errBuf[errBufSize] = { 0 }; in CompressFile() local 336 strerror_r(errno, errBuf, errBufSize); in CompressFile() 337 CHECK_TRUE(fclose(fp) == 0, false, "fclose failed! errno(%d:%s)", errno, errBuf); in CompressFile() 376 char errBuf[size] = { 0 }; in UncompressFile() local 377 strerror_r(errno, errBuf, size); in UncompressFile() 378 CHECK_TRUE(fclose(fp) == 0, false, "fclose failed! errno(%d:%s)", errno, errBuf); in UncompressFile()
|