Searched defs:O_DELETE (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp5099 #ifndef O_DELETE
5100 #define O_DELETE 0x10000 macro
5104 // if the specified oflag has the O_DELETE flag set.
5105 // O_DELETE is used only in j2se/src/share/native/java/util/zip/ZipFile.c
5114 int o_delete = (oflag & O_DELETE);
5115 oflag = oflag & ~O_DELETE;
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp4886 #ifndef O_DELETE
4887 #define O_DELETE 0x10000 macro
4891 // if the specified oflag has the O_DELETE flag set.
4892 // O_DELETE is used only in j2se/src/share/native/java/util/zip/ZipFile.c
4901 int o_delete = (oflag & O_DELETE);
4902 oflag = oflag & ~O_DELETE;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp5598 #ifndef O_DELETE
5599 #define O_DELETE 0x10000 macro
5603 // if the specified oflag has the O_DELETE flag set.
5604 // O_DELETE is used only in j2se/src/share/native/java/util/zip/ZipFile.c
5612 int o_delete = (oflag & O_DELETE);
5613 oflag = oflag & ~O_DELETE;

Completed in 105 milliseconds