Home
last modified time | relevance | path

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

/ohos5.0/base/startup/init/test/moduletest/
H A Dservice_control_test.cpp50 … ret = ServiceWaitForStatus(serviceName.c_str(), SERVICE_STOPPED, WAIT_SERVICE_STATUS_TIMEOUT);
61 ret = ServiceWaitForStatus(serviceName.c_str(), SERVICE_STARTED, WAIT_SERVICE_STATUS_TIMEOUT);
147 ret = ServiceWaitForStatus(serviceName.c_str(), SERVICE_STOPPED, WAIT_SERVICE_STATUS_TIMEOUT);
175 ret = ServiceWaitForStatus(serviceName.c_str(), SERVICE_STOPPED, WAIT_SERVICE_STATUS_TIMEOUT);
235 ret = ServiceWaitForStatus(serviceName.c_str(), SERVICE_STOPPED, WAIT_SERVICE_STATUS_TIMEOUT);
253 ret = ServiceWaitForStatus(serviceName.c_str(), SERVICE_STOPPED, WAIT_SERVICE_STATUS_TIMEOUT);
262 ret = ServiceWaitForStatus(serviceName.c_str(), SERVICE_STARTED, WAIT_SERVICE_STATUS_TIMEOUT);
267 ret = ServiceWaitForStatus(serviceName.c_str(), SERVICE_STOPPED, WAIT_SERVICE_STATUS_TIMEOUT);
/ohos5.0/base/startup/init/interfaces/innerkits/service_control/
H A Dservice_control.c105 if (ServiceWaitForStatus(serviceName, SERVICE_STOPPED, DEFAULT_PARAM_WAIT_TIMEOUT) != 0) { in RestartProcess()
165 int ServiceWaitForStatus(const char *serviceName, ServiceStatus status, int waitTimeout) in ServiceWaitForStatus() function
/ohos5.0/base/startup/init/test/fuzztest/servicewaitforstatus_fuzzer/
H A Dservicewaitforstatus_fuzzer.cpp25 if (!ServiceWaitForStatus(str.c_str(), SERVICE_STARTED, 1)) { in FuzzServiceWaitForStatus()
/ohos5.0/base/startup/init/interfaces/innerkits/include/
H A Dservice_control.h51 int ServiceWaitForStatus(const char *serviceName, ServiceStatus status, int waitTimeout);
/ohos5.0/base/startup/init/test/unittest/innerkits/
H A Dinnerkits_unittest.cpp308 ServiceWaitForStatus("deviceinfoservice", SERVICE_READY, 1);
309 ServiceWaitForStatus("deviceinfoservice", SERVICE_READY, -1);
310 ServiceWaitForStatus(nullptr, SERVICE_READY, 1);
/ohos5.0/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/src/componentmanager/
H A Dcomponent_monitor.cpp67 ServiceWaitForStatus(((*processNameIter).second).c_str(), in OnRemoveSystemAbility()
/ohos5.0/base/startup/init/interfaces/innerkits/
H A Dlibbegetutil.versionscript139 ServiceWaitForStatus;
/ohos5.0/base/startup/init/test/unittest/param/
H A Dwatcher_agent_unittest.cpp282 ServiceWaitForStatus("param_watcher", SERVICE_STARTED, 1);
/ohos5.0/docs/zh-cn/device-dev/subsystems/
H A Dsubsys-boot-init-service.md325 | int ServiceWaitForStatus(const char *serviceName, ServiceStatus status, int waitTimeout) | 等待服务状态…
/ohos5.0/docs/en/device-dev/subsystems/
H A Dsubsys-boot-init-service.md325 | int ServiceWaitForStatus(const char *serviceName, ServiceStatus status, int waitTimeout) | Sets t…
/ohos5.0/foundation/systemabilitymgr/samgr/services/samgr/native/source/
H A Dsystem_ability_manager.cpp1522 … int ret = ServiceWaitForStatus(Str16ToStr8(name).c_str(), ServiceStatus::SERVICE_STOPPED, 1); in StartDynamicSystemProcess()