Searched refs:writerThread (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DConnect.java53 Thread writerThread = new Thread(writer);
54 writerThread.start();
59 writerThread.join();
H A DSRTest.java70 Thread writerThread = new Thread(writer);
71 writerThread.start();
73 writerThread.join();
/openjdk7/jdk/test/sun/nio/ch/
H A DTempBuffer.java49 Thread writerThread = new Thread() {
70 writerThread.start();
/openjdk7/jdk/test/java/nio/channels/Channels/
H A DBasic2.java52 Thread writerThread = new Thread(writer);
53 writerThread.start();
61 writerThread.join();
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSocketChannelImpl.java59 private volatile long writerThread = 0; field in class:SocketChannelImpl
283 writerThread = 0;
484 writerThread = NativeThread.current();
521 writerThread = NativeThread.current();
553 writerThread = NativeThread.current();
820 if (writerThread != 0)
821 NativeThread.signal(writerThread);
865 if (writerThread != 0)
866 NativeThread.signal(writerThread);
896 if (readerThread == 0 && writerThread
[all...]
H A DDatagramChannelImpl.java62 private volatile long writerThread = 0; field in class:DatagramChannelImpl
471 writerThread = NativeThread.current();
483 writerThread = 0;
614 writerThread = NativeThread.current();
620 writerThread = 0;
643 writerThread = NativeThread.current();
649 writerThread = 0;
1009 if ((th = writerThread) != 0)

Completed in 610 milliseconds