Lines Matching defs:mgr
93 void DeleteAppSpawnMgr(AppSpawnMgr *mgr)
95 APPSPAWN_CHECK_ONLY_EXPER(mgr != NULL, return);
96 OH_ListRemoveAll(&mgr->appQueue, NULL);
97 OH_ListRemoveAll(&mgr->diedQueue, NULL);
98 OH_ListRemoveAll(&mgr->appSpawnQueue, SpawningQueueDestroy);
99 OH_ListRemoveAll(&mgr->extData, ExtDataDestroy);
101 APPSPAWN_LOGV("DeleteAppSpawnMgr %{public}d %{public}d", mgr->servicePid, getpid());
102 free(mgr);
103 if (g_appSpawnMgr == mgr) {
142 APPSPAWN_CHECK(g_appSpawnMgr != NULL && processName != NULL, return NULL, "Invalid mgr or process name");