HomeSort by relevance Sort by last modified time
    Searched full:pgrep (Results 1 - 25 of 47) sorted by null

1 2

  /device/google/marlin/
init.foreground.sh 6 PID=`pgrep -x spi6`
9 PID=`pgrep -x nanohub`
  /external/toybox/tests/
pgrep.test 13 # Starting processes to test pgrep command
22 # Testcases for pgrep command
23 testing "pgrep pattern" "pgrep yes" "$proc\n" "" ""
24 testing "pgrep wildCardPattern" "pgrep ^y.*s$" "$proc\n" "" ""
25 testing "pgrep -l pattern" "pgrep -l yes" "$proc yes\n" "" ""
26 testing "pgrep -f pattern" "pgrep -f yes" "$proc\n" "" "
    [all...]
  /external/autotest/client/site_tests/security_RendererSandbox/
security_RendererSandbox.py 18 """Query pgrep for the pid of the renderer. Since this function is
22 pgrep = subprocess.Popen(['pgrep', '-f', '-l', 'type=renderer'],
24 procs = pgrep.communicate()[0].splitlines()
28 # This makes 'pgrep' above return the pid of the GPU process,
  /external/autotest/client/site_tests/desktopui_KillRestart/
desktopui_KillRestart.py 21 lambda: os.system('pgrep %s >/dev/null' % binary) == 0,
35 lambda: os.system('pgrep %s >/dev/null' % binary) == 0,
  /external/autotest/client/site_tests/desktopui_GmailLatency/
desktopui_GmailLatency.py 35 orig_pid = utils.system_output('pgrep %s' %
50 new_pid = utils.system_output('pgrep %s' %
  /external/toybox/toys/posix/
ps.c 44 * TODO: pgrep -f only searches the amount of cmdline that fits in toybuf.
50 USE_PGREP(NEWTOY(pgrep, "?cld:u*U*t*s*P*g*G*fnovxL:[-no]", TOYFLAG_USR|TOYFLAG_BIN))
166 config PGREP
167 bool "pgrep"
171 usage: pgrep [-cL] [-d DELIM] [-L SIGNAL] [PATTERN]
185 usage: pgrep [-fnovx] [-G GID,] [-g PGRP,] [-P PPID,] [-s SID,] [-t TERM,] [-U UID,] [-u EUID,]
251 } pgrep;
    [all...]
  /external/autotest/client/tests/kvm/tests/
nic_bonding.py 62 session_serial.sendline("kill -9 `pgrep dhclient`")
  /external/autotest/client/common_lib/cros/
process_watcher.py 60 result = self._run('pgrep -f -l "%s"' % self._command,
  /external/autotest/client/site_tests/apmanager_CheckAPProcesses/
apmanager_CheckAPProcesses.py 42 out = utils.system_output('pgrep %s 2>&1' % process_name,
  /external/autotest/client/site_tests/platform_DaemonsRespawn/
test_respawn.sh 36 local pgrep_pid=$(pgrep -o $daemon)
  /external/autotest/client/cros/
login.py 79 lambda: os.system('pgrep ^%s$ >/dev/null' % constants.BROWSER) == 0,
98 lambda: os.system('pgrep ^%s$ >/dev/null' % constants.BROWSER) != 0,
cros_ui.py 86 status = utils.system('pgrep chrome', ignore_status=True)
  /external/autotest/client/site_tests/login_LogoutProcessCleanup/
login_LogoutProcessCleanup.py 54 return utils.system_output('pgrep "^session_manager$"',
60 return utils.system_output('pgrep -U chronos',
  /external/autotest/client/site_tests/network_DhcpRequestHostName/
network_DhcpRequestHostName.py 27 pid = utils.system_output('pgrep shill')
  /external/autotest/site_utils/chromeos_proxy/
swarming_bots.py 72 """Raised if pid file doesn't match what's found by pgrep."""
78 @param new_pid: new pid found by pgrep.
147 cmd = ['pgrep', '-f', pattern]
312 cmd = ['pgrep', '-f', pattern]
  /external/chromium-trace/catapult/devil/devil/android/sdk/
adb_compatibility_devicetest.py 28 ['pgrep', '-l', 'adb'])
  /external/netperf/doc/examples/
runemomniaggdemo.sh 6 pgrep -P 1 -f netperf > /dev/null
10 pgrep -P 1 -f netperf > /dev/null
  /external/autotest/server/site_tests/factory_InstallVM/
factory_InstallVM.py 76 if (self.client.run("pgrep -f '%s'" % pattern, ignore_status=True)
  /external/autotest/client/bin/
site_utils.py 90 ValueError if pgrep returns something odd.
93 'pgrep -o ^%s$' % name,
157 'pgrep %s %s' % (flag, name),
166 name: process name specifier, as understood by pgrep.
190 name: process name specifier, as understood by pgrep.
    [all...]
base_utils.py 1010 'pgrep name' misses all python processes and also long process names.
1011 'pgrep -f name' gets all shell commands with name in args.
1015 return utils.system("pgrep -f '^([^ /]*/)*(%s)([ ]|$)'" % name_pattern,
  /external/autotest/client/tests/kvm/
subtests.cfg.sample 146 migration_bg_check_command = pgrep tcpdump
193 migration_bg_check_command = pgrep tcpdump
594 check_s4_cmd = pgrep tcpdump
    [all...]
  /external/autotest/client/virt/tests/
ethtool.py 128 lambda:session.cmd_status("pgrep tcpdump") == 0, 30):
  /external/autotest/client/virt/
virt_test_setup.py 127 utils.run('pgrep khugepaged')
  /external/autotest/server/hosts/
moblab_host.py 226 self.run('pgrep %s' % process)
rpc_server_tracker.py 240 "pgrep -f '%s'" % remote_name,

Completed in 1796 milliseconds

1 2