HomeSort by relevance Sort by last modified time
    Searched refs:oflags (Results 1 - 18 of 18) 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 49 int flags, oflags; local
51 if ((flags = __sflags(mode, &oflags)) == 0)
55 if ((f = open(file, oflags, DEFFILEMODE)) < 0) {
75 if (oflags & O_APPEND)
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/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:__anon26333
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
comstats.h 65 unsigned long oflags; member in struct:__anon27924
  /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:__anon29438
  /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...]
  /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/bluetooth/bluedroid/bta/include/
bta_fs_co.h 145 int oflags; /* the flag to open the file */ member in struct:__anon2671
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);
  /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 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/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 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);
  /external/regex-re2/re2/
parse.cc 417 Regexp::ParseFlags oflags = flags_; local
420 flags_ = oflags;
    [all...]
  /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...]

Completed in 501 milliseconds