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

1234

/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileChannelImpl.java82 public static FileChannel open(FileDescriptor fd, String path, method in class:FileChannelImpl
90 public static FileChannel open(FileDescriptor fd, String path, method in class:FileChannelImpl
851 throw new IOException("Channel not open for writing " +
892 // On Windows, and potentially other platforms, we need an open
/openjdk7/jdk/src/share/classes/sun/font/
H A DTrueTypeFont.java285 private synchronized FileChannel open() throws FontFormatException { method in class:TrueTypeFont
288 FontUtilities.getLogger().info("open TTF: " + platName);
319 open();
338 open();
347 * open() the file here, but in native the value
445 open();
491 open();
836 open();
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.hpp595 open, // initial edge state; unprocessed enumerator in enum:CFGEdge::__anon296
602 _from_pct(from_pct), _to_pct(to_pct), _state(open) {
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDirectAudioDevice.java425 // $$fb part of fix for 4679187: Clip.open() throws unexpected Exceptions
1044 public void open(AudioFormat format, byte[] data, int offset, int bufferSize) method in class:DirectAudioDevice.DirectClip
1047 // $$fb part of fix for 4679187: Clip.open() throws unexpected Exceptions
1052 open(format, newData, bufferSize / format.getFrameSize());
1056 private void open(AudioFormat format, byte[] data, int frameLength) method in class:DirectAudioDevice.DirectClip
1059 // $$fb part of fix for 4679187: Clip.open() throws unexpected Exceptions
1063 if (Printer.trace) Printer.trace("> DirectClip.open(format, data, frameLength)");
1068 throw new IllegalStateException("Clip is already open with format " + getFormat() +
1071 // if the line is not currently open, try to open i
1115 public void open(AudioInputStream stream) throws LineUnavailableException, IOException { method in class:DirectAudioDevice.DirectClip
[all...]
H A DSoftSynthesizer.java221 private boolean open = false; field in class:SoftSynthesizer
508 // if (external_channels == null) => the synthesizer is not open,
879 // we return how the synthesizer will be set on next open
880 // If info == null and synthesizer is open
882 boolean o = info == null && open;
1029 public void open() throws MidiUnavailableException { method in class:SoftSynthesizer
1036 open(null, null);
1039 public void open(SourceDataLine line, Map<String, Object> info) throws MidiUnavailableException { method in class:SoftSynthesizer
1077 line.open(getFormat(), bufferSize);
1133 "Can not open lin
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixNativeDispatcher.java66 * int open(const char* path, int oflag, mode_t mode)
68 static int open(UnixPath path, int flags, int mode) throws UnixException { method in class:UnixNativeDispatcher
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java877 open(i, 1);
2597 void open(int pos, int len) { method in class:XMLKit.Element
2607 // Reallocate and open up at parts[pos] to at least len empty places.
2645 open(pos, len);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1508 // For some reason we can't open /proc/self/stat (for example, running on
2134 int file_descriptor= ::open(filename, O_RDONLY | O_NONBLOCK);
2137 // Can't open library, report dlerror() message
2295 int fd = ::open(filename, O_RDONLY);
2876 int fd = ::open(buf, O_CREAT | O_RDWR, S_IRWXU);
5103 // Open a file. Unlink the file immediately after open returns
5107 int os::open(const char *path, int oflag, int mode) { function in class:os
5117 fd = ::open(path, oflag, mode);
5120 //If the open succeeded, the file might still be a directory
5181 return ::open(pat
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1316 // For some reason we can't open /proc/self/stat (for example, running on
1929 int file_descriptor= ::open(filename, O_RDONLY | O_NONBLOCK);
1932 // Can't open library, report dlerror() message
2117 int fd = ::open(filename, O_RDONLY);
2627 int fd = ::open(buf, O_CREAT | O_RDWR, S_IRWXU);
3011 if ((fd = ::open("/proc/self/maps", O_RDONLY)) < 0) {
4890 // Open a file. Unlink the file immediately after open returns
4894 int os::open(const char *path, int oflag, int mode) { function in class:os
4907 //If the open succeeded, the file might still be a directory
5146 // then we open /pro
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1766 int fd = ::open("/proc/self/ctl", O_WRONLY);
1780 int fd = ::open("/proc/self/status", O_RDONLY);
2102 int file_descriptor= ::open(filename, O_RDONLY | O_NONBLOCK);
2105 // Can't open library, report dlerror() message
2226 int fd = ::open(filename, O_RDONLY);
2283 int fd = ::open("/proc/self/map",O_RDONLY);
5082 lwpFile = ::open("/proc/self/lstatus", O_RDONLY, 0);
5084 if (ThreadPriorityVerbose) warning ("Couldn't open /proc/self/lstatus\n");
5308 int fd = ::open("/dev/zero", O_RDWR);
5310 fatal(err_msg("os::init: cannot open /de
5606 int os::open(const char *path, int oflag, int mode) { function in class:os
[all...]
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp1472 int file_descriptor=::open(name, O_RDONLY | O_BINARY, 0);
4103 int os::open(const char *path, int oflag, int mode) { function in class:os
4111 return ::open(pathbuf, oflag | O_BINARY | O_NOINHERIT, mode);
4131 return ::open(path, oflags, _S_IREAD | _S_IWRITE);
4598 int fd = ::open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0666);
4607 "Could not open pause file '%s', continuing immediately.\n", filename);
4629 // permit a process to have hundreds of thousands of open handles.

Completed in 151 milliseconds

1234