Home
last modified time | relevance | path

Searched refs:executorInfoArray (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/base/useriam/user_auth_framework/services/core/src/
H A Dremote_msg_util.cpp53 bool RemoteMsgUtil::EncodeQueryExecutorInfoReply(const std::vector<ExecutorInfo> &executorInfoArray, in EncodeQueryExecutorInfoReply() argument
56 IF_FALSE_LOGE_AND_RETURN_VAL(executorInfoArray.size() != 0, false); in EncodeQueryExecutorInfoReply()
62 return SetExecutorInfoArrayToAttributes(executorInfoArray, attr); in EncodeQueryExecutorInfoReply()
72 return GetExecutorInfoArrayFromAttributes(attr, signedRemoteExecutorInfo, executorInfoArray); in DecodeQueryExecutorInfoReply()
137 …RemoteMsgUtil::SetExecutorInfoArrayToAttributes(const std::vector<ExecutorInfo> &executorInfoArray, in SetExecutorInfoArrayToAttributes() argument
141 for (auto &executorInfo : executorInfoArray) { in SetExecutorInfoArrayToAttributes()
158 std::vector<uint8_t> &signedRemoteExecutorInfo, std::vector<ExecutorInfo> &executorInfoArray) in GetExecutorInfoArrayFromAttributes() argument
171 executorInfoArray.push_back(executorInfo); in GetExecutorInfoArrayFromAttributes()
192 std::vector<ExecutorInfo> executorInfoArray; in GetQueryExecutorInfoReply() local
210 executorInfoArray.push_back(executorInfo); in GetQueryExecutorInfoReply()
[all …]
/ohos5.0/base/useriam/user_auth_framework/services/core/inc/
H A Dremote_msg_util.h37 …DecodeQueryExecutorInfoReply(const Attributes &attr, std::vector<ExecutorInfo> &executorInfoArray);
44 static bool EncodeQueryExecutorInfoReply(const std::vector<ExecutorInfo> &executorInfoArray,
49 …static bool SetExecutorInfoArrayToAttributes(const std::vector<ExecutorInfo> &executorInfoArray, A…
51 … std::vector<uint8_t> &signedRemoteExecutorInfo, std::vector<ExecutorInfo> &executorInfoArray);
/ohos5.0/drivers/peripheral/user_auth/hdi_service/user_auth/src/
H A Duser_auth_funcs.c540 Uint8Array executorInfoTlvMsg, Uint8Array *executorInfoArray, uint32_t executorInfoArraySize) in GetSignExecutorInfoFuncInner() argument
554 ResultCode result = GetExecutorInfoMsg(executorInfo, &executorInfoArray[index]); in GetSignExecutorInfoFuncInner()
562 …ResultCode result = GetMultiDataSerializedMsg(executorInfoArray, executorInfoArraySize, &executorI… in GetSignExecutorInfoFuncInner()
588 Uint8Array executorInfoArray[executorList->size]; in GetSignExecutorInfoFunc() local
591 executorInfoArray[i] = (Uint8Array){ Malloc(MAX_EXECUTOR_MSG_LEN), MAX_EXECUTOR_MSG_LEN }; in GetSignExecutorInfoFunc()
592 if (executorInfoArray[i].data == NULL) { in GetSignExecutorInfoFunc()
602 executorInfoTlvMsg, executorInfoArray, executorList->size); in GetSignExecutorInfoFunc()
607 Free(executorInfoArray[i].data); in GetSignExecutorInfoFunc()