Searched refs:kill (Results 26 - 50 of 284) sorted by relevance

1234567891011>>

/external/valgrind/none/tests/
H A Dpending.c51 kill(getpid(), SIGUSR1);
52 kill(getpid(), SIGHUP);
H A Dsyscall-restart1.c54 kill(pid, SIGUSR1);
H A Dsyscall-restart2.c54 kill(pid, SIGUSR1);
/external/valgrind/none/tests/s390x/
H A Dtest_sig.c56 kill(getpid(), SIGALRM);
58 kill(getpid(), SIGUSR1);
/external/autotest/client/profilers/catprofile/
H A Dcatprofile.py44 os.kill(self.child_pid, 15)
/external/autotest/client/profilers/cpistat/
H A Dcpistat.py28 os.kill(self.pid, 15)
/external/autotest/client/profilers/powertop/
H A Dpowertop.py36 os.kill(self.child_pid, 15)
/external/autotest/client/site_tests/security_ptraceRestrictions/src/
H A Dsleeper.c38 kill(getpid(), SIGINT);
/external/autotest/client/tests/kvm/scripts/
H A Dmulticast_guest.py36 os.kill(os.getpid(), signal.SIGSTOP)
/external/deqp/framework/delibs/decpp/
H A DdeProcess.cpp61 void Process::kill (void) function in class:de::Process
/external/libbrillo/brillo/
H A Dasynchronous_signal_handler_unittest.cc57 EXPECT_EQ(0, kill(getpid(), SIGTERM));
73 EXPECT_EQ(0, kill(getpid(), SIGCHLD));
81 EXPECT_EQ(0, kill(getpid(), SIGCHLD));
104 EXPECT_EQ(0, kill(getpid(), SIGCHLD));
/external/libmicrohttpd/src/testzzuf/
H A Dsocat.c108 kill (zzuf_pid, SIGINT);
/external/autotest/client/site_tests/desktopui_HangDetector/
H A Ddesktopui_HangDetector.py57 os.kill(browser_pid, signal.SIGSTOP) # Simulate hang.
69 os.kill(browser_pid, signal.SIGCONT) # Allow browser to die.
/external/llvm/lib/CodeGen/
H A DLiveRangeCalc.h94 LiveInBlock(LiveRange &LR, MachineDomTreeNode *node, SlotIndex kill) argument
95 : LR(LR), DomNode(node), Kill(kill), Value(nullptr) {}
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/interpreter/
H A DInterpreterProcess.java113 public void kill() { method in class:InterpreterProcess
114 super.kill();
/external/valgrind/gdbserver_tests/
H A Dmcbreak.stderrB.exp10 monitor command request to kill this process
H A DmcinvokeRU.stderrB.exp12 sending command v.kill to pid ....
H A DmcinvokeWS.stderrB.exp12 sending command v.kill to pid ....
H A Dmssnapshot.stderrB.exp11 v.kill : kill the Valgrind process
26 monitor command request to kill this process
/external/mesa3d/src/glsl/
H A Dopt_copy_propagation.cpp94 void kill(ir_variable *ir);
141 kill(ir->lhs->variable_referenced());
199 * this call. So kill all copies.
237 kill(k->var);
281 kill(k->var);
289 ir_copy_propagation_visitor::kill(ir_variable *var) function in class:ir_copy_propagation_visitor
293 /* Remove any entries currently in the ACP for this kill. */
/external/autotest/client/virt/tests/
H A Dnetstress_kill_guest.py49 os.kill(vm_pid, 0)
103 os.kill(pid, signal.SIGSTOP)
121 os.kill(pid, signal.SIGCONT)
/external/libchrome/base/process/
H A Dkill_posix.cc5 #include "base/process/kill.h"
58 // On ChromeOS, only way a process gets kill by SIGKILL
80 bool result = kill(-1 * process_group_id, SIGKILL) == 0;
93 bool result = kill(handle, SIGKILL) == 0;
153 // If the child doesn't exit within a couple of seconds, kill it.
188 if (kill(child_, SIGKILL) == 0) {
202 // kill |child_|.
/external/deqp/execserver/
H A DxsWin32TestProcess.hpp143 void kill (void);
156 void stopProcess (bool kill);
/external/libunwind/tests/
H A DGtest-resume-sig.c99 kill (getpid (), SIGUSR2); /* pend SIGUSR2 */
115 if ((ret = unw_step (&c)) < 0) /* step to kill() */
177 kill (getpid (), SIGUSR1);
/external/toybox/toys/posix/
H A Dkill.c0 /* kill.c - a program to send signals to processes
5 * See http://opengroup.org/onlinepubs/9699919799/utilities/kill.html
14 USE_KILL(NEWTOY(kill, "?ls: ", TOYFLAG_BIN))
18 bool "kill"
21 usage: kill [-l [SIGNAL] | -s SIGNAL | -SIGNAL] pid...
51 // But kill's flags are a subset of killall5's
75 // signal must come before pids, so "kill -9 -1" isn't confusing.
128 kill(procpid, signum);
135 // is it kill?
145 if (*tmp || kill(pi
[all...]

Completed in 1401 milliseconds

1234567891011>>