Searched refs:kill (Results 201 - 225 of 251) sorted by relevance

1234567891011

/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dlinux_syscall_support.h1798 LSS_INLINE _syscall2(int, kill, pid_t, p,
2171 LSS_NAME(kill)(pid, SIGCONT);
/external/ppp/pppd/
H A Dsys-solaris.c1014 kill(tty_sid, SIGHUP);
2552 if (pid > 0 && kill(pid, 0) == -1 && errno == ESRCH) {
H A Dtty.c965 kill(charshunt_pid, (sig == SIGINT? sig: SIGTERM));
H A Dutils.c1002 || (kill(pid, 0) == -1 && errno == ESRCH)) {
/external/chromium_org/base/process/
H A Dprocess_util_unittest.cc17 #include "base/process/kill.h"
280 ::kill(getpid(), SIGKILL);
/external/chromium_org/chrome/browser/
H A Dprocess_singleton_posix.cc859 // Try to kill the other process, because it might have been dead.
921 // This time, we don't want to kill anything if we aren't successful, since we
1073 int rv = kill(static_cast<base::ProcessHandle>(pid), SIGKILL);
1075 // progress of shutting down and finishes before we try to kill it).
/external/chromium_org/remoting/host/
H A Dremoting_me2me_host.cc776 kill(getppid(), SIGUSR1);
/external/dnsmasq/src/
H A Ddnsmasq.c723 /* alarm is used to kill TCP children after a fixed time. */
884 kill(daemon->tcp_pids[i], SIGALRM);
/external/fio/os/windows/
H A Dposix.c365 int kill(pid_t pid, int sig) function
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-record.c181 kill(rec->evlist->workload.pid, SIGTERM);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Devlist.c1004 kill(getppid(), SIGUSR1);
/external/lldb/source/Host/common/
H A DHost.cpp491 case SIGKILL: return "SIGKILL"; // 9 kill (cannot be caught or ignored)
497 case SIGTERM: return "SIGTERM"; // 15 software termination signal from kill
1444 ::kill (pid, SIGKILL);
1488 // it can delete "shell_info" in case we timed out and were not able to kill
/external/qemu/hw/android/goldfish/
H A Dnand.c94 kill( t->pid, t->signal );
/external/valgrind/main/coregrind/m_gdbserver/
H A Dm_gdbserver.c823 'kill-9ing' vgdb during such a pushed call, otherwise
834 if (VG_(kill)(VG_(getpid)(), VKI_SIGSTOP) != 0)
842 "vgdb did not took control. Did you kill vgdb ?\n"
H A Dremote-utils.c156 if (VG_(kill)(shared->vgdb_pid, 0) != 0)
/external/dhcpcd/
H A Ddhcpcd.c1992 if (pid == 0 || kill(pid, sig) != 0) {
1996 syslog(LOG_ERR, "kill: %m");
2026 kill(pid, 0) == 0)
/external/mksh/src/
H A Dfuncs.c48 #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
118 {"kill", c_kill},
1295 /* format a single kill item */
1959 * normally kill a process? If so, pretend
/external/bluetooth/bluedroid/stack/btu/
H A Dbtu_hcif.c1676 kill(getpid(), SIGKILL);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_proxy.cc1023 int KernelProxy::kill(pid_t pid, int sig) { function in class:nacl_io::KernelProxy
1025 // so we can only send a signal to outselves. For kill(2)
/external/chromium_org/third_party/libevent/test/
H A Dregress.c768 /* 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");
/external/chromium_org/third_party/skia/experimental/webtry/res/js/cm/
H A Dcodemirror.js3111 // menu is closed (since the resetInput would kill the
3711 var ranges = cm.doc.sel.ranges, kill = [];
3712 // Build up a set of ranges to kill first, merging overlapping
3716 while (kill.length && cmp(toKill.from, lst(kill).to) <= 0) {
3717 var replaced = kill.pop();
3723 kill.push(toKill);
3727 for (var i = kill.length - 1; i >= 0; i--)
3728 replaceRange(cm.doc, "", kill[i].from, kill[
[all...]
/external/chromium_org/tools/gyp/test/lib/
H A DTestGyp.py592 proc.kill()
/external/fio/engines/
H A Dnet.c1216 kill(td->pid, SIGUSR2);
/external/libedit/src/
H A Dreadline.c1728 (void)kill(0, SIGTSTP);
/external/lldb/tools/debugserver/source/
H A DDNB.cpp260 kill (SIGKILL, pid);

Completed in 2301 milliseconds

1234567891011