Home
last modified time | relevance | path

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

/ohos5.0/base/security/certificate_manager/services/cert_manager_standard/cert_manager_engine/main/core/src/
H A Dcert_manager_auth_mgr.c392 struct CmAppUidList tempAppUidList = { 0, NULL }; in CmAuthGetAuthorizedAppList() local
400 ret = CmGetAuthList(context, keyUri, &tempAppUidList); in CmAuthGetAuthorizedAppList()
406 if (tempAppUidList.appUidCount != 0) { in CmAuthGetAuthorizedAppList()
407 if (appUidList->appUidCount < tempAppUidList.appUidCount) { in CmAuthGetAuthorizedAppList()
409 appUidList->appUidCount, tempAppUidList.appUidCount); in CmAuthGetAuthorizedAppList()
414 tempAppUidList.appUid, tempAppUidList.appUidCount * sizeof(uint32_t)) != EOK) { in CmAuthGetAuthorizedAppList()
419 appUidList->appUidCount = tempAppUidList.appUidCount; in CmAuthGetAuthorizedAppList()
423 CM_FREE_PTR(tempAppUidList.appUid); in CmAuthGetAuthorizedAppList()