OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PIDFILE
(Results
1 - 9
of
9
) 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/chromium_org/third_party/skia/experimental/webtry/sys/
webtry_init
16
# in do_start() to add --make-
pidfile
, --background, and --chuid.
26
PIDFILE
=/var/run/$NAME.pid
52
start-stop-daemon --start --
pidfile
$
PIDFILE
--exec $DAEMON --make-
pidfile
--background --chuid webtry --test > /dev/null \
54
start-stop-daemon --start --
pidfile
$
PIDFILE
--exec $DAEMON --make-
pidfile
--background --chuid webtry --exec $DAEMON -- \
72
start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --
pidfile
$
PIDFILE
--name $NAM
[
all
...]
/external/skia/experimental/webtry/sys/
webtry_init
16
# in do_start() to add --make-
pidfile
, --background, and --chuid.
26
PIDFILE
=/var/run/$NAME.pid
52
start-stop-daemon --start --
pidfile
$
PIDFILE
--exec $DAEMON --make-
pidfile
--background --chuid webtry --test > /dev/null \
54
start-stop-daemon --start --
pidfile
$
PIDFILE
--exec $DAEMON --make-
pidfile
--background --chuid webtry --exec $DAEMON -- \
72
start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --
pidfile
$
PIDFILE
--name $NAM
[
all
...]
/external/chromium_org/net/tools/flip_server/
constants.h
23
#define
PIDFILE
"/var/run/flip-server.pid"
flip_in_mem_edsm_server.cc
106
static int OpenPidFile(const char*
pidfile
) {
111
fd = open(
pidfile
, O_RDWR | O_CREAT, 0600);
113
fprintf(stderr, "Could not open pid file '%s' for reading.\n",
pidfile
);
129
stderr, "Could not stat pid file '%s': %s\n",
pidfile
, strerror(errno));
136
pidfile
,
201
"\t--
pidfile
=<filepath> (default /var/run/flip-server.pid)\n"
206
if (cl.HasSwitch("
pidfile
")) {
207
pidfile_fd = OpenPidFile(cl.GetSwitchValueASCII("
pidfile
").c_str());
209
pidfile_fd = OpenPidFile(
PIDFILE
);
419
unlink(
PIDFILE
);
[
all
...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/
httpd.pm
123
"-c", "
PidFile
\"$httpdPidFile\"",
177
open (
PIDFILE
, $httpdPidFile);
178
my $oldPid = <
PIDFILE
>;
180
close
PIDFILE
;
206
$httpdPid = <
PIDFILE
> if open(
PIDFILE
, $httpdPidFile);
208
close
PIDFILE
;
/external/chromium_org/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)
Completed in 411 milliseconds