Lines Matching refs:g_moduleMgr
33 } g_moduleMgr[MODULE_MAX] = {
48 if (g_moduleMgr[type].moduleMgr == NULL) {
49 g_moduleMgr[type].moduleMgr = ModuleMgrCreate(g_moduleMgr[type].moduleName);
51 if (g_moduleMgr[type].moduleMgr == NULL) {
55 return ModuleMgrInstall(g_moduleMgr[type].moduleMgr, moduleName, 0, NULL);
66 if (g_moduleMgr[type].moduleMgr == NULL) {
69 ModuleMgrDestroy(g_moduleMgr[type].moduleMgr);
70 g_moduleMgr[type].moduleMgr = NULL;
78 if (g_moduleMgr[type].moduleMgr != NULL) {
81 APPSPAWN_LOGI("AppSpawnLoadAutoRunModules: %{public}d moduleName: %{public}s", type, g_moduleMgr[type].moduleName);
83 g_moduleMgr[type].moduleMgr = ModuleMgrScan(g_moduleMgr[type].moduleName);
84 return g_moduleMgr[type].moduleMgr == NULL ? -1 : 0;