Searched defs:open (Results 1 - 25 of 86) sorted by relevance

1234

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DModelOscillator.java43 public ModelOscillatorStream open(float samplerate); method in interface:ModelOscillator
H A DSoftResamplerStreamer.java36 public void open(ModelWavetable osc, float outputsamplerate) method in interface:SoftResamplerStreamer
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
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;
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DClose.java35 static SelectionKey open() throws IOException { method in class:Close
36 SocketChannel sc = SocketChannel.open();
37 Selector sel = Selector.open();
46 throw new RuntimeException("Channel still open");
48 // throw new RuntimeException("Socket still open");
52 SelectionKey sk = open();
58 SelectionKey sk = open();
/openjdk7/jdk/test/java/nio/channels/etc/
H A DNetworkChannelTests.java38 NetworkChannel open() throws IOException; method in interface:NetworkChannelTests.ChannelFactory
51 ch = factory.open().bind(new InetSocketAddress(0));
60 ch = factory.open().bind(null);
66 ch = factory.open();
89 ch = factory.open();
116 ServerSocketChannel ssc = ServerSocketChannel.open()
122 SocketChannel sc = SocketChannel.open();
150 public NetworkChannel open() throws IOException {
151 return SocketChannel.open();
162 public NetworkChannel open() throw
[all...]
/openjdk7/jdk/src/share/classes/sun/management/
H A DFileSystem.java46 public static FileSystem open() { method in class:FileSystem
/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/javax/sound/sampled/
H A DSourceDataLine.java76 * IllegalArgumentException. The actual buffer size for the open line may
80 * If this operation succeeds, the line is marked as open, and an
84 * Invoking this method on a line which is already open is illegal
98 * @throws IllegalStateException if the line is already open
102 * @see #open(AudioFormat)
103 * @see Line#open
108 public void open(AudioFormat format, int bufferSize) throws LineUnavailableException; method in interface:SourceDataLine
121 * If this operation succeeds, the line is marked as open, and an
125 * Invoking this method on a line which is already open is illegal
137 * @throws IllegalStateException if the line is already open
147 public void open(AudioFormat format) throws LineUnavailableException; method in interface:SourceDataLine
[all...]
H A DTargetDataLine.java70 * IllegalArgumentException. The actual buffer size for the open line may
74 * If this operation succeeds, the line is marked as open, and an
78 * Invoking this method on a line that is already open is illegal
92 * @throws IllegalStateException if the line is already open
96 * @see #open(AudioFormat)
97 * @see Line#open
102 public void open(AudioFormat format, int bufferSize) throws LineUnavailableException; method in interface:TargetDataLine
114 * If this operation succeeds, the line is marked as open, and an
118 * Invoking this method on a line that is already open is illegal
130 * @throws IllegalStateException if the line is already open
140 public void open(AudioFormat format) throws LineUnavailableException; method in interface:TargetDataLine
[all...]
H A DClip.java70 * If this operation succeeds, the line is marked as open and an
74 * Invoking this method on a line which is already open is illegal
92 * @throws IllegalStateException if the line is already open
100 public void open(AudioFormat format, byte[] data, int offset, int bufferSize) throws LineUnavailableException; method in interface:Clip
107 * succeeds, the line is marked open and an
111 * Invoking this method on a line which is already open is illegal
126 * @throws IllegalStateException if the line is already open
134 public void open(AudioInputStream stream) throws LineUnavailableException, IOException; method in interface:Clip
139 * or <code>AudioSystem.NOT_SPECIFIED</code> if the line is not open.
147 * or <code>AudioSystem.NOT_SPECIFIED</code> if the line is not open
[all...]
H A DLine.java45 * you discover whether a line is open or closed.
46 * An open line need not be processing data, however. Such processing is
64 * Certain line operations, such as open and close, can generate security
86 * succeeds, the line is marked as open, and an <code>OPEN</code> event is dispatched
96 * as an additional <code>open</code> method or methods which allow
105 * is thrown. Therefore, you should instead use one of the <code>open</code> methods
123 * @see Clip#open(AudioFormat, byte[], int, int)
124 * @see Clip#open(AudioInputStream)
126 public void open() throws LineUnavailableException; method in interface:Line
137 * @see #open
[all...]
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DDesktopPeer.java36 * of open, edit, print, browse and mail with the given URL or file, by
54 * Launches the associated application to open the given file. The
62 void open(File file) throws IOException; method in interface:DesktopPeer
/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 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
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/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DNTypePrinter.java74 protected String printStruct(NStruct nt, char open, char close){ argument
76 sw.append(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/classes/java/nio/channels/spi/
H A DAbstractInterruptibleChannel.java92 private volatile boolean open = true; field in class:AbstractInterruptibleChannel
112 if (!open)
114 open = false;
138 return open;
160 if (!open)
162 open = false;
204 if (!completed && !open)
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDesktopPeer.java48 public void open(File file) throws IOException { method in class:CDesktopPeer
80 throw new IOException("Failed to open, edit or print " + file + ". Error code: " + status);
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/classes/
H A DOutputFile.java38 public PrintStream open(final File parentDir) throws IOException { method in class:OutputFile
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWDesktopPeer.java44 private static String ACTION_OPEN_VERB = "open";
53 public void open(File file) throws IOException { method in class:WDesktopPeer
/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/share/classes/sun/audio/
H A DAudioDevice.java129 sequencer.open();
263 // could not open sequence
317 public synchronized void open() { method in class:AudioDevice
336 * Play open audio stream(s)
341 // we now open/close the devices as needed on a per-stream
383 * Number of channels currently open.

Completed in 88 milliseconds

1234