Searched refs:oflags (Results 1 - 16 of 16) sorted by relevance

/external/iproute2/ip/
H A Dlink_gre.c55 __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,
276 unsigned oflags = 0; local
[all...]
/external/bluetooth/bluedroid/btif/co/
H A Dbta_fs_co.c214 int oflags = 0; /* Initially read only */ local
218 oflags |= O_RDWR;
220 oflags |= O_WRONLY;
224 oflags |= O_CREAT;
227 oflags |= O_EXCL;
230 oflags |= O_TRUNC;
232 return (oflags);
312 ** oflags - permissions and mode (see constants above)
327 void bta_fs_co_open(const char *p_path, int oflags, UINT32 size, UINT16 evt, argument
337 /* Convert BTA oflags int
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_demovfs.c415 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/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_object.h62 // specified by the |oflags|.
65 int oflags, mode_t mflags,
H A Dkernel_object.cc102 int oflags, mode_t mflags,
112 error = (*out_fs)->OpenWithMode(rel_parts, oflags, mflags, out_node);
101 AcquireFsAndNode(const std::string& path, int oflags, mode_t mflags, ScopedFilesystem* out_fs, ScopedNode* out_node) argument
/external/bluetooth/bluedroid/bta/include/
H A Dbta_fs_co.h145 int oflags; /* the flag to open the file */ member in struct:__anon761
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);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp88 // Look at the 'oflags' argument for the O_CREAT flag.
97 // Now check if oflags has O_CREAT set.
105 NonLoc oflags = V.castAs<NonLoc>(); local
109 oflags, ocreateFlag,
/external/blktrace/btreplay/
H A Dbtreplay.c1320 int oflags; local
1327 oflags = O_NOATIME;
1329 oflags = 0;
1331 tip->ofd = open(path, O_RDWR | O_DIRECT | oflags);
/external/llvm/lib/Support/Unix/
H A DPath.inc521 int oflags = (mode == readonly) ? O_RDONLY : O_RDWR;
522 int ofd = ::open(name.begin(), oflags);
/external/mksh/src/
H A Dshf.c49 shf_open(const char *name, int oflags, int mode, int sflags) argument
65 fd = open(name, oflags | O_BINARY, mode);
86 sflags |= (oflags & O_ACCMODE) == O_RDONLY ? SHF_RD :
87 ((oflags & O_ACCMODE) == O_WRONLY ? SHF_WR : SHF_RDWR);
/external/qemu/audio/
H A Dossaudio.c272 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/
H A Dcoredump-elf.c551 Int oflags = VKI_O_CREAT|VKI_O_WRONLY|VKI_O_EXCL|VKI_O_TRUNC; local
563 oflags |= VKI_O_LARGEFILE;
566 sres = VG_(open)(buf, oflags, VKI_S_IRUSR|VKI_S_IWUSR);
/external/kernel-headers/original/uapi/rdma/
H A Dib_user_verbs.h251 __u32 oflags; member in struct:ib_uverbs_open_xrcd
/external/chromium_org/third_party/re2/re2/
H A Dparse.cc417 Regexp::ParseFlags oflags = flags_; local
420 flags_ = oflags;
/external/regex-re2/re2/
H A Dparse.cc417 Regexp::ParseFlags oflags = flags_; local
420 flags_ = oflags;
/external/valgrind/main/coregrind/m_debuginfo/
H A Ddebuginfo.c700 Int actual_fd, oflags; local
853 oflags = VKI_O_RDONLY;
855 oflags |= VKI_O_LARGEFILE;
859 SysRes fd = VG_(open)( filename, oflags, 0 );

Completed in 312 milliseconds