Searched refs:jobsName (Results 1 – 4 of 4) sorted by relevance
66 if (service->serviceJobs.jobsName[JOB_ON_BOOT] != NULL) { in DumpServiceJobs()67 printf("\t\tservice boot job %s \n", service->serviceJobs.jobsName[JOB_ON_BOOT]); in DumpServiceJobs()69 if (service->serviceJobs.jobsName[JOB_PRE_START]!= NULL) { in DumpServiceJobs()70 printf("\t\tservice pre-start job %s \n", service->serviceJobs.jobsName[JOB_PRE_START]); in DumpServiceJobs()72 if (service->serviceJobs.jobsName[JOB_ON_START] != NULL) { in DumpServiceJobs()73 printf("\t\tservice start job %s \n", service->serviceJobs.jobsName[JOB_ON_START]); in DumpServiceJobs()75 if (service->serviceJobs.jobsName[JOB_ON_STOP] != NULL) { in DumpServiceJobs()76 printf("\t\tservice stop job %s \n", service->serviceJobs.jobsName[JOB_ON_STOP]); in DumpServiceJobs()78 if (service->serviceJobs.jobsName[JOB_ON_RESTART] != NULL) { in DumpServiceJobs()79 printf("\t\tservice restart job %s \n", service->serviceJobs.jobsName[JOB_ON_RESTART]); in DumpServiceJobs()
427 if (service->serviceJobs.jobsName[JOB_ON_START] != NULL) { in InitServiceProperties()428 DoJobNow(service->serviceJobs.jobsName[JOB_ON_START]); in InitServiceProperties()648 if (service->serviceJobs.jobsName[JOB_PRE_START] != NULL) { in ServiceStart()649 DoJobNow(service->serviceJobs.jobsName[JOB_PRE_START]); in ServiceStart()681 if (service->serviceJobs.jobsName[JOB_ON_STOP] != NULL) { in ServiceStop()682 DoJobNow(service->serviceJobs.jobsName[JOB_ON_STOP]); in ServiceStop()852 if (service->serviceJobs.jobsName[JOB_ON_RESTART] != NULL) { in ServiceReap()853 DoJobNow(service->serviceJobs.jobsName[JOB_ON_RESTART]); in ServiceReap()970 if (service->serviceJobs.jobsName[JOB_ON_RESTART] != NULL) { in ServiceTimerReStartProcess()971 DoJobNow(service->serviceJobs.jobsName[JOB_ON_RESTART]); in ServiceTimerReStartProcess()
178 if (service->serviceJobs.jobsName[i] != NULL) { in ReleaseService()179 free(service->serviceJobs.jobsName[i]); in ReleaseService()181 service->serviceJobs.jobsName[i] = NULL; in ReleaseService()670 if (service->serviceJobs.jobsName[i] != NULL) { in GetServiceJobs()671 DelGroupNode(NODE_TYPE_JOBS, service->serviceJobs.jobsName[i]); in GetServiceJobs()672 free(service->serviceJobs.jobsName[i]); in GetServiceJobs()674 service->serviceJobs.jobsName[i] = strdup(jobName); in GetServiceJobs()675 if (service->serviceJobs.jobsName[i] == NULL) { in GetServiceJobs()
137 char *jobsName[JOB_ON_MAX]; member