• Home
  • Raw
  • Download

Lines Matching refs:nError

522    TEEC_Result  nError = S_SUCCESS;  in partitionDestroy()  local
540 nError = errno2serror(); in partitionDestroy()
543 return nError; in partitionDestroy()
554 uint32_t nError = S_SUCCESS; in partitionCreate() local
570 nError = errno2serror(); in partitionCreate()
571 return nError; in partitionCreate()
574 return nError; in partitionCreate()
587 uint32_t nError = S_SUCCESS; in partitionOpen() local
604 nError = S_ERROR_ITEM_NOT_FOUND; in partitionOpen()
605 return nError; in partitionOpen()
610 nError = errno2serror(); in partitionOpen()
611 return nError; in partitionOpen()
623 return nError; in partitionOpen()
801 TEEC_Result nError = S_SUCCESS; in partitionSync() local
817 nError=errno2serror(); in partitionSync()
833 nError=errno2serror(); in partitionSync()
837 return nError; in partitionSync()
881 S_RESULT nError; in runSession() local
923 nError = TEEC_SUCCESS; in runSession()
995 nError = S_ERROR_BAD_PARAMETERS; in runSession()
1010 nError = partitionCreate(nPartitionID); in runSession()
1011 … TRACE_INFO("INSTRUCTION: ID=0x%x pid=%d err=%d", (nInstructionID & 0x0F), nPartitionID, nError); in runSession()
1016 nError = partitionOpen(nPartitionID, &nPartitionSize); in runSession()
1017 …N: ID=0x%x pid=%d pSize=%d err=%d", (nInstructionID & 0x0F), nPartitionID, nPartitionSize, nError); in runSession()
1018 if (nError == S_SUCCESS) in runSession()
1039 nError = partitionRead(nPartitionID, nSectorID, nWorkspaceOffset); in runSession()
1040 …id=%d woff=%d err=%d", (nInstructionID & 0x0F), nPartitionID, nSectorID, nWorkspaceOffset, nError); in runSession()
1058 nError = partitionWrite(nPartitionID, nSectorID, nWorkspaceOffset); in runSession()
1059 …id=%d woff=%d err=%d", (nInstructionID & 0x0F), nPartitionID, nSectorID, nWorkspaceOffset, nError); in runSession()
1063 nError = partitionSync(nPartitionID); in runSession()
1064 … TRACE_INFO("INSTRUCTION: ID=0x%x pid=%d err=%d", (nInstructionID & 0x0F), nPartitionID, nError); in runSession()
1065 if (nError == S_SUCCESS) in runSession()
1082 nError = partitionSetSize(nPartitionID, nNewSize); in runSession()
1083 …TION: ID=0x%x pid=%d nNewSize=%d err=%d", (nInstructionID & 0x0F), nPartitionID, nNewSize, nError); in runSession()
1087 nError = partitionClose(nPartitionID); in runSession()
1088 … TRACE_INFO("INSTRUCTION: ID=0x%x pid=%d err=%d", (nInstructionID & 0x0F), nPartitionID, nError); in runSession()
1091 nError = partitionDestroy(nPartitionID); in runSession()
1092 … TRACE_INFO("INSTRUCTION: ID=0x%x pid=%d err=%d", (nInstructionID & 0x0F), nPartitionID, nError); in runSession()
1095 g_pExchangeBuffer->sAdministrativeData.nPartitionErrorStates[nPartitionID] = nError; in runSession()
1109 TEEC_Result nError; in createSession() local
1115 nError = TEEC_OpenSession(pContext, in createSession()
1123 if (nError != TEEC_SUCCESS) in createSession()
1125 LogError("Error on TEEC_OpenSession : 0x%x", nError); in createSession()
1162 nError = TEEC_RegisterSharedMemory(pContext, &sExchangeSharedMem); in createSession()
1163 if (nError != TEEC_SUCCESS) in createSession()
1165 LogError("Error on TEEC_RegisterSharedMemory : 0x%x", nError); in createSession()
1184 TEEC_Result nError; in delegation_main() local
1383 nError = TEEC_InitializeContext(NULL, /* const char * name */ in delegation_main()
1385 if (nError != TEEC_SUCCESS) in delegation_main()
1387 LogError("TEEC_InitializeContext error: 0x%08X", nError); in delegation_main()