Home
last modified time | relevance | path

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

/ohos5.0/base/security/device_auth/frameworks/inc/standard/
H A Dipc_adapt.h55 …t IpcEncodeCallReply(uintptr_t replayCache, int32_t type, const uint8_t *result, int32_t resultSz);
/ohos5.0/base/security/device_auth/frameworks/inc/lite/
H A Dipc_adapt.h63 …t IpcEncodeCallReply(uintptr_t replayCache, int32_t type, const uint8_t *result, int32_t resultSz);
/ohos5.0/base/security/device_auth/frameworks/src/lite/
H A Dipc_adapt.c1462 …_t IpcEncodeCallReply(uintptr_t replayCache, int32_t type, const uint8_t *result, int32_t resultSz) in IpcEncodeCallReply() argument
1471 if ((result != NULL) && (resultSz > 0)) { in IpcEncodeCallReply()
1472 WriteUint32(replyParcel, (uint32_t)resultSz); in IpcEncodeCallReply()
1473 value = WriteBuffer(replyParcel, (const void *)result, (uint32_t)resultSz); in IpcEncodeCallReply()
/ohos5.0/base/security/device_auth/frameworks/src/standard/
H A Dipc_adapt.cpp1354 …_t IpcEncodeCallReply(uintptr_t replayCache, int32_t type, const uint8_t *result, int32_t resultSz) in IpcEncodeCallReply() argument
1362 errCnt += replyParcel->WriteInt32(resultSz) ? 0 : 1; in IpcEncodeCallReply()
1363 if ((result != nullptr) && (resultSz > 0)) { in IpcEncodeCallReply()
1365 reinterpret_cast<const void *>(result), static_cast<size_t>(resultSz)) ? 0 : 1; in IpcEncodeCallReply()