Lines Matching refs:TeecResult

35 	TEEC_Result TeecResult = TEEC_SUCCESS;  in OpteeRpcAlloc()  local
44 TeecResult = TEEC_ERROR_OUT_OF_MEMORY; in OpteeRpcAlloc()
48 return TeecResult; in OpteeRpcAlloc()
63 TEEC_Result TeecResult = TEEC_SUCCESS; in OpteeRpcCmdLoadV2Ta() local
69 TeecResult = TEEC_ERROR_BAD_PARAMETERS; in OpteeRpcCmdLoadV2Ta()
80 TeecResult = TEEC_SUCCESS; in OpteeRpcCmdLoadV2Ta()
83 TeecResult = TEEC_ERROR_ITEM_NOT_FOUND; in OpteeRpcCmdLoadV2Ta()
87 TeeSmc32Arg->ret = TeecResult; in OpteeRpcCmdLoadV2Ta()
90 debug("TEEC: OpteeRpcCmdLoadV2Ta Exit : TeecResult=0x%X\n", TeecResult); in OpteeRpcCmdLoadV2Ta()
92 return TeecResult; in OpteeRpcCmdLoadV2Ta()
122 TEEC_Result TeecResult = TEEC_SUCCESS; in OpteeRpcCmdFs() local
127 TeecResult = OpteeClientRkFsProcess((void *)(size_t)TeeSmc32Param[0].u.memref.buf_ptr, in OpteeRpcCmdFs()
132 TeecResult = OpteeClientRkFsProcess((size_t)TeeSmc32Arg->num_params, in OpteeRpcCmdFs()
134 TeeSmc32Arg->ret = TeecResult; in OpteeRpcCmdFs()
136 return TeecResult; in OpteeRpcCmdFs()
160 TEEC_Result TeecResult = TEEC_SUCCESS; in OpteeRpcCallback() local
168 TeecResult = OpteeRpcAlloc(ArmSmcArgs->Arg1, &ArmSmcArgs->Arg2); in OpteeRpcCallback()
176 TeecResult = OpteeRpcAlloc(ArmSmcArgs->Arg1, &ArmSmcArgs->Arg1); in OpteeRpcCallback()
181 TeecResult = OpteeRpcFree(ArmSmcArgs->Arg2); in OpteeRpcCallback()
186 TeecResult = OpteeRpcFree(ArmSmcArgs->Arg1); in OpteeRpcCallback()
202 TeecResult = OpteeRpcAlloc(allocsize, &tempaddr); in OpteeRpcCallback()
213 TeecResult = OpteeRpcFree(tempaddr); in OpteeRpcCallback()
218 TeecResult = OpteeRpcCmdRpmb(TeeSmc32Arg); in OpteeRpcCallback()
222 TeecResult = OpteeRpcCmdFs(TeeSmc32Arg); in OpteeRpcCallback()
226 TeecResult = OpteeRpcCmdLoadV2Ta(TeeSmc32Arg); in OpteeRpcCallback()
233 TeecResult = TEEC_ERROR_NOT_IMPLEMENTED; in OpteeRpcCallback()
242 TeecResult = OpteeRpcAlloc(ArmSmcArgs->Arg1, &ArmSmcArgs->Arg1); in OpteeRpcCallback()
248 TeecResult = OpteeRpcFree(ArmSmcArgs->Arg1); in OpteeRpcCallback()
254 TeecResult = TEEC_ERROR_NOT_IMPLEMENTED; in OpteeRpcCallback()
260 debug("TEEC: OpteeRpcCallback Exit : TeecResult=0x%X\n", TeecResult); in OpteeRpcCallback()
262 return TeecResult; in OpteeRpcCallback()