Searched refs:outSize (Results 1 - 7 of 7) sorted by relevance
/developtools/hapsigner/hapsigntool_cpp/utils/src/ |
H A D | string_utils.cpp | 85 int outSize = i2d_PKCS7(p7, &out); in Pkcs7ToString() local 86 if (out == NULL || outSize <= 0) { in Pkcs7ToString() 92 ret.resize(outSize); in Pkcs7ToString() 93 std::copy(out, out + outSize, &ret[0]); in Pkcs7ToString()
|
/developtools/profiler/device/plugins/ftrace_plugin/src/ |
H A D | ftrace_parser.cpp | 555 bool FtraceParser::ReadInc(uint8_t* start[], uint8_t end[], void* outData, size_t outSize) in ReadInc() argument 557 if ((end - *start) < static_cast<ptrdiff_t>(outSize)) { in ReadInc() 560 CHECK_TRUE(memcpy_s(outData, outSize, *start, outSize) == EOK, false, in ReadInc() 561 "read %zu bytes from memory region FAILED", outSize); in ReadInc() local 562 *start += outSize; in ReadInc()
|
/developtools/smartperf_host/trace_streamer/src/parser/rawtrace_parser/ |
H A D | ftrace_processor.cpp | 47 bool ReadInfo(uint8_t *startPtr[], uint8_t *endPtr, void *outData, size_t outSize) in ReadInfo() argument 49 if ((endPtr - *startPtr) < static_cast<ptrdiff_t>(outSize)) { in ReadInfo() 52 if (memcpy_s(outData, outSize, *startPtr, outSize) != EOK) { in ReadInfo() 53 TS_LOGE("read %zu bytes from memory region [%p, %p) FAILED", outSize, *startPtr, endPtr); in ReadInfo() 56 *startPtr += outSize; in ReadInfo()
|
/developtools/hapsigner/hapsigntool_cpp/profile/src/ |
H A D | pkcs7_data.cpp | 54 int outSize = 0; in I2dPkcs7Str() local 56 outSize = i2d_PKCS7(p7, &out); in I2dPkcs7Str() 57 if (out == NULL || outSize <= 0) { in I2dPkcs7Str() 63 ret.resize(outSize); in I2dPkcs7Str() 64 std::copy(out, out + outSize, &ret[0]); in I2dPkcs7Str()
|
/developtools/hdc/src/common/ |
H A D | base.h | 69 int ConnectKey2IPPort(const char *connectKey, char *outIP, uint16_t *outPort, size_t outSize);
|
H A D | base.cpp | 1063 int ConnectKey2IPPort(const char *connectKey, char *outIP, uint16_t *outPort, size_t outSize) in ConnectKey2IPPort() argument 1078 if (EOK != strcpy_s(outIP, outSize, bufString)) { in ConnectKey2IPPort()
|
/developtools/profiler/device/plugins/ftrace_plugin/include/ |
H A D | ftrace_parser.h | 210 bool ReadInc(uint8_t* start[], uint8_t end[], void* outData, size_t outSize);
|
Completed in 10 milliseconds