HomeSort by relevance Sort by last modified time
    Searched refs:oflag (Results 1 - 25 of 36) sorted by null

1 2

  /external/clang/test/CodeGen/
pr13168.c 3 typedef int (*_MD_Open64)(int oflag, ...);
  /external/bison/lib/
spawn_faction_addopen.c 37 int fd, const char *path, int oflag,
48 return posix_spawn_file_actions_addopen (file_actions, fd, path, oflag, mode);
64 rec->action.open_action.oflag = oflag;
spawn_int.h 44 int oflag; member in struct:__spawn_action::__anon2324::__anon2327
spawn-pipe.c 78 nonintr_open (const char *pathname, int oflag, mode_t mode)
83 retval = open (pathname, oflag, mode);
  /ndk/sources/cxx-stl/llvm-libc++/src/support/android/
nl_types_support.c 7 nl_catd catopen(const char* name, int oflag) {
  /external/qemu/android/utils/
mapfile.c 33 mapfile_open(const char* path, int oflag, int share_mode)
42 if ((oflag & O_RDWR) == O_RDWR) {
44 } else if ((oflag & O_ACCMODE) == O_RDONLY) {
46 } else if ((oflag & O_WRONLY) == O_WRONLY) {
60 if ((oflag & O_CREAT) == O_CREAT) {
61 if ((oflag & O_EXCL) == O_EXCL) {
66 } if ((oflag & O_TRUNC) == O_TRUNC) {
75 if ((oflag & O_DSYNC) == O_DSYNC ||
76 (oflag & O_RSYNC) == O_RSYNC ||
77 (oflag & O_RSYNC) == O_SYNC)
    [all...]
mapfile.h 48 * oflag - Defines mode in which file is to be opened. This value follows the
56 extern MapFile* mapfile_open(const char* path, int oflag, int share_mode);
  /ndk/sources/host-tools/ndk-stack/elff/
mapfile.c 33 mapfile_open(const char* path, int oflag, int share_mode)
42 if ((oflag & O_RDWR) == O_RDWR) {
44 } else if ((oflag & O_ACCMODE) == O_RDONLY) {
46 } else if ((oflag & O_WRONLY) == O_WRONLY) {
60 if ((oflag & O_CREAT) == O_CREAT) {
61 if ((oflag & O_EXCL) == O_EXCL) {
66 } if ((oflag & O_TRUNC) == O_TRUNC) {
75 if ((oflag & O_DSYNC) == O_DSYNC ||
76 (oflag & O_RSYNC) == O_RSYNC ||
77 (oflag & O_RSYNC) == O_SYNC)
    [all...]
mapfile.h 48 * oflag - Defines mode in which file is to be opened. This value follows the
56 extern MapFile* mapfile_open(const char* path, int oflag, int share_mode);
  /hardware/samsung_slsi/exynos5/libv4l2/
exynos_subdev.c 45 static int __subdev_open(const char *filename, int oflag, va_list ap)
50 if (oflag & O_CREAT)
53 fd = open(filename, oflag, mode);
58 int exynos_subdev_open(const char *filename, int oflag, ...)
63 va_start(ap, oflag);
64 fd = __subdev_open(filename, oflag, ap);
70 int exynos_subdev_open_devname(const char *devname, int oflag, ...)
119 va_start(ap, oflag);
120 fd = __subdev_open(filename, oflag, ap);
exynos_v4l2.c 78 static int __v4l2_open(const char *filename, int oflag, va_list ap)
83 if (oflag & O_CREAT)
86 fd = open(filename, oflag, mode);
91 int exynos_v4l2_open(const char *filename, int oflag, ...)
98 va_start(ap, oflag);
99 fd = __v4l2_open(filename, oflag, ap);
107 int exynos_v4l2_open_devname(const char *devname, int oflag, ...)
158 va_start(ap, oflag);
159 fd = __v4l2_open(filename, oflag, ap);
  /external/valgrind/main/drd/tests/
sem_open_traced.stderr.exp 2 [1] sem_open 0x........ name drd-sem-open-test oflag 0x........ mode 0600 value 1
  /external/valgrind/main/drd/
drd_semaphore.h 45 const Char* name, const Word oflag,
drd_semaphore.c 248 const Char* name, const Word oflag,
256 " oflag %#lx mode %#lo value %u",
258 semaphore, name, oflag, mode, value);
drd_pthread_intercepts.c     [all...]
  /hardware/samsung_slsi/exynos5/include/
exynos_v4l2.h 48 int exynos_v4l2_open(const char *filename, int oflag, ...);
50 int exynos_v4l2_open_devname(const char *devname, int oflag, ...);
102 int exynos_subdev_open(const char *filename, int oflag, ...);
104 int exynos_subdev_open_devname(const char *devname, int oflag, ...);
  /system/core/toolbox/grep/
util.c 344 if ((color != NULL && !oflag) || qflag || lflag)
353 if ((color != NULL && !oflag) || qflag || lflag)
472 if ((oflag || color) && m > 0) {
474 if (!oflag)
486 if (oflag)
489 if (!oflag) {
grep.h 122 bflag, cflag, hflag, iflag, lflag, mflag, nflag, oflag,
  /bionic/libc/bionic/
semaphore.c 129 sem_t *sem_open(const char *name, int oflag, ...)
132 oflag=oflag;
  /external/yaffs2/yaffs2/direct/
yaffsfs.c 336 int yaffs_open(const char *path, int oflag, int mode)
352 // todo sanity check oflag (eg. can't have O_TRUNC without WRONLY or RDWR
394 if(((oflag & O_EXCL) && alreadyOpen) || alreadyExclusive)
400 if((oflag & O_EXCL) && (oflag & O_CREAT))
408 if( (oflag & (O_RDWR | O_WRONLY)) == 0 && // ie O_RDONLY
414 if( (oflag & O_RDWR) &&
420 if( (oflag & (O_RDWR | O_WRONLY)) &&
428 else if((oflag & O_CREAT))
446 h->readOnly = (oflag & (O_WRONLY | O_RDWR)) ? 0 : 1
    [all...]
yaffsfs.h 175 int yaffs_open(const char *path, int oflag, int mode) ;
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 56 inline static int oflag(FileHandle::OpenMode pMode) function
103 m_Handler = sys::fs::detail::open(pPath, oflag(pMode));
105 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), (int)pPerm);
  /external/zlib/src/
gzlib.c 98 int oflag; local
214 oflag =
237 fd == -2 ? _wopen(path, oflag, 0666) :
239 open(path, oflag, 0666));
  /system/core/toolbox/
newfs_msdos.c 256 int Iflag = 0, mflag = 0, oflag = 0; local
348 oflag = 1;
412 if (oflag)
414 if (!(opt_f || (opt_h && opt_u && opt_S && opt_s && oflag))) {
416 getdiskinfo(fd, fname, dtype, oflag, &bpb);
785 getdiskinfo(int fd, const char *fname, const char *dtype, __unused int oflag,
828 getdiskinfo(int fd, const char *fname, const char *dtype, __unused int oflag,
  /external/kernel-headers/original/linux/
audit.h 537 extern void __audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr);
579 static inline void audit_mq_open(int oflag, umode_t mode, struct mq_attr *attr)
582 __audit_mq_open(oflag, mode, attr);

Completed in 478 milliseconds

1 2