/external/iproute2/ip/ |
D | link_gre.c | 55 __u16 oflags = 0; in gre_parse_opt() local 110 oflags = rta_getattr_u16(greinfo[IFLA_GRE_OFLAGS]); in gre_parse_opt() 138 oflags |= GRE_KEY; in gre_parse_opt() 170 oflags |= GRE_KEY; in gre_parse_opt() 183 oflags |= GRE_SEQ; in gre_parse_opt() 187 oflags |= GRE_SEQ; in gre_parse_opt() 190 oflags |= GRE_CSUM; in gre_parse_opt() 194 oflags |= GRE_CSUM; in gre_parse_opt() 247 oflags |= GRE_KEY; in gre_parse_opt() 257 addattr_l(n, 1024, IFLA_GRE_OFLAGS, &oflags, 2); in gre_parse_opt() [all …]
|
/external/bluetooth/bluedroid/btif/co/ |
D | bta_fs_co.c | 214 int oflags = 0; /* Initially read only */ in bta_fs_convert_bta_oflags() local 218 oflags |= O_RDWR; in bta_fs_convert_bta_oflags() 220 oflags |= O_WRONLY; in bta_fs_convert_bta_oflags() 224 oflags |= O_CREAT; in bta_fs_convert_bta_oflags() 227 oflags |= O_EXCL; in bta_fs_convert_bta_oflags() 230 oflags |= O_TRUNC; in bta_fs_convert_bta_oflags() 232 return (oflags); in bta_fs_convert_bta_oflags() 327 void bta_fs_co_open(const char *p_path, int oflags, UINT32 size, UINT16 evt, in bta_fs_co_open() argument 338 oflags = bta_fs_convert_bta_oflags(oflags); in bta_fs_co_open() 341 if (oflags & (O_RDWR|O_WRONLY)) in bta_fs_co_open() [all …]
|
/external/chromium_org/third_party/sqlite/src/src/ |
D | test_demovfs.c | 415 int oflags = 0; /* flags to pass to open() call */ in demoOpen() local 429 if( flags&SQLITE_OPEN_EXCLUSIVE ) oflags |= O_EXCL; in demoOpen() 430 if( flags&SQLITE_OPEN_CREATE ) oflags |= O_CREAT; in demoOpen() 431 if( flags&SQLITE_OPEN_READONLY ) oflags |= O_RDONLY; in demoOpen() 432 if( flags&SQLITE_OPEN_READWRITE ) oflags |= O_RDWR; in demoOpen() 435 p->fd = open(zName, oflags, 0600); in demoOpen()
|
/external/bluetooth/bluedroid/bta/include/ |
D | bta_fs_co.h | 145 int oflags; /* the flag to open the file */ member 202 BTA_API extern void bta_fs_co_open(const char *p_path, int oflags, UINT32 size, 616 BTA_API extern void bta_fs_co_sess_fopen(const char *p_path, int oflags, UINT8 app_id);
|
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
D | kernel_object.cc | 95 int oflags, in AcquireFsAndNode() argument 105 error = (*out_fs)->Open(rel_parts, oflags, out_node); in AcquireFsAndNode()
|
D | kernel_object.h | 65 int oflags,
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | UnixAPIChecker.cpp | 105 NonLoc oflags = V.castAs<NonLoc>(); in CheckOpen() local 109 oflags, ocreateFlag, in CheckOpen()
|
/external/mksh/src/ |
D | shf.c | 49 shf_open(const char *name, int oflags, int mode, int sflags) in shf_open() argument 65 fd = open(name, oflags, mode); in shf_open() 86 sflags |= (oflags & O_ACCMODE) == O_RDONLY ? SHF_RD : in shf_open() 87 ((oflags & O_ACCMODE) == O_WRONLY ? SHF_WR : SHF_RDWR); in shf_open()
|
/external/qemu/audio/ |
D | ossaudio.c | 272 int oflags = conf.exclusive ? O_EXCL : 0; in oss_open() local 280 oflags |= conf.try_mmap ? O_RDWR : (in ? O_RDONLY : O_WRONLY); in oss_open() 282 fd = open (dspname, oflags | O_NONBLOCK); in oss_open()
|
/external/blktrace/btreplay/ |
D | btreplay.c | 1320 int oflags; in replay_sub() local 1327 oflags = O_NOATIME; in replay_sub() 1329 oflags = 0; in replay_sub() 1331 tip->ofd = open(path, O_RDWR | O_DIRECT | oflags); in replay_sub()
|
/external/valgrind/main/coregrind/m_coredump/ |
D | coredump-elf.c | 551 Int oflags = VKI_O_CREAT|VKI_O_WRONLY|VKI_O_EXCL|VKI_O_TRUNC; in make_elf_coredump() local 563 oflags |= VKI_O_LARGEFILE; in make_elf_coredump() 566 sres = VG_(open)(buf, oflags, VKI_S_IRUSR|VKI_S_IWUSR); in make_elf_coredump()
|
/external/llvm/lib/Support/Unix/ |
D | Path.inc | 521 int oflags = (mode == readonly) ? O_RDONLY : O_RDWR; 522 int ofd = ::open(name.begin(), oflags);
|
/external/kernel-headers/original/uapi/rdma/ |
D | ib_user_verbs.h | 251 __u32 oflags; member
|
/external/valgrind/main/coregrind/m_debuginfo/ |
D | debuginfo.c | 700 Int actual_fd, oflags; in VG_() local 853 oflags = VKI_O_RDONLY; in VG_() 855 oflags |= VKI_O_LARGEFILE; in VG_() 859 SysRes fd = VG_(open)( filename, oflags, 0 ); in VG_()
|
/external/regex-re2/re2/ |
D | parse.cc | 417 Regexp::ParseFlags oflags = flags_; in PushDollar() local 420 flags_ = oflags; in PushDollar()
|
/external/chromium_org/third_party/re2/re2/ |
D | parse.cc | 417 Regexp::ParseFlags oflags = flags_; in PushDollar() local 420 flags_ = oflags; in PushDollar()
|
/external/chromium_org/third_party/re2/ |
D | ucs2.diff | 266 flags_ = oflags;
|
/external/regex-re2/ |
D | ucs2.diff | 266 flags_ = oflags;
|