Searched refs:open (Results 251 - 275 of 366) sorted by relevance

<<1112131415

/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DSocketOptionTests.java49 DatagramChannel dc = DatagramChannel.open();
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DWakeup.java136 Selector sel = Selector.open();
/openjdk7/jdk/test/java/nio/channels/ServerSocketChannel/
H A DAdaptServerSocket.java83 ServerSocketChannel ssc = ServerSocketChannel.open();
/openjdk7/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DLauncher.c126 * get the list of open file descriptos we read through /proc/self/fd
127 * but to open this requires a file descriptor. We could use a specific
132 thisFd = open("/dev/null", O_RDONLY);
156 * open and all connected to the same socket.
H A DStateTest.java148 ServerSocketChannel ssc = ServerSocketChannel.open();
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/
H A DTunnelProxy.java89 schan = ServerSocketChannel.open ();
142 selector = Selector.open ();
352 selector = Selector.open();
470 selector = Selector.open ();
/openjdk7/jdk/test/javax/sound/midi/Sequencer/
H A DSequencerImplicitSynthOpen.java56 sequencer.open(); // opens connected synthesizer implicitly
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousSocketChannelImpl.java80 private volatile boolean open = true; field in class:AsynchronousSocketChannelImpl
108 return open;
137 if (!open)
139 open = false;
/openjdk7/jdk/src/share/sample/nio/chatserver/
H A DChatServer.java123 return AsynchronousServerSocketChannel.open(channelGroup);
/openjdk7/jdk/src/share/sample/nio/server/
H A DServer.java72 ssc = ServerSocketChannel.open();
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixCopyFile.java144 // open target directory if possible (this can fail when copying a
148 dfd = open(target, O_RDONLY, 0);
179 sfd = open(source, O_RDONLY, 0);
228 fi = open(source, O_RDONLY, 0);
234 // open new file
237 fo = open(target,
H A DUnixSecureDirectoryStream.java107 // open directory and create new secure directory stream
225 * Rename/move file in this directory to another (open) directory
324 int open() throws IOException { method in class:UnixSecureDirectoryStream.BasicFileAttributeViewImpl
396 int fd = (file == null) ? dfd : open();
493 int fd = (file == null) ? dfd : open();
516 int fd = (file == null) ? dfd : open();
/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.
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DShutdown.java90 channel = SctpChannel.open();
181 ssc = SctpServerChannel.open().bind(null);
H A DReceive.java101 channel = SctpChannel.open();
193 channel = SctpChannel.open(peerAddress, 0, 0);
223 ssc = SctpServerChannel.open().bind(null);
H A DSend.java99 channel = SctpChannel.open();
210 channel = SctpChannel.open(peerAddress, 0, 0);
292 ssc = SctpServerChannel.open().bind(null);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DPretty.java105 void open(int contextPrec, int ownPrec) throws IOException { method in class:Pretty
724 open(prec, TreeInfo.condPrec);
920 open(prec, TreeInfo.assignPrec);
966 open(prec, TreeInfo.assignopPrec);
980 open(prec, ownprec);
998 open(prec, ownprec);
1010 open(prec, TreeInfo.prefixPrec);
1023 open(prec, TreeInfo.ordPrec);
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DTransfer.java280 fc = FileChannel.open(sink.toPath(),
382 ServerSocketChannel ssc = ServerSocketChannel.open();
386 SocketChannel sink = SocketChannel.open(sa);
433 ServerSocketChannel ssc = ServerSocketChannel.open();
438 SocketChannel source = SocketChannel.open(isa);
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWInputMethod.java60 private boolean open; //default open status; field in class:WInputMethod
123 open = getOpenStatus(context);
199 setOpenStatus(context, open);
/openjdk7/hotspot/src/os/solaris/vm/
H A DperfMemory_solaris.cpp100 RESTARTABLE(::open(destfile, O_CREAT|O_WRONLY|O_TRUNC, S_IREAD|S_IWRITE),
227 // the directory is open for writing and could be subjected
318 // open the directory and check if the file for the given vmid exists.
422 RESTARTABLE(::open(psinfo_name, O_RDONLY), result);
536 // open the user temp directory
655 RESTARTABLE(::open(filename, O_RDWR|O_CREAT|O_TRUNC, S_IREAD|S_IWRITE), result);
679 // open the shared memory file for the given user and vmid. returns
680 // the file descriptor for the open file or -1 if the file could not
685 // open the file
687 RESTARTABLE(::open(filenam
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Coordinator/src/com/sun/hotspot/igv/coordinator/
H A DGraphNode.java71 public void open() {
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DCustomFilter.java83 public void open() {
/openjdk7/jdk/make/tools/reorder/tools/
H A Dremove_mcount.c134 fd = open(fullName, O_RDWR);
136 fail("Unable to open ELF file %s.\n", fullName);
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions_visCPP.hpp175 #define open _open macro
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DSolarisOperatingSystem.c167 if ((fd = open(path, O_RDONLY)) < 0) {

Completed in 72 milliseconds

<<1112131415