HomeSort by relevance Sort by last modified time
    Searched refs:pidfile_path (Results 1 - 5 of 5) sorted by null

  /external/e2fsprogs/misc/
uuidd.c 230 static void server_loop(const char *socket_path, const char *pidfile_path,
244 fd_pidfile = open(pidfile_path, O_CREAT | O_RDWR, 0664);
248 pidfile_path, strerror(errno));
251 cleanup_pidfile = pidfile_path;
265 pidfile_path, strerror(errno));
446 const char *pidfile_path = UUIDD_PIDFILE_PATH; local
482 pidfile_path = optarg;
598 server_loop(socket_path, pidfile_path, debug, timeout, quiet);
  /external/autotest/scheduler/
drone_utility.py 221 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):
646 @param: pidfile_path: Path of the file to read.
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())
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
drone_manager.py 413 for pidfile_path, contents in pidfiles.iteritems():
414 pidfile_id = PidfileId(pidfile_path)
795 pidfile_path = os.path.join(abs_working_directory, pidfile_name)
796 pidfile_id = PidfileId(pidfile_path)
    [all...]
  /external/autotest/client/common_lib/
utils.py     [all...]

Completed in 98 milliseconds