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

1 2 3 4

  /bionic/libc/arch-arm/bionic/
kill.S 41 ENTRY(kill) function
50 END(kill)
  /bionic/libc/arch-mips/syscalls/
kill.S 4 .globl kill
6 .ent kill
8 kill: label
22 .end kill
  /bionic/libc/arch-x86/syscalls/
kill.S 6 ENTRY(kill) function
24 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 19 void kill() { function in struct:Odd
25 odd->kill(); // expected-note{{Calling 'Odd::kill'}}
364 // CHECK-NEXT: <string>Calling &apos;Odd::kill&apos;</string>
366 // 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
  /packages/apps/Nfc/nci/jni/
IntervalTimer.cpp 44 kill();
66 kill();
70 void IntervalTimer::kill() function in class:IntervalTimer
  /external/chromium_org/testing/
xvfb.py 21 def kill(pid): function
26 os.kill(pid, signal.SIGKILL)
121 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
  /frameworks/base/core/java/android/view/
SurfaceSession.java 55 public void kill() { method in class:SurfaceSession
  /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
  /frameworks/base/core/java/com/android/internal/os/
TransferPipe.java 94 tp.kill();
119 tp.kill();
161 kill(); method
176 public void kill() { method in class:TransferPipe
  /external/chromium/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/WebKit/Source/wtf/
MessageQueue.h 73 void kill();
217 inline void MessageQueue<DataType>::kill() function in class:WTF::MessageQueue
  /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. */
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowRemoteCallbackList.java 73 public void kill() { method in class:ShadowRemoteCallbackList
  /external/valgrind/main/coregrind/
m_libcsignal.c 299 Int VG_(kill)( Int pid, Int signo ) function
  /frameworks/base/core/java/android/os/
RemoteCallbackList.java 100 * Returns false if it was not added, either because {@link #kill} had
104 * @see #kill
160 public void kill() { method in class:RemoteCallbackList
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BordeauxService.java 104 mCallbacks.kill();
  /cts/tests/tests/os/src/android/os/cts/
RemoteCallbackListTest.java 150 rc.kill();
151 // kill() should unregister the callback (beginBroadcast()
  /development/samples/ApiDemos/src/com/example/android/apis/app/
IsolatedService.java 63 mCallbacks.kill();
RemoteService.java 91 mCallbacks.kill();
288 mKillButton = (Button)findViewById(R.id.kill);
399 // To kill the process hosting our service, we need to know its
406 // kill any process based on its PID, the kernel will
408 // are actually able to kill. Typically this means only
411 // sharing a common UID will also be able to kill each

Completed in 509 milliseconds

1 2 3 4