Searched refs:oflags (Results 1 - 10 of 10) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Stdio/
H A Dfdopen.c68 int flags, oflags, fdflags, tmp; local
72 if ((flags = __sflags(mode, &oflags)) == 0)
79 if (tmp != O_RDWR && (tmp != (oflags & O_ACCMODE))) {
84 if (oflags & O_NONBLOCK) {
103 if ((oflags & O_APPEND) && !(fdflags & O_APPEND))
H A Dfopen.c64 int flags, oflags; local
67 if ((flags = __sflags(mode, &oflags)) == 0)
71 if ((f = open(file, oflags, DEFFILEMODE)) < 0)
73 if (oflags & O_NONBLOCK) {
103 if (oflags & O_APPEND)
H A Dfreopen.c71 int flags, isopen, oflags, sverrno, wantfd; local
81 if ((flags = __sflags(mode, &oflags)) == 0) {
114 f = open(file, oflags, DEFFILEMODE);
120 f = open(file, oflags, DEFFILEMODE);
154 if (oflags & O_NONBLOCK) {
197 if (oflags & O_APPEND)
/vbox/src/VBox/Devices/EFI/Firmware/StdLibPrivateInternalFiles/Include/Efi/
H A DSysEfi.h27 Oflags2EFI( int oflags);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/
H A DXform.c41 Oflags2EFI( int oflags )
46 flags = (UINT64)((oflags & O_ACCMODE) + 1); // Handle the Read/Write flags
51 if(oflags & (O_CREAT | O_TRUNC)) { // Now add the Create flag.
H A DSysCalls.c585 int oflags,
619 filp->Oflags = oflags;
583 open( const char *path, int oflags, int mode ) argument
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/sys/
H A DEfiSysCall.h34 int open (const char *name, int oflags, int mode);
228 @param[in] oflags Flags as defined in fcntl.h.
233 int open (const char *name, int oflags, int mode);
H A Dfcntl.h157 are set according to the value of oflags.
159 Values for oflags are constructed by a bitwise-inclusive OR of flags from
161 exactly one of { O_RDONLY, O_RDWR, O_WRONLY } in the value of oflags.
163 also be specified in oflags.
169 @param[in] oflags File status flags and file access modes of the
181 @retval EINVAL Bad value specified for oflags or mode.
186 int open(const char *Path, int oflags, int mode);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Uefi/Devices/UefiShell/
H A DdaShell.c474 int oflags; local
482 // Convert oflags to Attributes
483 oflags = filp->Oflags;
484 OpenMode = Oflags2EFI(oflags);
515 if((oflags & O_TRUNC) || ((oflags & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
519 if(oflags & O_TRUNC) {
535 else if((oflags & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT)) {
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/cmd/jdtrace/
H A DJDTrace.java689 Consumer.OpenFlag[] oflags = new Consumer.OpenFlag[openFlags.size()];
690 oflags = openFlags.toArray(oflags);
705 dtrace.open(oflags);

Completed in 126 milliseconds