Searched refs:open (Results 176 - 200 of 366) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DChangingAddress.java56 dc = DatagramChannel.open().bind(new InetSocketAddress(0));
H A DMulticastSendReceiveTests.java61 DatagramChannel dc = DatagramChannel.open(family)
86 Selector sel = Selector.open();
149 DatagramChannel.open() : DatagramChannel.open(family)) {
H A DThereCanBeOnlyOne.java36 DatagramChannel dc1 = DatagramChannel.open();
/openjdk7/jdk/test/java/nio/channels/Pipe/
H A DSelectPipe.java44 Selector selector = Selector.open();
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DAlias.java56 SocketChannel sc = SocketChannel.open();
H A DConnect.java56 SocketChannel sc = SocketChannel.open();
H A DConnectWrite.java49 SocketChannel sc = SocketChannel.open();
H A DLotsOfCancels.java94 Selector serverSelector = Selector.open();
95 ServerSocketChannel server = ServerSocketChannel.open();
208 selector = Selector.open();
241 SocketChannel channel = SocketChannel.open();
/openjdk7/jdk/test/java/nio/channels/ServerSocketChannel/
H A DSocketOptionTests.java48 ServerSocketChannel ssc = ServerSocketChannel.open();
/openjdk7/jdk/test/java/nio/channels/SocketChannel/
H A DBasic.java43 SocketChannel sc = SocketChannel.open(isa);
H A DIsConnectable.java41 SocketChannel sc = SocketChannel.open();
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DStateTestService.java59 SocketChannel sc = SocketChannel.open(isa);
/openjdk7/jdk/test/javax/sound/sampled/Clip/
H A DClipSetPos.java53 clip.open(audioFormat, dataBuffer, 0, dataBuffer.length);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousServerSocketChannelImpl.java61 private volatile boolean open = true; field in class:AsynchronousServerSocketChannelImpl
76 return open;
105 if (!open)
107 open = false;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDesktopPeer.java75 public void open(File file) throws IOException { method in class:XDesktopPeer
/openjdk7/jdk/test/java/nio/channels/AsynchronousFileChannel/
H A DBasic.java49 .open(blah.toPath(), READ, WRITE);
62 // these tests open the file themselves
172 .open(file, READ, WRITE);
308 AsynchronousFileChannel ch = AsynchronousFileChannel.open(file, opts, executor);
353 channels[i] = AsynchronousFileChannel.open(file, opts, executor);
383 .open(file, WRITE, TRUNCATE_EXISTING);
394 ch = AsynchronousFileChannel.open(file, WRITE, SYNC);
438 // open with SYNC option to improve chances that write will not
441 .open(file, WRITE, SYNC);
491 .open(fil
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DTransletOutput.java119 final int open = cpg.addMethodref(TRANSLET_CLASS,
132 il.append(new INVOKEVIRTUAL(open));
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/legacy/connection/
H A DDefaultSocketFactory.java80 ServerSocketChannel.open();
113 SocketChannel socketChannel = SocketChannel.open(address);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGapVector.java142 int end = open(position + rmSize, endSize);
189 int open(int position, int nItems) { method in class:GapVector
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsContextFactory.java94 ResolverConfiguration.open().nameservers(), true
149 ResolverConfiguration.open().nameservers(), false);
/openjdk7/jdk/src/share/classes/java/awt/
H A DDesktop.java54 * <li>launching a registered application to open, edit or print a
92 * Represents an "open" action.
93 * @see Desktop#open(java.io.File)
183 * application registered to open it. In this case, {@link
245 * Launches the associated application to open the file.
248 * the current platform is launched to open it.
266 public void open(File file) throws IOException { method in class:Desktop
272 peer.open(file);
/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/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_SolarisOS_Utils.c154 // try to open the pseudo device and get more information
155 fd = open(adDesc->pathctl, O_WRONLY | O_NONBLOCK);
159 fd = open(adDesc->pathctl, O_RDONLY);
187 ERROR1("could not open %s!\n", adDesc->pathctl);
/openjdk7/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DIdentity.java80 AsynchronousServerSocketChannel.open()
123 AsynchronousSocketChannel ch = AsynchronousSocketChannel.open(group);
/openjdk7/jdk/test/java/nio/channels/AsynchronousSocketChannel/
H A DStressLoopback.java41 AsynchronousServerSocketChannel.open().bind(new InetSocketAddress(0));
51 AsynchronousSocketChannel ch = AsynchronousSocketChannel.open();

Completed in 46 milliseconds

1234567891011>>