Home
last modified time | relevance | path

Searched refs:outSize (Results 1 - 7 of 7) sorted by relevance

/developtools/hapsigner/hapsigntool_cpp/utils/src/
H A Dstring_utils.cpp85 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 Dftrace_parser.cpp555 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 Dftrace_processor.cpp47 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 Dpkcs7_data.cpp54 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 Dbase.h69 int ConnectKey2IPPort(const char *connectKey, char *outIP, uint16_t *outPort, size_t outSize);
H A Dbase.cpp1063 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 Dftrace_parser.h210 bool ReadInc(uint8_t* start[], uint8_t end[], void* outData, size_t outSize);

Completed in 10 milliseconds