HomeSort by relevance Sort by last modified time
    Searched defs:kill (Results 1 - 25 of 52) sorted by null

1 2 3

  /bionic/libc/arch-arm/syscalls/
kill.S 5 ENTRY(kill) function
14 END(kill)
  /bionic/libc/arch-arm64/syscalls/
kill.S 5 ENTRY(kill) function
14 END(kill)
  /bionic/libc/arch-mips/syscalls/
kill.S 5 ENTRY(kill) function
19 END(kill)
  /bionic/libc/arch-mips64/syscalls/
kill.S 5 ENTRY(kill) function
25 END(kill)
  /bionic/libc/arch-x86/syscalls/
kill.S 5 ENTRY(kill) function
26 END(kill)
  /bionic/libc/arch-x86_64/syscalls/
kill.S 5 ENTRY(kill) function
15 END(kill)
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
kill.c 8 int kill(pid_t pid, int sig) { function
  /external/clang/test/Analysis/
NewDelete-path-notes.cpp 18 void kill() { function in struct:Odd
24 odd->kill(); // expected-note{{Calling 'Odd::kill'}}
300 // CHECK-NEXT: <string>Calling &apos;Odd::kill&apos;</string>
302 // CHECK-NEXT: <string>Calling &apos;Odd::kill&apos;</string>
  /external/chromium_org/third_party/pexpect/
fdpexpect.py 95 def kill (self, sig): member in class:fdspawn
  /external/lldb/test/pexpect-2.4/
fdpexpect.py 79 def kill (self, sig): member in class:fdspawn
  /external/chromium_org/testing/
xvfb.py 21 def kill(pid): function
26 os.kill(pid, signal.SIGKILL)
134 kill(pid)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
server_process_mock.py 78 def kill(self): member in class:MockServerProcess
  /external/deqp/framework/delibs/decpp/
deProcess.cpp 61 void Process::kill (void) function in class:de::Process
  /art/compiler/optimizing/
liveness_test.cc 65 BitVector* kill = liveness.GetKillSet(*block); local
66 DumpBitVector(kill, buffer, ssa_values, " kill: ");
76 " kill: (1)\n"
80 " kill: (0)\n"
84 " kill: (0)\n";
99 " kill: (1)\n"
103 " kill: (0)\n"
107 " kill: (0)\n";
121 " kill: (110)\n
    [all...]
ssa_liveness_analysis.cc 153 // Compute the live ranges, as well as the initial live_in, live_out, and kill sets.
170 BitVector* kill = GetKillSet(*block); local
198 // Kill the instruction and shorten its interval.
199 kill->SetBit(current->GetSsaIndex());
229 // Kill phis defined in this block.
233 kill->SetBit(current->GetSsaIndex());
263 // The live_in set depends on the kill set (which does not
289 BitVector* kill = GetKillSet(block); local
294 return live_in->UnionIfNotIn(live_out, kill);
  /external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/
browserprocess.py 37 def Kill(self):
41 self.kill()
47 # before the kill.
56 def kill(self): member in class:BrowserProcess
57 self.handle.kill()
67 def kill(self): member in class:BrowserProcessPosix
  /external/bison/lib/
wait-process.c 48 by CreateProcess(). Therefore we can kill it using TerminateProcess. */
49 #define kill(pid,sig) TerminateProcess ((HANDLE) (pid), sig) macro
99 /* Kill the slave. */
100 kill (slave, TERMINATOR);
151 Additionally we need to kill child, because it's not yet among
153 kill (child, TERMINATOR);
207 it would kill the other totally unrelated process. */
240 later, when we exit, we don't kill a totally unrelated process which
332 later, when we exit, we don't kill a totally unrelated process which
  /external/chromium_org/third_party/WebKit/Source/wtf/
MessageQueue.h 69 void kill();
189 inline void MessageQueue<DataType>::kill() function in class:WTF::MessageQueue
  /external/deqp/android/package/src/com/drawelements/deqp/testercore/
RemoteAPI.java 111 public boolean kill () { method in class:RemoteAPI
  /art/test/004-ThreadStress/src/
Main.java 278 Method kill = osClass.getDeclaredMethod("kill", int.class, int.class); local
279 kill.invoke(null, pid, sigquit);
  /external/chromium_org/third_party/libevent/test/
regress_rpc.c 90 EVRPC_HEADER(Message, msg, kill);
91 EVRPC_HEADER(NeverReply, msg, kill);
93 EVRPC_GENERATE(Message, msg, kill);
94 EVRPC_GENERATE(NeverReply, msg, kill);
102 struct kill* kill_reply = rpc->reply;
138 EVRPC_REGISTER(base, Message, msg, kill, MessageCb, NULL);
139 EVRPC_REGISTER(base, NeverReply, msg, kill, NeverReplyCb, NULL);
237 struct kill* kill_reply = NULL;
343 struct msg *msg, struct kill *kill, void *arg
444 struct kill *kill; local
580 struct kill *kill; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
opt_copy_propagation.cpp 94 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/mesa3d/src/glsl/
opt_copy_propagation.cpp 94 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. */
  /cts/tests/tests/os/src/android/os/cts/
RemoteCallbackListTest.java 153 rc.kill();
154 // kill() should unregister the callback (beginBroadcast()
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IsolatedService.java 63 mCallbacks.kill();

Completed in 711 milliseconds

1 2 3