| /netbsd-src/external/gpl3/gdb/dist/gnulib/import/ |
| H A D | open.c | 118 || (flags & O_ACCMODE) == O_RDWR in open() 119 || (flags & O_ACCMODE) == O_WRONLY) in open() 158 && ((flags & O_ACCMODE) == O_RDONLY in open() 159 || (O_SEARCH != O_RDONLY && (flags & O_ACCMODE) == O_SEARCH))) in open()
|
| H A D | fcntl.in.h | 378 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) 379 # undef O_ACCMODE 380 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH)
|
| H A D | openat.c | 104 || (flags & O_ACCMODE) == O_RDWR in rpl_openat() 105 || (flags & O_ACCMODE) == O_WRONLY) in rpl_openat()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/ |
| H A D | fcntl.d | 375 enum O_ACCMODE = (3|O_SEARCH); in version() local 379 enum O_ACCMODE = 0x3; in version() local 427 enum O_ACCMODE = 0x0003; in version() local 475 enum O_ACCMODE = 0x0003; 534 enum O_ACCMODE = 0x0003; 603 enum O_ACCMODE = 0x0003; 625 enum O_ACCMODE = 0x0003; 755 enum O_ACCMODE = (O_SEARCH | O_EXEC | 0x3);
|
| /netbsd-src/external/gpl3/binutils.old/dist/ld/ |
| H A D | sysdep.h | 77 #ifndef O_ACCMODE 78 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) macro
|
| /netbsd-src/external/gpl3/binutils/dist/ld/ |
| H A D | sysdep.h | 73 #ifndef O_ACCMODE 74 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) macro
|
| /netbsd-src/external/gpl3/binutils.old/dist/bfd/hosts/ |
| H A D | alphavms.h | 48 #ifndef O_ACCMODE 49 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) macro
|
| /netbsd-src/external/gpl3/binutils/dist/bfd/hosts/ |
| H A D | alphavms.h | 48 #ifndef O_ACCMODE 49 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) macro
|
| /netbsd-src/lib/libc/stdio/ |
| H A D | fdopen.c | 89 tmp = fdflags & O_ACCMODE; in __weak_alias() 90 if (tmp != O_RDWR && (tmp != (oflags & O_ACCMODE))) { in __weak_alias()
|
| /netbsd-src/external/gpl3/binutils.old/dist/bfd/ |
| H A D | sysdep.h | 74 #ifndef O_ACCMODE 75 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) macro
|
| /netbsd-src/external/gpl3/binutils/dist/bfd/ |
| H A D | sysdep.h | 74 #ifndef O_ACCMODE 75 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) macro
|
| /netbsd-src/external/gpl2/xcvs/dist/src/ |
| H A D | myndbm.c | 30 # ifndef O_ACCMODE 31 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR) macro 45 fp = CVS_FOPEN (file, (flags & O_ACCMODE) != O_RDONLY in mydbm_open()
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/hdb/ |
| H A D | db.c | 285 if ((flags & O_ACCMODE) == O_RDONLY) in _open_db() 300 if ((flags & O_ACCMODE) == O_RDONLY) in _open_db() 331 if((flags & O_ACCMODE) == O_RDONLY) in DB_open() 342 (flags & O_ACCMODE) == O_RDONLY ? in DB_open()
|
| H A D | hdb-mdb.c | 301 if((flags & O_ACCMODE) == O_RDONLY) in DB_open() 357 if((flags & O_ACCMODE) == O_RDONLY) in DB_open() 366 (flags & O_ACCMODE) == O_RDONLY ? in DB_open()
|
| /netbsd-src/lib/libc/db/recno/ |
| H A D | rec_open.c | 128 switch (flags & O_ACCMODE) { in __rec_open() 141 switch (flags & O_ACCMODE) { in __rec_open()
|
| /netbsd-src/sys/sys/ |
| H A D | fcntl.h | 67 #define O_ACCMODE 0x00000003 /* mask for above modes */ macro 133 #define O_MASK (O_ACCMODE|O_NONBLOCK|O_APPEND|O_SHLOCK|O_EXLOCK|\
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/sparc64/gnulib/import/ |
| H A D | fcntl.h | 889 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) 890 # undef O_ACCMODE 891 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) macro
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/riscv32/gnulib/import/ |
| H A D | fcntl.h | 889 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) 890 # undef O_ACCMODE 891 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) macro
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/arm/gnulib/import/ |
| H A D | fcntl.h | 889 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) 890 # undef O_ACCMODE 891 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) macro
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/mipsn64el/gnulib/import/ |
| H A D | fcntl.h | 889 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) 890 # undef O_ACCMODE 891 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) macro
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/m68000/gnulib/import/ |
| H A D | fcntl.h | 889 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) 890 # undef O_ACCMODE 891 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) macro
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/mipseb/gnulib/import/ |
| H A D | fcntl.h | 889 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) 890 # undef O_ACCMODE 891 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) macro
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/alpha/gnulib/import/ |
| H A D | fcntl.h | 889 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) 890 # undef O_ACCMODE 891 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) macro
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/sh3el/gnulib/import/ |
| H A D | fcntl.h | 889 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) 890 # undef O_ACCMODE 891 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) macro
|
| /netbsd-src/external/gpl3/gdb/lib/libgnulib/arch/mips64el/gnulib/import/ |
| H A D | fcntl.h | 889 #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) 890 # undef O_ACCMODE 891 # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) macro
|