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

  /bionic/libc/stdio/
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))
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)
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/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...]
  /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:__anon23052
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
comstats.h 65 unsigned long oflags; member in struct:__anon24642
  /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:__anon26154
  /bionic/libc/netbsd/resolv/
res_query.c 136 u_int oflags; local
138 oflags = statp->_flags;
168 ((oflags ^ statp->_flags) & RES_F_EDNS0ERR) != 0) {
  /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/clang/lib/StaticAnalyzer/Checkers/
UnixAPIChecker.cpp 92 // Look at the 'oflags' argument for the O_CREAT flag.
101 // Now check if oflags has O_CREAT set.
109 NonLoc oflags = cast<NonLoc>(V); local
114 oflags, ocreateFlag,
  /external/blktrace/btreplay/
btreplay.c 1320 int oflags; local
    [all...]
  /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 512 Int oflags = VKI_O_CREAT|VKI_O_WRONLY|VKI_O_EXCL|VKI_O_TRUNC; local
524 oflags |= VKI_O_LARGEFILE;
527 sres = VG_(open)(buf, oflags, VKI_S_IRUSR|VKI_S_IWUSR);
  /external/regex-re2/re2/
parse.cc 418 Regexp::ParseFlags oflags = flags_; local
421 flags_ = oflags;
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
debuginfo.c 680 Int actual_fd, oflags; local
825 oflags = VKI_O_RDONLY;
827 oflags |= VKI_O_LARGEFILE;
831 SysRes fd = VG_(open)( filename, oflags, 0 );
    [all...]

Completed in 484 milliseconds