Searched refs:open (Results 1 - 25 of 536) sorted by relevance

1234567891011>>

/openjdk10/langtools/test/tools/javac/diags/examples/
H A DExpectedModule.java26 open class ExpectedModule { }
/openjdk10/jdk/test/java/lang/invoke/MethodHandles/privateLookupIn/m1/
H A Dmodule-info.java23 open module m1 {
/openjdk10/jdk/test/jdk/modules/open/modules/m1/
H A Dmodule-info.java23 open module m1 {
/openjdk10/jdk/test/tools/jlink/plugins/SystemModuleDescriptors/src/m4/
H A Dmodule-info.java24 open module m4 {
/openjdk10/langtools/test/tools/javac/diags/examples/NoOpensUnlessStrong/
H A Dmodule-info.java26 open module ConflictingExports {
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/sampled/
H A DSourceDataLine.java74 * {@code IllegalArgumentException}. The actual buffer size for the open
78 * If this operation succeeds, the line is marked as open, and an
82 * Invoking this method on a line which is already open is illegal and may
95 * @throws IllegalStateException if the line is already open
98 * @see #open(AudioFormat)
99 * @see Line#open
104 void open(AudioFormat format, int bufferSize) method in interface:SourceDataLine
116 * If this operation succeeds, the line is marked as open, and an
120 * Invoking this method on a line which is already open is illegal and may
131 * @throws IllegalStateException if the line is already open
140 void open(AudioFormat format) throws LineUnavailableException; method in interface:SourceDataLine
[all...]
H A DTargetDataLine.java68 * {@code IllegalArgumentException}. The actual buffer size for the open
72 * If this operation succeeds, the line is marked as open, and an
76 * Invoking this method on a line that is already open is illegal and may
89 * @throws IllegalStateException if the line is already open
92 * @see #open(AudioFormat)
93 * @see Line#open
98 void open(AudioFormat format, int bufferSize) throws LineUnavailableException; method in interface:TargetDataLine
109 * If this operation succeeds, the line is marked as open, and an
113 * Invoking this method on a line that is already open is illegal and may
124 * @throws IllegalStateException if the line is already open
133 void open(AudioFormat format) throws LineUnavailableException; method in interface:TargetDataLine
[all...]
H A DClip.java68 * open and an {@link LineEvent.Type#OPEN OPEN} event is dispatched to the
71 * Invoking this method on a line which is already open is illegal and may
88 * @throws IllegalStateException if the line is already open
95 void open(AudioFormat format, byte[] data, int offset, int bufferSize) method in interface:Clip
102 * stream. If this operation succeeds, the line is marked open and an
106 * Invoking this method on a line which is already open is illegal and may
120 * @throws IllegalStateException if the line is already open
127 void open(AudioInputStream stream) method in interface:Clip
134 * {@code AudioSystem.NOT_SPECIFIED} if the line is not open
143 * {@code AudioSystem.NOT_SPECIFIED} if the line is not open
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DModelOscillator.java44 ModelOscillatorStream open(float samplerate); method in interface:ModelOscillator
H A DSoftResamplerStreamer.java37 void open(ModelWavetable osc, float outputsamplerate) throws IOException; method in interface:SoftResamplerStreamer
H A DAbstractLine.java49 private volatile boolean open; field in class:AbstractLine
83 return open;
155 * This method sets the open state and generates
158 final void setOpen(boolean open) { argument
160 if (Printer.trace) Printer.trace("> "+getClass().getName()+" (AbstractLine): setOpen(" + open + ") this.open: " + this.open);
166 if (this.open != open) {
167 this.open
229 public abstract void open() throws LineUnavailableException; method in class:AbstractLine
[all...]
/openjdk10/jdk/test/java/nio/channels/
H A DConfigureBlocking.java36 DatagramChannel.open(),
37 SocketChannel.open(),
38 ServerSocketChannel.open()};
/openjdk10/jdk/test/java/nio/channels/DatagramChannel/
H A DBindNull.java38 try (DatagramChannel dc = DatagramChannel.open()) {
41 try (DatagramChannel dc = DatagramChannel.open(StandardProtocolFamily.INET)) {
44 try (DatagramChannel dc = DatagramChannel.open(StandardProtocolFamily.INET6)) {
/openjdk10/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...]
/openjdk10/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DBadProperties.java39 AsynchronousSocketChannel.open();
/openjdk10/langtools/test/tools/javac/lambda/
H A DExceptionsInLambda.java54 public static InputStream doOpen(Open open) { argument
55 return open.open();
59 public InputStream open(); method in interface:ExceptionsInLambda.Open
/openjdk10/jdk/test/java/nio/channels/Selector/
H A DCloseInvalidatesKeys.java35 DatagramChannel ch = DatagramChannel.open();
38 Selector sel = Selector.open();
H A DWakeupOverflow.java33 Selector selector = Selector.open();
H A DCloseThenRegister.java35 Selector sel = Selector.open();
37 ServerSocketChannel ssc = ServerSocketChannel.open();
/openjdk10/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();
H A DBind.java34 SocketChannel sc1 = SocketChannel.open();
38 SocketChannel sc2 = SocketChannel.open();
H A DOpen.java36 SocketChannel sc = SocketChannel.open();
38 // Presumably "Too many open files"
45 DatagramChannel sc = DatagramChannel.open();
47 // Presumably "Too many open files"
57 // Presumably "Too many open files"
64 ServerSocketChannel sc = ServerSocketChannel.open();
66 // Presumably "Too many open files"
74 DatagramChannel dc = DatagramChannel.open();
78 ServerSocketChannel ssc = ServerSocketChannel.open();
H A DCloseRegisteredChannel.java37 ServerSocketChannel server = ServerSocketChannel.open();
43 SocketChannel client = SocketChannel.open ();
48 Selector selector = Selector.open ();
/openjdk10/jdk/test/java/nio/channels/ServerSocketChannel/
H A DOpen.java38 ServerSocketChannel ssc = ServerSocketChannel.open();
/openjdk10/jdk/test/sun/nio/ch/
H A DBasic.java34 Pipe p = Pipe.open();

Completed in 238 milliseconds

1234567891011>>