Searched defs:oflag (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DInheritedChannel.c121 Java_sun_nio_ch_InheritedChannel_open0(JNIEnv *env, jclass cla, jstring path, jint oflag) argument
127 switch (oflag) {
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DInheritedChannel.java46 // oflag values when opening a file
231 private static native int open0(String path, int oflag) throws IOException; argument
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp239 extern "C" int libsaproc_open(const char * name, int oflag, ...) { argument
240 if (oflag == O_RDONLY) {
278 va_start(ap, oflag);
282 return open(name, oflag, mode);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp5104 // if the specified oflag has the O_DELETE flag set.
5107 int os::open(const char *path, int oflag, int mode) { argument
5114 int o_delete = (oflag & O_DELETE);
5115 oflag = oflag & ~O_DELETE;
5117 fd = ::open(path, oflag, mode);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp4891 // if the specified oflag has the O_DELETE flag set.
4894 int os::open(const char *path, int oflag, int mode) { argument
4901 int o_delete = (oflag & O_DELETE);
4902 oflag = oflag & ~O_DELETE;
4904 fd = ::open64(path, oflag, mode);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp5603 // if the specified oflag has the O_DELETE flag set.
5606 int os::open(const char *path, int oflag, int mode) { argument
5612 int o_delete = (oflag & O_DELETE);
5613 oflag = oflag & ~O_DELETE;
5615 fd = ::open64(path, oflag, mode);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp4103 int os::open(const char *path, int oflag, int mode) { argument
4111 return ::open(pathbuf, oflag | O_BINARY | O_NOINHERIT, mode);

Completed in 89 milliseconds