/external/openssh/ |
opensshd.init.in | 16 PIDFILE=$piddir/sshd.pid 17 PidFile=`grep "^PidFile" ${sysconfdir}/sshd_config | tr "=" " " | awk '{print $2}'` 18 [ X$PidFile = X ] || PIDFILE=$PidFile 46 if [ -r $PIDFILE -a ! -z ${PIDFILE} ]; then 47 PID=`${CAT} ${PIDFILE}`
|
sshd_config.android | 105 #PidFile /var/run/sshd.pid
|
sshd_config | 116 #PidFile /var/run/sshd.pid
|
/external/e2fsprogs/misc/ |
uuidd.rc | 18 PIDFILE=/var/run/uuidd/uuidd.pid 27 start_daemon -p $PIDFILE $DAEMON 32 killproc -p $PIDFILE $DAEMON 36 if pidofproc -p $PIDFILE $DAEMON >& /dev/null ; then
|
uuidd.8.in | 15 .I pidfile 65 .BI \-p " pidfile"
|
/external/selinux/policycoreutils/restorecond/ |
restorecond.service | 9 PIDFile=/var/run/restorecond.pid
|
restorecond.c | 87 static const char *pidfile = "/var/run/restorecond.pid"; variable 97 pidfile = 0; 100 pidfd = open(pidfile, O_CREAT | O_TRUNC | O_NOFOLLOW | O_WRONLY, 0644); 102 syslog(LOG_ERR, "Unable to set pidfile (%s)", strerror(errno)); 103 pidfile = 0; 234 if (pidfile) 235 unlink(pidfile);
|
restorecond.init | 12 # pidfile: /var/run/restorecond.pid
|
/external/v8/tools/testrunner/server/ |
daemon.py | 25 def __init__(self, pidfile, stdin='/dev/null', 30 self.pidfile = pidfile 73 # write pidfile 76 file(self.pidfile, 'w+').write("%s\n" % pid) 79 os.remove(self.pidfile) 85 # Check for a pidfile to see if the daemon already runs 87 pf = file(self.pidfile, 'r') 94 message = "pidfile %s already exist. Daemon already running?\n" 95 sys.stderr.write(message % self.pidfile) [all...] |
/external/dhcpcd/ |
defs.h | 45 #ifndef PIDFILE 46 # define PIDFILE RUNDIR "/" PACKAGE "%s%s.pid"
|
dhcpcd.c | 106 static char *pidfile; variable 145 if ((fp = fopen(pidfile, "r")) == NULL) { 209 unlink(pidfile); 212 free(pidfile); [all...] |
/external/v8/tools/ |
test-server.py | 36 PIDFILE = "/tmp/v8-distributed-testing-server.pid" 55 return os.path.exists(PIDFILE) 173 daemon = main.Server(PIDFILE, ROOT) 176 daemon = main.Server(PIDFILE, ROOT) 179 daemon = main.Server(PIDFILE, ROOT) 204 daemon = main.Server(PIDFILE, ROOT)
|
/external/iputils/doc/ |
ninfod.sgml | 18 <arg choice="opt">-p <replaceable/pidfile/</arg> 64 <term><option>-p <replaceable/pidfile/</option></term>
|
/external/openssh/contrib/redhat/ |
sshd.init | 13 # pidfile: /var/run/sshd.pid
|
sshd.init.old | 13 # pidfile: /var/run/sshd.pid
|
/external/fio/ |
server.c | [all...] |
/external/libvncserver/x11vnc/misc/ |
inet6to4 | 64 my $pidfile = ''; 74 unlink $pidfile if $pidfile; 80 # pidfile: 88 $pidfile = $pf; 90 print STDERR "could not open pidfile: $pf - $! - continuing...\n";
|
connect_switch | 108 my $pidfile = ''; 118 unlink $pidfile if $pidfile; 124 # pidfile: 132 $pidfile = $pf; 134 print STDERR "could not open pidfile: $pf - $! - continuing...\n";
|
ultravnc_repeater.pl | 85 my $pidfile = ''; 93 unlink $pidfile if $pidfile; 107 # pidfile: 115 $pidfile = $pf; 117 lprint("could not open pidfile: $pf - $! - continuing...");
|
/external/dnsmasq/contrib/openvpn/ |
dnsmasq.patch | 11 # pidfile: /var/run/dnsmasq.pid
|
/external/selinux/policycoreutils/mcstrans/src/ |
mcstrans.init | 9 # pidfile: /var/run/mcstransd.pid
|
/external/toybox/lib/ |
xwrap.c | 583 char pidfile[256], spid[32]; local 587 sprintf(pidfile, "/var/run/%s.pid", name); 590 fd = open(pidfile, O_CREAT|O_EXCL|O_WRONLY, 0644); 594 fd = open(pidfile, O_RDONLY); 601 if (pid < 1 || (kill(pid, 0) && errno == ESRCH)) unlink(pidfile);
|
/external/openssh/contrib/suse/ |
rc.sshd | 52 startproc -f -p $SSHD_PIDFILE $SSHD_BIN $SSHD_OPTS -o "PidFile=$SSHD_PIDFILE"
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
udhcpd-p2p.conf | 63 pidfile /var/run/udhcpd-wlan2.pid #default: /var/run/udhcpd.pid
|
/external/toybox/toys/pending/ |
dhcp.c | 13 usage: dhcp [-fbnqvoCRB] [-i IFACE] [-r IP] [-s PROG] [-p PIDFILE] 19 -p Create pidfile 61 char *pidfile; 352 int pidfile = open(path, O_CREAT | O_WRONLY | O_TRUNC, 0666); local 353 if (pidfile > 0) { 357 write(pidfile, pidbuf, strlen(pidbuf)); 358 close(pidfile); [all...] |