HomeSort by relevance Sort by last modified time
    Searched refs:kill (Results 276 - 300 of 340) sorted by null

<<11121314

  /external/chromium/base/
process_util_unittest.cc 217 // Kill ourselves.
222 ::kill(getpid(), SIGKILL);
  /external/chromium_org/base/process/
process_util_unittest.cc 17 #include "base/process/kill.h"
284 // Kill ourselves.
289 ::kill(getpid(), SIGKILL);
  /external/chromium_org/chrome/browser/
process_singleton_linux.cc 757 // Retries failed. Kill the unresponsive chrome process and continue.
788 // Try to kill the other process, because it might have been dead.
847 // This time, we don't want to kill anything if we aren't successful, since we
    [all...]
  /external/chromium_org/remoting/host/
remoting_me2me_host.cc 668 kill(getppid(), SIGUSR1);
    [all...]
  /external/dnsmasq/src/
dnsmasq.c 723 /* alarm is used to kill TCP children after a fixed time. */
884 kill(daemon->tcp_pids[i], SIGALRM);
    [all...]
  /external/dropbear/
scp.c 111 kill(do_cmd_pid, signo ? signo : SIGTERM);
svr-chansession.c 401 if (kill(chansess->pid, sig) < 0) {
  /external/libppp/src/
chap.c 350 kill(chap->child.pid, SIGTERM);
  /external/openssh/
sshconnect.c 181 kill(proxy_command_pid, SIGHUP);
    [all...]
  /external/ppp/pppd/
tty.c 965 kill(charshunt_pid, (sig == SIGINT? sig: SIGTERM));
    [all...]
utils.c 1002 || (kill(pid, 0) == -1 && errno == ESRCH)) {
  /external/qemu/hw/
goldfish_nand.c 92 kill( t->pid, t->signal );
  /external/valgrind/main/coregrind/m_gdbserver/
m_gdbserver.c 787 'kill-9ing' vgdb during such a pushed call, otherwise
798 if (VG_(kill)(VG_(getpid)(), VKI_SIGSTOP) != 0)
806 "vgdb did not took control. Did you kill vgdb ?\n"
    [all...]
  /packages/apps/Nfc/nci/jni/
NativeNfcTag.cpp 871 sSwitchBackTimer.kill ();
    [all...]
  /system/core/init/
init.c 384 kill(-svc->pid, SIGKILL);
  /system/core/sh/
jobs.c 58 #define killpg(s,i) kill(-(s),i)
967 * active user may be hard to kill. With job control turned off, an
  /external/chromium_org/chrome/browser/resources/file_manager/js/
file_selection.js 719 // image (but small enough to not kill animation) and let IMG
  /external/dhcpcd/
dhcpcd.c     [all...]
  /external/mksh/src/
funcs.c 48 #define mksh_kill(p,s) ((p) < -1 ? killpg(-(p), (s)) : kill((p), (s)))
50 /* cross fingers and hope kill is killpg-endowed */
51 #define mksh_kill kill
127 {"+kill", c_kill},
1284 /* format a single kill item */
    [all...]
main.c 77 "stop=kill -STOP",
78 "suspend=kill -STOP $$",
708 * If user ^Cs out, we don't want to kill the shell...
998 kill(0, sig);
    [all...]
  /libcore/luni/src/main/native/
libcore_io_Posix.cpp 867 throwIfMinusOne(env, "kill", TEMP_FAILURE_RETRY(kill(pid, sig)));
    [all...]
  /external/bluetooth/bluedroid/stack/btu/
btu_hcif.c     [all...]
  /external/chromium/third_party/libevent/test/
regress.c 768 /* use SIGCONT so we don't kill ourselves when we signal to nowhere */
1501 struct kill *attack;
1515 fprintf(stderr, "Failed to set kill message.\n");
    [all...]
  /external/chromium_org/chrome/test/webdriver/
webdriver_automation.cc 514 // the whole process. Close any current dialog, try to kill gently, and
515 // if all else fails, kill it hard.
520 kill(launcher_->process(), SIGTERM);
    [all...]
  /external/chromium_org/third_party/libevent/test/
regress.c 768 /* use SIGCONT so we don't kill ourselves when we signal to nowhere */
1501 struct kill *attack;
1515 fprintf(stderr, "Failed to set kill message.\n");
    [all...]

Completed in 911 milliseconds

<<11121314