Home
last modified time | relevance | path

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

/base/security/device_auth/frameworks/inc/lite/
H A Dipc_adapt.h63 int32_t IpcEncodeCallReply(uintptr_t replayCache, int32_t type, const uint8_t *result, int32_t resultSz);
/base/security/device_auth/frameworks/inc/standard/
H A Dipc_adapt.h55 int32_t IpcEncodeCallReply(uintptr_t replayCache, int32_t type, const uint8_t *result, int32_t resultSz);
/base/security/device_auth/frameworks/src/lite/
H A Dipc_adapt.c1462 int32_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()
/base/security/device_auth/frameworks/src/standard/
H A Dipc_adapt.cpp1370 int32_t IpcEncodeCallReply(uintptr_t replayCache, int32_t type, const uint8_t *result, int32_t resultSz) in IpcEncodeCallReply() argument
1378 errCnt += replyParcel->WriteInt32(resultSz) ? 0 : 1; in IpcEncodeCallReply()
1379 if ((result != nullptr) && (resultSz > 0)) { in IpcEncodeCallReply()
1381 reinterpret_cast<const void *>(result), static_cast<size_t>(resultSz)) ? 0 : 1; in IpcEncodeCallReply()

Completed in 6 milliseconds