OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DAEMON
(Results
1 - 7
of
7
) sorted by null
/external/mdnsresponder/mDNSPosix/
mdnsd.sh
18
# Linux /etc/init.d script to start/stop the mdnsd
daemon
.
26
DAEMON
=/usr/sbin/mdnsd
28
DAEMON
=/usr/local/sbin/mdnsd
31
test -r $
DAEMON
|| exit 0
33
# Some systems have start-stop-
daemon
, some don't.
34
if [ -r /sbin/start-stop-
daemon
]; then
35
START="start-stop-
daemon
--start --quiet --exec"
38
# STOP="start-stop-
daemon
--stop -s TERM --quiet --oknodo --exec"
39
STOP="start-stop-
daemon
--stop --quiet --oknodo --exec"
50
echo -n "Starting Apple Darwin Multicast DNS / DNS Service Discovery
daemon
:
[
all
...]
/external/e2fsprogs/misc/
uuidd.rc
8
# Short-Description: uuidd
daemon
9
# Description: Init script for the uuid generation
daemon
17
DAEMON
=/usr/sbin/uuidd
20
test -x $
DAEMON
|| exit 0
27
start_daemon -p $PIDFILE $
DAEMON
32
killproc -p $PIDFILE $
DAEMON
36
if pidofproc -p $PIDFILE $
DAEMON
>& /dev/null ; then
37
echo "$
DAEMON
is running";
40
echo "$
DAEMON
is NOT running";
/external/autotest/client/site_tests/platform_DaemonsRespawn/
test_respawn.sh
9
# Time to wait for upstart to restart a
daemon
in seconds
15
local
daemon
=$2
36
local pgrep_pid=$(pgrep -o $
daemon
)
38
echo "Unable to find running job for
daemon
: $
daemon
"
42
echo "Upstart and
daemon
pids don't match: $upstart_pid vs $pgrep_pid"
50
# The set of jobs (and corresponding
daemon
names) to test.
57
DAEMON
=$(echo "$job" | awk -F':' '{ print $2 }')
59
get_job_pid "$JOB" "$
DAEMON
"
71
get_job_pid "$JOB" "$
DAEMON
"
[
all
...]
/external/autotest/client/cros/faft/utils/
firmware_updater.py
33
DAEMON
= 'update-engine'
97
"""Stop update-engine
daemon
."""
98
self.os_if.log('Stopping %s...' % self.
DAEMON
)
99
cmd = 'status %s | grep stop || stop %s' % (self.
DAEMON
, self.
DAEMON
)
103
"""Start update-engine
daemon
."""
104
self.os_if.log('Starting %s...' % self.
DAEMON
)
105
cmd = 'status %s | grep start || start %s' % (self.
DAEMON
, self.
DAEMON
)
/external/selinux/python/sepolicy/
sepolicy.py
583
from sepolicy.generate import get_poltype_desc, poltype,
DAEMON
, DBUS, INETD, CGI, SANDBOX, USER, EUSER, TUSER, XUSER, LUSER, AUSER, RUSER, NEWTYPE
627
cmdgroup.add_argument("--init", dest="policytype", const=
DAEMON
,
628
action="store_const", default=
DAEMON
,
629
help=_("Generate '%s' policy") % poltype[
DAEMON
])
/external/selinux/python/sepolicy/sepolicy/
generate.py
123
DAEMON
= 0
138
poltype[
DAEMON
] = _("Standard Init
Daemon
")
139
poltype[DBUS] = _("DBUS System
Daemon
")
140
poltype[INETD] = _("Internet Services
Daemon
")
161
APPLICATIONS = [
DAEMON
, DBUS, INETD, USER, CGI]
441
if self.type !=
DAEMON
:
442
raise ValueError(_("Only
Daemon
apps can use an init script.."))
[
all
...]
/external/selinux/gui/
polgengui.py
459
return sepolicy.generate.
DAEMON
500
if self.get_type() is sepolicy.generate.
DAEMON
:
[
all
...]
Completed in 1807 milliseconds