Searched defs:configureBlocking (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/channels/
H A DSelectableChannel.java172 * #configureBlocking(boolean) configureBlocking} method is in progress
312 public abstract SelectableChannel configureBlocking(boolean block) method in class:SelectableChannel
332 * Retrieves the object upon which the {@link #configureBlocking
333 * configureBlocking} and {@link #register register} methods synchronize.
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DSelectableChannelTest.java52 public SelectableChannel configureBlocking(boolean block) method in class:SelectableChannelTest.MockSelectableChannel
/libcore/ojluni/src/main/java/java/nio/channels/spi/
H A DAbstractSelectableChannel.java67 // Lock for registration and configureBlocking operations
278 public final SelectableChannel configureBlocking(boolean block) method in class:AbstractSelectableChannel
297 * <p> This method is invoked by the {@link #configureBlocking
298 * configureBlocking} method in order to perform the actual work of
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DIOUtil.java336 static native void configureBlocking(FileDescriptor fd, boolean blocking) method in class:IOUtil
/libcore/ojluni/src/main/native/
H A DIOUtil.c71 configureBlocking(int fd, jboolean blocking) function
83 if (configureBlocking(fdval(env, fdo), blocking) < 0)
97 if ((configureBlocking(fd[0], JNI_FALSE) < 0)
98 || (configureBlocking(fd[1], JNI_FALSE) < 0)) {
212 NATIVE_METHOD(IOUtil, configureBlocking, "(Ljava/io/FileDescriptor;Z)V"),

Completed in 134 milliseconds