Searched refs:open (Results 101 - 125 of 366) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousSocketChannel.java41 * #open open} methods defined by this class. A newly-created channel is open but
113 * open. All methods that accept timeout parameters treat values less than or
159 public static AsynchronousSocketChannel open(AsynchronousChannelGroup group) method in class:AsynchronousSocketChannel
174 * open((AsynchronousChannelGroup)null);
182 public static AsynchronousSocketChannel open() method in class:AsynchronousSocketChannel
185 return open(null);
H A DFileChannel.java105 * <p> A file channel is created by invoking one of the {@link #open open}
121 * <a name="open-mode"></a> <p> At various points this class specifies that an
122 * instance that is "open for reading," "open for writing," or "open for
125 * java.io.FileInputStream} instance will be open for reading. A channel
127 * method of a {@link java.io.FileOutputStream} instance will be open for
130 * java.io.RandomAccessFile} instance will be open for reading if the instance
131 * was created with mode <tt>"r"</tt> and will be open fo
281 public static FileChannel open(Path path, method in class:FileChannel
329 public static FileChannel open(Path path, OpenOption... options) method in class:FileChannel
[all...]
H A DServerSocketChannel.java38 * <p> A server-socket channel is created by invoking the {@link #open() open}
41 * open but not yet bound. An attempt to invoke the {@link #accept() accept}
104 public static ServerSocketChannel open() throws IOException { method in class:ServerSocketChannel
/openjdk7/jdk/test/java/awt/FileDialog/MultipleMode/
H A DMultipleMode.java83 " 1. Turn the 'multiple' checkbox off and press the 'open' button ",
87 " 5. Turn the 'multiple' checkbox on and press the 'open' button ",
99 Button open = new Button("open");
100 open.addActionListener(new ActionListener() {
122 add(open);
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DHangup.java93 ssc = ServerSocketChannel.open();
99 cl = SocketChannel.open(sa);
108 sel = Selector.open();
H A DSocketInheritance.java70 return SocketChannel.open(isa);
98 ServerSocketChannel ssc = ServerSocketChannel.open();
131 ssc = ServerSocketChannel.open();
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMidiDevice.java44 * {@link #open}, explicit closing is done by calling {@link
67 * not open the device implicitly. Closing these
77 * <li>After an explicit open (either before or after implicit
143 public void open() throws MidiUnavailableException; method in interface:MidiDevice
151 * open from this device are closed. This includes instances retrieved
154 * @see #open
161 * Reports whether the device is open.
163 * @return <code>true</code> if the device is open, otherwise
165 * @see #open
211 * open th
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DCopiedFile.java40 final PrintStream out = open(parentDir);
H A DOutputFile.java38 public PrintStream open(final File parentDir) throws IOException { method in class:OutputFile
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLDocument.java148 public void open(); method in interface:HTMLDocument
151 * Closes a document stream opened by <code>open()</code> and forces
158 * <code>open()</code> . The text is parsed into the document's structure
167 * stream opened by <code>open()</code> . The text is parsed into the
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DUseDGWithIPv6.java46 DatagramChannel dgChannel = DatagramChannel.open();
/openjdk7/jdk/test/java/nio/channels/Pipe/
H A DScatteringRead.java42 Pipe p = Pipe.open();
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DCheckLocking.java58 SocketChannel sc = SocketChannel.open();
H A DKeysReady.java40 SocketChannel sc = SocketChannel.open();
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftSynthesizer/
H A DGetReceiver.java54 synth.open(new DummySourceDataLine(), null);
H A DGetReceiver2.java49 synth.open(new DummySourceDataLine(), null);
H A DGetReceivers.java54 synth.open(new DummySourceDataLine(), null);
H A DGetTransmitter.java53 synth.open(new DummySourceDataLine(), null);
H A DGetTransmitters.java53 synth.open(new DummySourceDataLine(), null);
H A DOpen.java27 @summary Test SoftSynthesizer open method */
59 synth.open();
/openjdk7/jdk/src/share/sample/nio/multicast/
H A DSender.java69 DatagramChannel dc = DatagramChannel.open(family).bind(new InetSocketAddress(0));
/openjdk7/jdk/src/share/sample/nio/server/
H A DDispatcher1.java59 sel = Selector.open();
H A DDispatcherN.java59 sel = Selector.open();
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftMixingClip.java121 private boolean open = false; field in class:SoftMixingClip
305 public void open(AudioInputStream stream) throws LineUnavailableException, method in class:SoftMixingClip
308 throw new IllegalStateException("Clip is already open with format "
330 open(stream.getFormat(), data, 0, len);
340 open(stream.getFormat(), baos.toByteArray(), 0, baos.size());
345 public void open(AudioFormat format, byte[] data, int offset, int bufferSize) method in class:SoftMixingClip
350 "Clip is already open with format " + getFormat()
371 mixer.open();
379 open = true;
518 open
531 public void open() throws LineUnavailableException { method in class:SoftMixingClip
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DDefaultSocketFactoryImpl.java61 serverSocketChannel = ServerSocketChannel.open();
78 socketChannel = SocketChannel.open(inetSocketAddress);

Completed in 97 milliseconds

1234567891011>>