Searched refs:kill (Results 151 - 175 of 251) sorted by relevance

1234567891011

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dandroid.py222 output = self.run(['shell', 'kill', '-' + str(signal.SIGTERM)] + pids)
1175 i.kill()
1177 # Start a thread to kill the pipe reading/writing processes on deadlock of the fifos during startup.
1212 self._read_stdout_process.kill()
1216 self._read_stderr_process.kill()
1222 self._forwarder_process.kill()
H A Dserver_process.py399 def kill(self): member in class:ServerProcess
/external/mtpd/
H A Dmtpd.c93 kill(pppd_pid, SIGTERM);
/external/netperf/
H A Dnetcpu_looper.c405 /* I wonder if I need to look for other threads to kill? */
453 /* now go through and kill-off all the child processes */
457 kill(lib_idle_pids[i],SIGTERM);
/external/qemu/android/utils/
H A Dfilelock.c327 rc = HANDLE_EINTR(kill(lockpid, 0));
/external/qemu/distrib/sdl-1.2.15/src/audio/dma/
H A DSDL_dmaaudio.c148 if ( kill(parent, 0) < 0 ) {
/external/qemu/slirp/
H A Ddebug.c368 if (kill(getppid(), SIGQUIT) < 0)
369 lprint("Couldn't kill parent process %ld!\n",
/external/qemu/slirp-android/
H A Ddebug.c340 if (kill(getppid(), SIGQUIT) < 0)
341 lprint("Couldn't kill parent process %ld!\n",
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Dkernel_wrap_test.cc391 TEST_F(KernelWrapTest, kill) {
392 EXPECT_CALL(mock, kill(kDummyInt, kDummyInt2)).WillOnce(Return(kDummyInt3));
393 EXPECT_EQ(kDummyInt3, kill(kDummyInt, kDummyInt2));
/external/e2fsprogs/misc/
H A Dfsck.c541 kill(inst->pid, signum);
639 * bit before sending the kill, to give it
645 kill(inst2->pid, SIGUSR1);
649 kill(inst2->pid, SIGUSR1);
H A Duuidd.c580 ret = kill(do_kill, SIGTERM);
584 _("Couldn't kill uuidd running "
/external/valgrind/main/coregrind/
H A Dm_debugger.c411 rc = VG_(kill)(VG_(getpid)(), VKI_SIGSTOP);
422 VG_(kill)(pid, VKI_SIGSTOP) == 0 &&
487 VG_(kill)(pid, VKI_SIGKILL);
H A Dm_libcsignal.c299 Int VG_(kill)( Int pid, Int signo ) function
H A Dvgdb-invoker-ptrace.c343 res = kill (pid, SIGSTOP);
814 if (kill(pid, 0) != 0)
H A Dvgdb.c278 if (kill(pid, 0) != 0)
740 /* SIGPIPE: can receive this signal when gdb detaches or kill the
760 kill the debugged process. The kill instruction has been given to
785 valgrind process to exit (using either the "kill" command or
796 join will succeed. For the "kill" case, we cause an alarm
1213 && kill (newpid, 0) == 0) {
/external/libpcap/
H A Doptimize.c420 atomset def = 0, use = 0, kill = 0; local
444 kill |= ATOMMASK(atom);
470 b->kill = kill;
497 p->in_use |= p->out_use &~ p->kill;
/external/chromium_org/chrome/installer/setup/
H A Duninstall.cc17 #include "base/process/kill.h"
287 bool kill = true; local
296 kill = false;
301 if (kill) {
619 // give this method some brains and not kill chrome.exe launched
/external/linux-tools-perf/perf-3.12.0/tools/perf/
H A Dbuiltin-stat.c492 kill(child_pid, SIGTERM);
1205 kill(child_pid, SIGTERM);
1213 kill(getpid(), signr);
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_endtoend.py218 os.kill(pid, signal.SIGKILL)
/external/chromium_org/build/android/pylib/
H A Dchrome_test_server_spawner.py7 It's used to accept requests from the device to spawn and kill instances of the
253 self.process.kill()
346 logging.info('Handling request to kill a test server on port: %d.', port)
374 if action == '/kill':
/external/chromium_org/chrome/browser/
H A Dunload_browsertest.cc303 EXPECT_EQ(kill(base::GetCurrentProcessHandle(), SIGTERM), 0);
/external/chromium_org/components/nacl/loader/nonsfi/
H A Dnonsfi_sandbox_sigsys_unittest.cc231 RESTRICT_SYSCALL_DEATH_TEST(kill);
/external/chromium_org/content/zygote/
H A Dzygote_linux.cc24 #include "base/process/kill.h"
69 // signals. So we can't kill it.
72 LOG(WARNING) << "Unable to kill or reap helper children";
78 PCHECK(0 == kill(pid, SIGKILL));
/external/mksh/src/
H A Dedit.c49 int kill; member in struct:__anon28011
864 #define AEDIT &aedit /* area for kill ring and macro defns */
3293 edchars.kill = tty_state.c_cc[VKILL];
3305 if (edchars.kill == _POSIX_VDISABLE)
3306 edchars.kill = -1;
3321 if (edchars.kill >= 0)
3322 bind_if_not_bound(0, edchars.kill, XFUNC_del_line);
3759 } else if (ch == edchars.kill) {
3944 if (ch == edchars.kill) {
5464 edchars.erase = edchars.kill
[all...]
/external/chromium_org/base/test/launcher/
H A Dtest_launcher.cc24 #include "base/process/kill.h"
109 kill((-1) * (i->first), SIGTERM);
131 kill((-1) * (i->first), SIGKILL);
151 // The signal would normally kill the process, so exit now.
317 // Note how we grab the log before issuing a possibly broad process kill.
318 // Other code parts that grab the log kill processes, so avoid trying

Completed in 1452 milliseconds

1234567891011