HomeSort by relevance Sort by last modified time
    Searched defs:oflags (Results 1 - 11 of 11) sorted by null

  /bionic/libc/stdio/
fopen.c 47 int flags, oflags; local
49 if ((flags = __sflags(mode, &oflags)) == 0)
53 if ((f = open(file, oflags, DEFFILEMODE)) < 0) {
73 if (oflags & O_APPEND)
fdopen.c 45 int flags, oflags, fdflags, tmp; local
47 if ((flags = __sflags(mode, &oflags)) == 0)
54 if (tmp != O_RDWR && (tmp != (oflags & O_ACCMODE))) {
67 if ((oflags & O_APPEND) && !(fdflags & O_APPEND))
freopen.c 52 int flags, isopen, oflags, sverrno, wantfd; local
54 if ((flags = __sflags(mode, &oflags)) == 0) {
89 f = open(file, oflags, DEFFILEMODE);
95 f = open(file, oflags, DEFFILEMODE);
158 if (oflags & O_APPEND)
  /external/clang/lib/StaticAnalyzer/Checkers/
UnixAPIChecker.cpp 76 // Look at the 'oflags' argument for the O_CREAT flag.
85 // Now check if oflags has O_CREAT set.
93 NonLoc oflags = cast<NonLoc>(V); local
98 oflags, ocreateFlag,
  /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/iproute2/ip/
link_gre.c 55 __u16 oflags = 0; local
110 oflags = *(__u16 *)RTA_DATA(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...]
  /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)
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
comstats.h 65 unsigned long oflags; member in struct:__anon20919
  /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/blktrace/btreplay/
btreplay.c 1320 int oflags; local
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
debuginfo.c 677 Int nread, oflags; local
801 oflags = VKI_O_RDONLY;
803 oflags |= VKI_O_LARGEFILE;
805 fd = VG_(open)( filename, oflags, 0 );
    [all...]

Completed in 138 milliseconds