Searched refs:g_aServices (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/HostDrivers/Support/
H A DSUPSvc.cpp113 static SUPSVCSERVICE g_aServices[] = variable
153 for (i = 0; i < RT_ELEMENTS(g_aServices); i++)
154 if (g_aServices[i].enmState != kSupSvcServiceState_NotCreated)
157 g_aServices[i].pszName, g_aServices[i].enmState, kSupSvcServiceState_NotCreated);
165 for (i = 0; i < RT_ELEMENTS(g_aServices); i++)
168 int rc = g_aServices[i].pfnCreate(&pvInstance);
171 Log(("supSvcCreateAndStartServices: %s -> %Rrc\n", g_aServices[i].pszName, rc));
174 g_aServices[i].pvInstance = pvInstance;
175 g_aServices[
[all...]
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxService.cpp111 } g_aServices[] = variable in typeref:struct:__anon2048
311 for (unsigned j = 0; j < RT_ELEMENTS(g_aServices); j++)
312 if (g_aServices[j].pDesc->pszUsage)
313 RTPrintf("%s\n", g_aServices[j].pDesc->pszUsage);
330 for (unsigned j = 0; j < RT_ELEMENTS(g_aServices); j++)
332 RTPrintf(" --enable-%-14s Enables the %s service. (default)\n", g_aServices[j].pDesc->pszName, g_aServices[j].pDesc->pszName);
333 RTPrintf(" --disable-%-13s Disables the %s service.\n", g_aServices[j].pDesc->pszName, g_aServices[j].pDesc->pszName);
334 RTPrintf(" --only-%-16s Only enables the %s service.\n", g_aServices[
[all...]
/vbox/src/VBox/Additions/darwin/VBoxClient/
H A DVBoxClient.cpp44 static VBOXCLIENTSERVICE g_aServices[] = variable
159 for (iServiceId = 0; iServiceId < RT_ELEMENTS(g_aServices); iServiceId++)
161 VBoxClientVerbose(1, "Starting service: %s\n", g_aServices[iServiceId].pszName);
162 rc = (g_aServices[iServiceId].pfnStart)();
165 VBoxClientVerbose(1, "unable to start service: %s (%Rrc)\n", g_aServices[iServiceId].pszName, rc);
171 VBoxClientVerbose(1, "Stopping service: %s\n", g_aServices[iServiceId].pszName);
172 int rcStop = (g_aServices[iServiceId].pfnStop)();
174 VBoxClientVerbose(1, "unable to stop service: %s (%Rrc)\n", g_aServices[iServiceId].pszName, rcStop);
197 for (iServiceId = 0; iServiceId < RT_ELEMENTS(g_aServices); iServiceId++)
199 VBoxClientVerbose(1, "Stopping service: %s\n", g_aServices[iServiceI
[all...]

Completed in 491 milliseconds