HomeSort by relevance Sort by last modified time
    Searched refs:mcRet (Results 1 - 5 of 5) sorted by null

  /hardware/samsung_slsi/exynos5/libsecurepath/
tlc_communication.cpp 25 mcResult_t mcRet;
32 mcRet = mcOpenDevice(comm_ctx->device_id);
33 if (MC_DRV_OK != mcRet)
34 LOG_I("mcOpenDevice result: %d", mcRet);
40 mcRet = mcMallocWsm(comm_ctx->device_id, 0, sizeof(tciMessage_t), (uint8_t **)&(comm_ctx->tci_msg), 0);
41 if (MC_DRV_OK != mcRet) {
42 LOG_E("Allocation of TCI WSM failed: %d", mcRet);
53 mcRet = mcOpenSession(&(comm_ctx->handle), &(comm_ctx->uuid), (uint8_t *)(comm_ctx->tci_msg),
55 if (MC_DRV_OK != mcRet) {
56 LOG_E("Open session failed: %d", mcRet);
    [all...]
content_protect.cpp 29 mcResult_t mcRet;
36 mcRet = tlc_open(&cp_ctx);
37 if (MC_DRV_OK != mcRet) {
39 return mcRet;
49 mcResult_t mcRet;
52 mcRet = tlc_close(&cp_ctx);
53 if (MC_DRV_OK != mcRet) {
55 return mcRet;
68 mcResult_t mcRet;
75 mcRet = tlc_initialize()
    [all...]
  /hardware/samsung_slsi/exynos5/libkeymaster/
tlcTeeKeymaster_if.c 56 mcResult_t mcRet;
72 mcRet = mcOpenDevice(DEVICE_ID);
73 if (MC_DRV_OK != mcRet)
75 LOG_E("TEE_Open(): mcOpenDevice returned: %d\n", mcRet);
80 mcRet = mcMallocWsm(DEVICE_ID, 0, sizeof(tciMessage_t), (uint8_t **) &pTci, 0);
81 if (MC_DRV_OK != mcRet)
83 LOG_E("TEE_Open(): mcMallocWsm returned: %d\n", mcRet);
89 mcRet = mcOpenSession(pSessionHandle,
93 if (MC_DRV_OK != mcRet)
95 LOG_E("TEE_Open(): mcOpenSession returned: %d\n", mcRet);
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/
MobiCoreDevice.cpp 311 uint32_t mcRet = mcpMessage->rspOpen.rspHeader.result;
313 if (mcRet != MC_MCP_RET_OK) {
314 LOG_E("MCP OPEN returned code %d.", mcRet);
316 return MAKE_MC_DRV_MCP_ERROR(mcRet);
408 uint32_t mcRet = mcpMessage->rspOpen.rspHeader.result;
410 if (mcRet != MC_MCP_RET_OK) {
411 LOG_E("CMD_CLOSE_SESSION error %d", mcRet);
412 return MAKE_MC_DRV_MCP_ERROR(mcRet);
434 uint32_t mcRet = closeSession(sessionId);
435 if (mcRet != MC_DRV_OK)
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/
MobiCoreDriverDaemon.cpp 278 uint32_t mcRet = mobiCoreDevice->openSession(
293 if (mcRet != MC_MCP_RET_OK) {
294 LOG_E("open session error %d", mcRet);

Completed in 156 milliseconds