Searched refs:tempOut (Results 1 – 3 of 3) sorted by relevance
43 std::string tempOut; in GetValue() local44 bool ret = GetValue(env, in, tempOut); in GetValue()46 out = Str8ToStr16(tempOut); in GetValue()
1206 struct HksBlob *tempOut = (struct HksBlob *)HksMalloc(sizeof(struct HksBlob)); in ConstructDervieBlob() local1207 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()
478 struct HksBlob tempOut = { sizeof(uint32_t), (uint8_t *)&temp }; in ServiceSignVerifyUpdate() local483 int32_t ret = HksUpdate(&handleHks, paramSet, &inDataHks, &tempOut); in ServiceSignVerifyUpdate()