Home
last modified time | relevance | path

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

/ohos5.0/base/inputmethod/imf/frameworks/js/napi/common/
H A Djs_util.cpp43 std::string tempOut; in GetValue() local
44 bool ret = GetValue(env, in, tempOut); in GetValue()
46 out = Str8ToStr16(tempOut); in GetValue()
/ohos5.0/base/security/huks/services/huks_standard/huks_engine/main/core/src/
H A Dhks_core_service_three_stage.c1206 struct HksBlob *tempOut = (struct HksBlob *)HksMalloc(sizeof(struct HksBlob)); in ConstructDervieBlob() local
1207 HKS_IF_NULL_LOGE_RETURN(tempOut, HKS_ERROR_MALLOC_FAIL, "construct derive blob malloc failed") in ConstructDervieBlob()
1209 tempOut->data = (uint8_t *)HksMalloc(deriveSize); in ConstructDervieBlob()
1210 if (tempOut->data == NULL) { in ConstructDervieBlob()
1211 HKS_FREE(tempOut); in ConstructDervieBlob()
1215 tempOut->size = deriveSize; in ConstructDervieBlob()
1216 *out = tempOut; in ConstructDervieBlob()
/ohos5.0/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/
H A Dcert_manager_key_operation.c478 struct HksBlob tempOut = { sizeof(uint32_t), (uint8_t *)&temp }; in ServiceSignVerifyUpdate() local
483 int32_t ret = HksUpdate(&handleHks, paramSet, &inDataHks, &tempOut); in ServiceSignVerifyUpdate()