Home
last modified time | relevance | path

Searched refs:pid_file (Results 1 – 14 of 14) sorted by relevance

/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/vblade/files/
H A Dvblade.init84 local pid_file=${2:-/var/run/$base.pid}
87 if [ -f "$pid_file" ] ; then
96 done < "$pid_file"
111 local base pid lock_file= pid_file=
119 pid_file=$2
129 __pids_var_run "$1" "$pid_file"
131 if [ -z "$pid_file" -a -z "$pid" ]; then
/openbmc/qemu/storage-daemon/
H A Dqemu-storage-daemon.c64 static const char *pid_file; variable
354 pid_file = optarg; in process_options()
375 if (!pid_file) { in pid_file_init()
379 if (!qemu_write_pidfile(pid_file, &err)) { in pid_file_init()
385 if (!realpath(pid_file, pid_file_realpath)) { in pid_file_init()
387 pid_file, strerror(errno)); in pid_file_init()
388 unlink(pid_file); in pid_file_init()
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/ez-ipupdate/files/
H A DMakefile.am.patch10 …f_file.c conf_file.h md5.c md5.h cache_file.c cache_file.h error.h pid_file.c pid_file.h dprintf.h…
12 …nf_file.c conf_file.h md5.c md5.h cache_file.c cache_file.h error.h pid_file.c pid_file.h dprintf.h
/openbmc/linux/tools/usb/usbip/src/
H A Dusbipd.c464 static const char *pid_file; variable
468 if (pid_file) { in write_pid_file()
469 dbg("creating pid file %s", pid_file); in write_pid_file()
472 fp = fopen(pid_file, "w"); in write_pid_file()
475 pid_file, errno, strerror(errno)); in write_pid_file()
485 if (pid_file) { in remove_pid_file()
486 dbg("removing pid file %s", pid_file); in remove_pid_file()
487 unlink(pid_file); in remove_pid_file()
612 pid_file = NULL; in main()
645 pid_file = optarg ? optarg : DEFAULT_PID_FILE; in main()
/openbmc/qemu/contrib/ivshmem-server/
H A Dmain.c30 const char *pid_file; member
92 args->pid_file = optarg; in ivshmem_server_parse_args()
195 .pid_file = IVSHMEM_SERVER_DEFAULT_PID_FILE, in main()
256 fp = fopen(args.pid_file, "w"); in main()
/openbmc/openbmc/meta-openembedded/meta-webserver/recipes-webadmin/webmin/files/
H A Dproftpd-config-fix.patch12 -pid_file=/usr/local/var/proftpd.pid
15 +pid_file=/var/proftpd.pid
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/lowpan-tools/lowpan-tools/
H A D0001-coordinator-Fix-strncpy-range-warning.patch28 pid_file = getenv("PID_FILE");
29 if (!pid_file)
/openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-filesystems/owfs/owfs/
H A Dowhttpd23 start-stop-daemon --start -x /usr/bin/${DAEMON} -- ${CMDLINE} --pid_file /var/run/${DAEMON}.pid
H A Dowserver22 start-stop-daemon --start -x /usr/bin/${DAEMON} -- ${CMDLINE} --pid_file /var/run/${DAEMON}.pid
/openbmc/openbmc/poky/meta/recipes-connectivity/openssh/openssh/
H A D0001-systemd-Add-optional-support-for-systemd-sd_notify.patch82 if (options.pid_file != NULL)
83 unlink(options.pid_file);
/openbmc/openbmc/poky/bitbake/lib/
H A Dpyinotify.py1273 def __daemonize(self, pid_file=None, stdin=os.devnull, stdout=os.devnull, argument
1281 if pid_file is None:
1284 pid_file = os.path.join(dirname, basename + '.pid')
1286 if pid_file and os.path.lexists(pid_file):
1287 err = 'Cannot daemonize: pid file %s already exists.' % pid_file
1320 if pid_file:
1322 fd_pid = os.open(pid_file, flags, 0o0600)
1327 atexit.register(lambda : os.unlink(pid_file))
/openbmc/qemu/tests/qemu-iotests/
H A Diotests.py519 pid_file = file_path("qemu_nbd_popen-nbd-pid-file")
521 assert not os.path.exists(pid_file)
524 cmd.extend(('--persistent', '--pid-file', pid_file))
530 while not os.path.exists(pid_file):
539 if os.path.exists(pid_file):
540 os.remove(pid_file)
/openbmc/qemu/system/
H A Dvl.c1604 static const char *pid_file; variable
2559 static void qemu_maybe_daemonize(const char *pid_file) in qemu_maybe_daemonize() argument
2566 if (pid_file) { in qemu_maybe_daemonize()
2569 if (!qemu_write_pidfile(pid_file, &err)) { in qemu_maybe_daemonize()
2575 if (!realpath(pid_file, pid_file_realpath)) { in qemu_maybe_daemonize()
2578 "file path: %s: %s", pid_file, strerror(errno)); in qemu_maybe_daemonize()
3271 pid_file = optarg; in qemu_init()
3661 qemu_maybe_daemonize(pid_file); in qemu_init()
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/musicpd/mpd/
H A Dmpd.conf.in43 #pid_file "/var/run/mpd/mpd.pid"