Searched refs:kill (Results 1 - 25 of 33) sorted by relevance

12

/openjdk9/jdk/src/java.base/share/classes/sun/nio/ch/
H A DSelChImpl.java69 void kill() throws IOException; method in interface:SelChImpl
H A DAbstractPollSelectorImpl.java97 ((SelChImpl)selch).kill();
193 ((SelChImpl)selch).kill();
H A DSocketChannelImpl.java284 kill();
292 kill();
365 // moves on to nd.close() in kill(), which does a real close.
370 // is to postpone the real kill() if there is a reader or/and
371 // writer thread(s) over there "waiting", leave the cleanup/kill
744 kill();
858 // kill() to close the fd.
861 kill();
865 public void kill() throws IOException { method in class:SocketChannelImpl
875 // Postpone the kill i
[all...]
H A DServerSocketChannelImpl.java296 kill();
300 public void kill() throws IOException { method in class:ServerSocketChannelImpl
/openjdk9/jdk/src/java.base/windows/classes/sun/nio/ch/
H A DSourceChannelImpl.java63 kill();
66 public void kill() throws IOException { method in class:SourceChannelImpl
H A DSinkChannelImpl.java64 kill();
67 public void kill() throws IOException { method in class:SinkChannelImpl
H A DWindowsSelectorImpl.java518 ((SelChImpl)selch).kill();
589 ((SelChImpl)selch).kill();
/openjdk9/jdk/test/java/lang/Runtime/exec/
H A DUnixCommands.java58 public static String kill() { return findCommand("kill"); } method in class:UnixCommands
H A DExitValue.java82 UnixCommands.ensureCommandsAvailable("sh", "true", "kill");
100 checkPosixShellExitValue(UnixCommands.kill() + " -9 $$", sigoffset+9);
/openjdk9/jdk/src/java.base/linux/classes/sun/nio/ch/
H A DEPollSelectorImpl.java163 ((SelChImpl)selch).kill();
193 ((SelChImpl)selch).kill();
/openjdk9/jdk/src/java.base/macosx/classes/sun/nio/ch/
H A DKQueueSelectorImpl.java211 ((SelChImpl)selch).kill();
242 ((SelChImpl)selch).kill();
/openjdk9/jdk/src/java.base/unix/classes/sun/nio/ch/
H A DSourceChannelImpl.java93 kill();
97 public void kill() throws IOException { method in class:SourceChannelImpl
H A DSinkChannelImpl.java93 kill();
97 public void kill() throws IOException { method in class:SinkChannelImpl
/openjdk9/jdk/src/java.base/solaris/classes/sun/nio/ch/
H A DDevPollSelectorImpl.java168 ((SelChImpl)selch).kill();
193 ((SelChImpl)selch).kill();
H A DEventPortSelectorImpl.java128 ((SelChImpl)selch).kill();
151 ((SelChImpl)selch).kill();
/openjdk9/jdk/src/jdk.sctp/unix/classes/sun/nio/ch/sctp/
H A DSctpServerChannelImpl.java211 kill();
273 kill();
278 public void kill() throws IOException { method in class:SctpServerChannelImpl
288 // Postpone the kill if there is a thread in accept
H A DSctpChannelImpl.java330 kill();
338 kill();
507 kill();
574 kill();
657 public void kill() throws IOException { method in class:SctpChannelImpl
667 /* Postpone the kill if there is a waiting reader
H A DSctpMultiChannelImpl.java272 kill();
280 kill();
301 kill();
370 public void kill() throws IOException { method in class:SctpMultiChannelImpl
380 /* Postpone the kill if there is a thread sending or receiving. */
/openjdk9/jdk/src/jdk.attach/linux/native/libattach/
H A DVirtualMachineImpl.c209 kill(pid, SIGQUIT);
238 if (kill((pid_t)pid, SIGQUIT)) {
239 JNU_ThrowIOExceptionWithLastError(env, "kill");
/openjdk9/jdk/src/jdk.attach/aix/native/libattach/
H A DVirtualMachineImpl.c141 kill(pid, SIGQUIT);
153 if (kill((pid_t)pid, SIGQUIT)) {
154 JNU_ThrowIOExceptionWithLastError(env, "kill");
/openjdk9/hotspot/src/share/vm/opto/
H A Doutput.cpp1363 // it's followed by a flag-kill and a null-check. Happens on
2512 // kill a live value (other than the one it's supposed to). Add each
2521 OptoReg::Name kill = rm.find_first_elem(); local
2522 rm.Remove(kill);
2523 verify_do_def( n, kill, msg );
2571 is_def ) { // Check for a true def (not a kill)
2572 _reg_node.map(def_reg,def); // Record def/kill as the optimistic pinch-point
2576 Node *kill = def; // Rename 'def' to more descriptive 'kill' local
2582 // Finding a kill require
2710 OptoReg::Name kill = rm.find_first_elem(); local
2729 OptoReg::Name kill = rm.find_first_elem(); local
[all...]
/openjdk9/jdk/src/jdk.attach/macosx/native/libattach/
H A DVirtualMachineImpl.c127 if (kill((pid_t)pid, SIGQUIT)) {
128 JNU_ThrowIOExceptionWithLastError(env, "kill");
/openjdk9/jdk/src/jdk.attach/solaris/native/libattach/
H A DVirtualMachineImpl.c206 if (kill((pid_t)pid, SIGQUIT) == -1) {
207 JNU_ThrowIOExceptionWithLastError(env, "kill");
/openjdk9/hotspot/src/os/bsd/vm/
H A DperfMemory_bsd.cpp507 if (kill(vmid, 0) == OS_ERR) {
715 // the process id (see kill(2)). if kill determines that the
717 // if kill determines that that we don't have permission to
723 (kill(pid, 0) == OS_ERR && (errno == ESRCH || errno == EPERM))) {
/openjdk9/hotspot/src/os/linux/vm/
H A DperfMemory_linux.cpp507 if (kill(vmid, 0) == OS_ERR) {
726 // the process id (see kill(2)). if kill determines that the
728 // if kill determines that that we don't have permission to
734 (kill(pid, 0) == OS_ERR && (errno == ESRCH || errno == EPERM))) {

Completed in 112 milliseconds

12