Searched refs:configureBlocking (Results 1 - 25 of 41) sorted by relevance

12

/libcore/luni/src/test/java/libcore/java/nio/channels/
H A DPipeTest.java25 p.source().configureBlocking(false);
H A DSelectorTest.java39 ssc.configureBlocking(false);
43 sc.configureBlocking(false);
116 ssc.configureBlocking(false);
123 sc.configureBlocking(false);
157 ssc.configureBlocking(false);
164 sc.configureBlocking(false);
H A DSocketChannelTest.java76 sc.configureBlocking(false);
105 sc.configureBlocking(true);
126 sc.configureBlocking(true);
259 sc.configureBlocking(false);
370 channel1.configureBlocking(false);
H A DOldSocketChannelTest.java139 this.channel1.configureBlocking(false);
152 this.channel1.configureBlocking(false);
252 channel1.configureBlocking(false);
H A DChannelsTest.java69 sourceChannel.configureBlocking(false);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/spi/
H A DAbstractSelectableChannelTest.java89 testChannel.configureBlocking(false);
91 testChannel.configureBlocking(true);
113 sc.configureBlocking(false);
127 channel.configureBlocking(false);
143 msc.configureBlocking(false);
181 msc.configureBlocking(true);
212 sc.configureBlocking(false);
237 sc.configureBlocking(false);
254 * @tests AbstractSelectableChannel#configureBlocking(boolean)
258 sc.configureBlocking(fals
[all...]
H A DAbstractSelectorTest.java117 ssc.configureBlocking(false);
133 ssc.configureBlocking(false);
146 ssc.configureBlocking(true);
154 ssc.configureBlocking(false);
/libcore/ojluni/src/main/java/java/nio/channels/
H A DSelectableChannel.java175 * #configureBlocking(boolean) configureBlocking} method is in progress
315 public abstract SelectableChannel configureBlocking(boolean block) method in class:SelectableChannel
335 * Retrieves the object upon which the {@link #configureBlocking
336 * configureBlocking} and {@link #register register} methods synchronize.
/libcore/ojluni/src/main/native/
H A DIOUtil.c74 configureBlocking(int fd, jboolean blocking) function
86 if (configureBlocking(fdval(env, fdo), blocking) < 0)
100 if ((configureBlocking(fd[0], JNI_FALSE) < 0)
101 || (configureBlocking(fd[1], JNI_FALSE) < 0)) {
214 NATIVE_METHOD(IOUtil, configureBlocking, "(Ljava/io/FileDescriptor;Z)V"),
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DSelectorTest.java55 ssc.configureBlocking(false);
117 sc.configureBlocking(false);
338 sc.configureBlocking(false);
362 pipe.source().configureBlocking(false);
395 sc.configureBlocking(false);
443 channel.configureBlocking(false);
504 sc.configureBlocking(false);
544 ssc.configureBlocking(true);
547 sc.configureBlocking(false);
549 client.configureBlocking(tru
[all...]
H A DServerSocketChannelTest.java269 this.serverChannel.configureBlocking(false);
296 this.serverChannel.configureBlocking(false);
350 this.serverChannel.configureBlocking(false);
396 this.serverChannel.configureBlocking(false);
443 serverChannel.configureBlocking(false);
483 serverChannel.configureBlocking(false);
548 serverChannel.configureBlocking(false);
573 serverChannel.configureBlocking(false);
672 sc.configureBlocking(false);
700 serverChannel.configureBlocking(tru
[all...]
H A DDatagramChannelTest.java314 dc.configureBlocking(false);
376 this.channel1.configureBlocking(false);
446 this.channel1.configureBlocking(false);
628 this.channel1.configureBlocking(false);
653 this.channel1.configureBlocking(false);
700 this.channel1.configureBlocking(false);
800 this.channel1.configureBlocking(false);
816 this.channel1.configureBlocking(false);
832 this.channel1.configureBlocking(false);
840 this.channel1.configureBlocking(fals
[all...]
H A DUnixSelectorTest.java35 serverChannel.configureBlocking(false);
77 socketChannel.configureBlocking(false);
94 socketChannel2.configureBlocking(false);
H A DSelectableChannelTest.java52 public SelectableChannel configureBlocking(boolean block) method in class:SelectableChannelTest.MockSelectableChannel
H A DSinkChannelTest.java77 sink.configureBlocking(sinkBlockingMode[i]);
78 source.configureBlocking(sourceBlockingMode[i]);
186 sink.configureBlocking(sinkBlockingMode[i]);
187 source.configureBlocking(sourceBlockingMode[i]);
285 sink.configureBlocking(sinkBlockingMode[i]);
286 source.configureBlocking(sourceBlockingMode[i]);
H A DSocketChannelTest.java365 this.channel1.configureBlocking(false);
411 this.channel1.configureBlocking(false);
428 this.channel1.configureBlocking(false);
786 this.channel1.configureBlocking(false);
857 this.channel1.configureBlocking(false);
880 this.channel1.configureBlocking(false);
957 this.channel1.configureBlocking(false);
1099 this.channel1.configureBlocking(false);
1197 this.channel1.configureBlocking(false);
1277 this.channel1.configureBlocking(fals
[all...]
H A DSourceChannelTest.java162 sink.configureBlocking(sinkBlockingMode[i]);
163 source.configureBlocking(sourceBlockingMode[i]);
305 sink.configureBlocking(sinkBlockingMode[i]);
306 source.configureBlocking(sourceBlockingMode[i]);
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DServerSocketAdaptor.java106 ssc.configureBlocking(false);
125 ssc.configureBlocking(true);
H A DSocketAdaptor.java105 sc.configureBlocking(false);
128 sc.configureBlocking(true);
208 sc.configureBlocking(false);
230 sc.configureBlocking(true);
H A DSinkChannelImpl.java112 IOUtil.configureBlocking(fd, block);
H A DSourceChannelImpl.java113 IOUtil.configureBlocking(fd, block);
H A DDatagramSocketAdaptor.java179 dc.configureBlocking(false);
203 dc.configureBlocking(true);
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DLinuxWatchService.java80 configureBlocking(ifd, false);
82 configureBlocking(sp[0], false);
485 private static native void configureBlocking(int fd, boolean blocking) method in class:LinuxWatchService
/libcore/luni/src/test/java/libcore/dalvik/system/
H A DSocketTaggingTest.java85 server.configureBlocking(false);
/libcore/ojluni/src/main/java/java/nio/channels/spi/
H A DAbstractSelectableChannel.java67 // Lock for registration and configureBlocking operations
284 public final SelectableChannel configureBlocking(boolean block) method in class:AbstractSelectableChannel
303 * <p> This method is invoked by the {@link #configureBlocking
304 * configureBlocking} method in order to perform the actual work of

Completed in 236 milliseconds

12