Searched refs:pidfile_path (Results 1 – 5 of 5) sorted by relevance
/external/e2fsprogs/misc/ |
D | uuidd.c | 228 static void server_loop(const char *socket_path, const char *pidfile_path, in server_loop() argument 242 fd_pidfile = open(pidfile_path, O_CREAT | O_RDWR, 0664); in server_loop() 246 pidfile_path, strerror(errno)); in server_loop() 249 cleanup_pidfile = pidfile_path; in server_loop() 263 pidfile_path, strerror(errno)); in server_loop() 444 const char *pidfile_path = UUIDD_PIDFILE_PATH; in main() local 480 pidfile_path = optarg; in main() 596 server_loop(socket_path, pidfile_path, debug, timeout, quiet); in main()
|
/external/autotest/scheduler/ |
D | drone_utility.py | 185 for pidfile_path in pidfile_paths: 186 if not os.path.exists(pidfile_path): 189 file_object = open(pidfile_path, 'r') 190 pidfiles[pidfile_path] = file_object.read() 352 pidfile_path = os.path.join(working_directory, pidfile_name) 353 if os.path.exists(pidfile_path): 354 self._warn('Pidfile %s already exists' % pidfile_path) 355 os.remove(pidfile_path)
|
D | drone_manager_unittest.py | 458 pidfile_path = 'results/hosts/host_id/job_id-name/.autoserv_execute' 459 pidfiles = {pidfile_path: '123\n12\n0\n'} 472 monitor.pidfile_id = drone_manager.PidfileId(pidfile_path) 485 pidfile_id.path == pidfile_path and
|
D | drone_manager.py | 391 for pidfile_path, contents in pidfiles.iteritems(): 392 pidfile_id = PidfileId(pidfile_path) 764 pidfile_path = os.path.join(abs_working_directory, pidfile_name) 765 pidfile_id = PidfileId(pidfile_path)
|
/external/autotest/client/common_lib/ |
D | base_utils.py | 1759 pidfile_path = _get_pid_path(program_name) 1762 os.remove(pidfile_path) 1764 if not os.path.exists(pidfile_path): 1776 pidfile_path = _get_pid_path(program_name) 1777 if not os.path.exists(pidfile_path): 1786 if not os.path.exists(pidfile_path):
|