Searched refs:open (Results 51 - 75 of 366) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/nio/channels/Selector/
H A DWakeupSpeed.java37 Selector selector = Selector.open();
H A DHelperSlowToDie.java45 Selector sel = Selector.open();
50 SocketChannel sc = SocketChannel.open();
70 SocketChannel sc = SocketChannel.open();
H A DLotsOfChannels.java44 Pipe pipe = Pipe.open();
47 Selector sel = Selector.open();
52 pipes[i]= Pipe.open();
H A DOpRead.java41 ssc = ServerSocketChannel.open().bind(new InetSocketAddress(0));
45 sc = SocketChannel.open(new InetSocketAddress(lh, ssc.socket().getLocalPort()));
54 Selector selector = Selector.open();
H A DSelectAndCancel.java42 final Selector selector = Selector.open();
44 ServerSocketChannel.open().bind(new InetSocketAddress(0));
69 SocketChannel sc = SocketChannel.open();
H A DSelectorLimit.java77 ServerSocketChannel ssc = ServerSocketChannel.open();
82 Selector sel = Selector.open();
85 SocketChannel sc = SocketChannel.open();
H A DCloseWhenKeyIdle.java83 ServerSocketChannel ssc = ServerSocketChannel.open();
89 SocketChannel sc1 = SocketChannel.open(remote);
94 Selector sel = Selector.open();
H A DRegAfterPreClose.java54 SocketChannel.open(sa).close();
83 ServerSocketChannel ssc = ServerSocketChannel.open();
87 final Selector sel = Selector.open();
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DOpenLeak.java26 * @summary SocketChannel.open(SocketAddress) leaks file descriptor if
45 SocketChannel.open(isa);
H A DShutdown.java51 ServerSocketChannel ssc = ServerSocketChannel.open()
60 sc = SocketChannel.open(remote);
70 sc = SocketChannel.open(remote);
H A DUnboundSocketTests.java59 SocketChannel sc = SocketChannel.open();
75 ServerSocketChannel ssc = ServerSocketChannel.open();
86 DatagramChannel dc = DatagramChannel.open();
/openjdk7/jdk/src/share/classes/sun/net/dns/
H A DResolverConfiguration.java35 * is opened by invoking the {@link #open() open} method.
53 public static ResolverConfiguration open() { method in class:ResolverConfiguration
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DSpanIterator.h37 void *(*open)(JNIEnv *env, jobject iterator); member in struct:__anon934
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousServerSocketChannel.java38 * {@link #open open} method of this class.
39 * A newly-created asynchronous server-socket channel is open but not yet bound.
75 * AsynchronousServerSocketChannel.open().bind(new InetSocketAddress(5000));
135 public static AsynchronousServerSocketChannel open(AsynchronousChannelGroup group) method in class:AsynchronousServerSocketChannel
150 * open((AsynchronousChannelGroup)null);
158 public static AsynchronousServerSocketChannel open() method in class:AsynchronousServerSocketChannel
161 return open(null);
H A DSocketChannel.java39 * <p> A socket channel is created by invoking one of the {@link #open open}
41 * pre-existing socket. A newly-created socket channel is open but not yet
141 public static SocketChannel open() throws IOException { method in class:SocketChannel
148 * <p> This convenience method works as if by invoking the {@link #open()}
179 public static SocketChannel open(SocketAddress remote) method in class:SocketChannel
182 SocketChannel sc = open();
299 * is {@link #isOpen open} and connected
H A DPipe.java149 public static Pipe open() throws IOException { method in class:Pipe
H A DSelector.java37 * <p> A selector may be created by invoking the {@link #open open} method of
42 * method of a custom selector provider. A selector remains open until it is
160 * that the key is valid or that its channel is open. Application code should
226 public static Selector open() throws IOException { method in class:Selector
231 * Tells whether or not this selector is open. </p>
233 * @return <tt>true</tt> if, and only if, this selector is open
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftReceiver.java41 boolean open = true; field in class:SoftReceiver
62 if (!open)
63 throw new IllegalStateException("Receiver is not open");
85 open = false;
H A DAudioSynthesizer.java50 * <p>If the synthesizer is not open and has never been opened, it returns
61 * @param info a proposed list of tag/value pairs that will be sent on open.
96 public void open(SourceDataLine line, Map<String, Object> info) method in interface:AudioSynthesizer
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DReceiveISA.java40 DatagramChannel dc1 = DatagramChannel.open();
41 DatagramChannel dc2 = DatagramChannel.open();
44 DatagramChannel dc3 = DatagramChannel.open();
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DLauncher.java71 ServerSocketChannel ssc = ServerSocketChannel.open();
75 SocketChannel sc1 = SocketChannel.open(isa);
100 ServerSocketChannel ssc = ServerSocketChannel.open();
106 return SocketChannel.open(isa);
128 DatagramChannel dc = DatagramChannel.open();
135 dc = DatagramChannel.open();
/openjdk7/jdk/test/sun/net/sdp/
H A DSanity.java51 ServerSocketChannel ssc = ServerSocketChannel.open();
57 SocketChannel client = SocketChannel.open();
72 client = SocketChannel.open();
86 AsynchronousServerSocketChannel.open();
92 AsynchronousSocketChannel client = AsynchronousSocketChannel.open();
107 client = AsynchronousSocketChannel.open();
/openjdk7/jdk/src/share/classes/com/sun/nio/sctp/
H A DSctpChannel.java42 * {@link #open open} methods of this class. A newly-created channel is open but
163 public static SctpChannel open() throws method in class:SctpChannel
174 * open().connect(remote, maxOutStreams, maxInStreams);
218 public static SctpChannel open(SocketAddress remote, int maxOutStreams, method in class:SctpChannel
220 SctpChannel ssc = SctpChannel.open();
618 * channel remains open to allow the for any data (and notifications) to be
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/actions/
H A DOutlineAction.java45 win.open();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/actions/
H A DFilterAction.java44 win.open();

Completed in 46 milliseconds

1234567891011>>