Home
last modified time | relevance | path

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

/base/inputmethod/imf/frameworks/js/napi/common/
Djs_util.cpp43 std::string tempOut; in GetValue() local
44 bool ret = GetValue(env, in, tempOut); in GetValue()
46 out = Str8ToStr16(tempOut); in GetValue()
/base/security/huks/services/huks_standard/huks_engine/main/core/src/
Dhks_core_service_three_stage.c817 struct HksBlob *tempOut = (struct HksBlob *)HksMalloc(sizeof(struct HksBlob)); in ConstructDervieBlob() local
818 HKS_IF_NULL_LOGE_RETURN(tempOut, HKS_ERROR_MALLOC_FAIL, "construct derive blob malloc failed") in ConstructDervieBlob()
820 tempOut->data = (uint8_t *)HksMalloc(deriveSize); in ConstructDervieBlob()
821 if (tempOut->data == NULL) { in ConstructDervieBlob()
822 HKS_FREE_PTR(tempOut); in ConstructDervieBlob()
826 tempOut->size = deriveSize; in ConstructDervieBlob()
827 *out = tempOut; in ConstructDervieBlob()
/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/
Dcert_manager_key_operation.c340 struct HksBlob tempOut = { sizeof(uint32_t), (uint8_t *)&temp }; in ServiceSignVerifyUpdate() local
345 int32_t ret = HksUpdate(&handleHks, paramSet, &inDataHks, &tempOut); in ServiceSignVerifyUpdate()