/external/iproute2/ip/ |
link_gre.c | 55 __u16 oflags = 0; local 110 oflags = rta_getattr_u16(greinfo[IFLA_GRE_OFLAGS]); 138 oflags |= GRE_KEY; 170 oflags |= GRE_KEY; 183 oflags |= GRE_SEQ; 187 oflags |= GRE_SEQ; 190 oflags |= GRE_CSUM; 194 oflags |= GRE_CSUM; 247 oflags |= GRE_KEY; 257 addattr_l(n, 1024, IFLA_GRE_OFLAGS, &oflags, 2) 276 unsigned oflags = 0; local [all...] |
/bionic/libc/upstream-freebsd/lib/libc/stdio/ |
fdopen.c | 53 int flags, oflags, fdflags, tmp; local 67 if ((flags = __sflags(mode, &oflags)) == 0) 74 if (tmp != O_RDWR && (tmp != (oflags & O_ACCMODE))) { 82 if ((oflags & O_CLOEXEC) && _fcntl(fd, F_SETFD, FD_CLOEXEC) == -1) { 93 if ((oflags & O_APPEND) && !(fdflags & O_APPEND))
|
fopen.c | 56 int flags, oflags; local 58 if ((flags = __sflags(mode, &oflags)) == 0) 62 if ((f = _open(file, oflags, DEFFILEMODE)) < 0) { 94 if (oflags & O_APPEND)
|
/bionic/libc/stdio/ |
freopen.c | 54 int flags, isopen, oflags, sverrno, wantfd; local 56 if ((flags = __sflags(mode, &oflags)) == 0) { 91 f = open(file, oflags, DEFFILEMODE); 97 f = open(file, oflags, DEFFILEMODE); 160 if (oflags & O_APPEND)
|
/external/bluetooth/bluedroid/btif/co/ |
bta_fs_co.c | 213 int oflags = 0; /* Initially read only */ local 217 oflags |= O_RDWR; 219 oflags |= O_WRONLY; 223 oflags |= O_CREAT; 226 oflags |= O_EXCL; 229 oflags |= O_TRUNC; 231 return (oflags); 311 ** oflags - permissions and mode (see constants above) 326 void bta_fs_co_open(const char *p_path, int oflags, UINT32 size, UINT16 evt, 336 /* Convert BTA oflags into os specific flags * [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
kernel_object.h | 59 // specified by the |oflags|. 62 int oflags,
|
kernel_object.cc | 92 int oflags, 102 error = (*out_mount)->Open(rel_parts, oflags, out_node);
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
comstats.h | 65 unsigned long oflags; member in struct:__anon37475
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
comstats.h | 65 unsigned long oflags; member in struct:__anon39066
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
comstats.h | 65 unsigned long oflags; member in struct:__anon40580
|
/system/core/sh/ |
redir.c | 180 int oflags = O_WRONLY|O_CREAT|O_TRUNC, eflags; local 208 oflags |= O_EXCL; 212 if ((f = open(fname, oflags, 0666)) < 0)
|
/external/chromium_org/third_party/sqlite/src/src/ |
test_demovfs.c | 415 int oflags = 0; /* flags to pass to open() call */ local 429 if( flags&SQLITE_OPEN_EXCLUSIVE ) oflags |= O_EXCL; 430 if( flags&SQLITE_OPEN_CREATE ) oflags |= O_CREAT; 431 if( flags&SQLITE_OPEN_READONLY ) oflags |= O_RDONLY; 432 if( flags&SQLITE_OPEN_READWRITE ) oflags |= O_RDWR; 435 p->fd = open(zName, oflags, 0600);
|
/external/bluetooth/bluedroid/bta/include/ |
bta_fs_co.h | 145 int oflags; /* the flag to open the file */ member in struct:__anon401 188 ** oflags - permissions and mode (see constants above) 202 BTA_API extern void bta_fs_co_open(const char *p_path, int oflags, UINT32 size, 608 ** oflags - permissions and mode (see constants above) 616 BTA_API extern void bta_fs_co_sess_fopen(const char *p_path, int oflags, UINT8 app_id);
|
/bionic/libc/netbsd/resolv/ |
res_query.c | 136 u_int oflags; local 138 oflags = statp->_flags; 168 ((oflags ^ statp->_flags) & RES_F_EDNS0ERR) != 0) {
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
UnixAPIChecker.cpp | 93 // Look at the 'oflags' argument for the O_CREAT flag. 102 // Now check if oflags has O_CREAT set. 110 NonLoc oflags = V.castAs<NonLoc>(); local 114 oflags, ocreateFlag,
|
/external/llvm/lib/Support/Unix/ |
Path.inc | 579 int oflags = (mode == readonly) ? O_RDONLY : O_RDWR; 580 int ofd = ::open(name.begin(), oflags); 722 int oflags = map_writable ? O_RDWR : O_RDONLY; 723 int ofd = ::open(name.begin(), oflags);
|
/external/mksh/src/ |
shf.c | 48 shf_open(const char *name, int oflags, int mode, int sflags) 64 fd = open(name, oflags, mode); 81 sflags |= (oflags & O_ACCMODE) == O_RDONLY ? SHF_RD : 82 ((oflags & O_ACCMODE) == O_WRONLY ? SHF_WR : SHF_RDWR);
|
/external/qemu/audio/ |
ossaudio.c | 272 int oflags = conf.exclusive ? O_EXCL : 0; local 280 oflags |= conf.try_mmap ? O_RDWR : (in ? O_RDONLY : O_WRONLY); 282 fd = open (dspname, oflags | O_NONBLOCK);
|
/external/valgrind/main/coregrind/m_coredump/ |
coredump-elf.c | 529 Int oflags = VKI_O_CREAT|VKI_O_WRONLY|VKI_O_EXCL|VKI_O_TRUNC; local 541 oflags |= VKI_O_LARGEFILE; 544 sres = VG_(open)(buf, oflags, VKI_S_IRUSR|VKI_S_IWUSR);
|
/system/core/toolbox/ |
dd.c | 187 #define OFLAGS \ 189 out.fd = open(out.name, O_RDWR | OFLAGS, DEFFILEMODE); 196 out.fd = open(out.name, O_WRONLY | OFLAGS, DEFFILEMODE);
|
/external/blktrace/btreplay/ |
btreplay.c | 1320 int oflags; local [all...] |
/external/chromium_org/third_party/re2/ |
ucs2.diff | 266 flags_ = oflags;
|
/external/regex-re2/ |
ucs2.diff | 266 flags_ = oflags;
|
/external/sonivox/arm-fm-22k/bin/ |
arm-fm-22k | |
/external/valgrind/main/coregrind/m_debuginfo/ |
debuginfo.c | 698 Int actual_fd, oflags; local 840 oflags = VKI_O_RDONLY; 842 oflags |= VKI_O_LARGEFILE; 846 SysRes fd = VG_(open)( filename, oflags, 0 ); [all...] |