Home
last modified time | relevance | path

Searched refs:pidfile_path (Results 1 – 5 of 5) sorted by relevance

/external/e2fsprogs/misc/
Duuidd.c230 static void server_loop(const char *socket_path, const char *pidfile_path, in server_loop() argument
244 fd_pidfile = open(pidfile_path, O_CREAT | O_RDWR, 0664); in server_loop()
248 pidfile_path, strerror(errno)); in server_loop()
251 cleanup_pidfile = pidfile_path; in server_loop()
265 pidfile_path, strerror(errno)); in server_loop()
446 const char *pidfile_path = UUIDD_PIDFILE_PATH; in main() local
482 pidfile_path = optarg; in main()
598 server_loop(socket_path, pidfile_path, debug, timeout, quiet); in main()
/external/autotest/scheduler/
Ddrone_utility.py221 pidfile_path = os.path.join(working_directory, pidfile_name)
222 if os.path.exists(pidfile_path):
223 self._warn('Pidfile %s already exists' % pidfile_path)
224 os.remove(pidfile_path)
643 def _read_pidfile(pidfile_path): argument
649 if not os.path.exists(pidfile_path):
652 with open(pidfile_path, 'r') as file_object:
653 return _PidfileContent(pidfile_path, file_object.read())
Ddrone_manager_unittest.py440 pidfile_path = 'results/hosts/host_id/job_id-name/.autoserv_execute'
441 pidfiles = {pidfile_path: '123\n12\n0\n'}
454 monitor.pidfile_id = drone_manager.PidfileId(pidfile_path)
467 pidfile_id.path == pidfile_path and
Ddrone_manager.py411 for pidfile_path, contents in pidfiles.iteritems():
412 pidfile_id = PidfileId(pidfile_path)
776 pidfile_path = os.path.join(abs_working_directory, pidfile_name)
777 pidfile_id = PidfileId(pidfile_path)
/external/autotest/client/common_lib/
Dutils.py1498 pidfile_path = _get_pid_path(program_name)
1501 os.remove(pidfile_path)
1503 if not os.path.exists(pidfile_path):
1515 pidfile_path = _get_pid_path(program_name)
1516 if not os.path.exists(pidfile_path):
1525 if not os.path.exists(pidfile_path):