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

  /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/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
  /external/openssh/regress/
reconfigure.sh 18 PID=`$SUDO cat $PIDFILE`
19 rm -f $PIDFILE
24 while [ ! -f $PIDFILE -a $i -lt 10 ]; do
29 test -f $PIDFILE || fatal "sshd did not restart"
reexec.sh 44 $SUDO kill `$SUDO cat $PIDFILE`
45 rm -f $PIDFILE
56 $SUDO kill `$SUDO cat $PIDFILE`
57 rm -f $PIDFILE
69 $SUDO kill `$SUDO cat $PIDFILE`
70 rm -f $PIDFILE
login-timeout.sh 18 $SUDO kill `$SUDO cat $PIDFILE`
test-exec.sh 169 if [ -f $PIDFILE ]; then
170 pid=`$SUDO cat $PIDFILE`
180 while [ -f $PIDFILE -a $i -lt 5 ]; do
184 test -f $PIDFILE && \
241 PIDFILE=$OBJ/pidfile
253 PidFile $PIDFILE
384 while [ ! -f $PIDFILE -a $i -lt 10 ]; do
389 test -f $PIDFILE || fatal "no sshd running on port $PORT
    [all...]
  /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
42 if [ -r $PIDFILE -a ! -z ${PIDFILE} ]; then
43 PID=`${CAT} ${PIDFILE}`
  /external/chromium/net/tools/flip_server/
constants.h 28 #define PIDFILE "/var/run/flip-server.pid"
flip_in_mem_edsm_server.cc 115 static int OpenPidFile(const char *pidfile)
121 fd = open(pidfile, O_RDWR | O_CREAT, 0600);
123 cerr << "Could not open pid file '" << pidfile << "' for reading.\n"; local
138 cerr << "Could not stat pid file '" << pidfile << "': " << strerror(errno)
143 cerr << "Could not truncate pid file '" << pidfile << "': "
207 cout << "\t--pidfile=<filepath> (default /var/run/flip-server.pid)\n";
212 if (cl.HasSwitch("pidfile")) {
213 pidfile_fd = OpenPidFile(cl.GetSwitchValueASCII("pidfile").c_str());
215 pidfile_fd = OpenPidFile(PIDFILE);
409 unlink(PIDFILE);
    [all...]
  /external/webkit/Tools/Scripts/webkitperl/
httpd.pm 109 "-c", "PidFile \"$httpdPidFile\"",
162 open (PIDFILE, $httpdPidFile);
163 my $oldPid = <PIDFILE>;
165 close PIDFILE;
191 $httpdPid = <PIDFILE> if open(PIDFILE, $httpdPidFile);
193 close PIDFILE;

Completed in 133 milliseconds