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

1 2

  /external/clang/test/CodeGen/
pr13168.c 3 typedef int (*_MD_Open64)(int oflag, ...);
  /ndk/sources/android/support/src/musl-locale/
catopen.c 3 nl_catd catopen (const char *name, int oflag)
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
sem_open.c 54 sem_open (const char *name, int oflag, mode_t mode, unsigned int value)
semaphore.h 151 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::__anon2760::__anon2763
  /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);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_win.cc 120 int _open(const char* path, int oflag, ...) {
126 if (oflag & _O_CREAT) {
127 va_start(list, oflag);
132 return ki_open(path, oflag);
135 int _sopen(const char* path, int oflag, int shflag) {
136 return ki_open(path, oflag);
139 errno_t _sopen_s(int* pfh, const char* path, int oflag, int shflag, int pmode) {
140 *pfh = ki_open(path, oflag);
251 int _real_open(const char* pathname, int oflag, mode_t cmode, int* newfd) {
kernel_wrap_real.h 22 int _real_open(const char* pathname, int oflag, mode_t cmode, int* newfd);
kernel_wrap_newlib.cc 108 int WRAP(open)(const char* pathname, int oflag, mode_t cmode, int* newfd) {
109 *newfd = ki_open(pathname, oflag);
171 int _real_open(const char* pathname, int oflag, mode_t cmode, int* newfd) {
172 return REAL(open)(pathname, oflag, cmode, newfd);
kernel_wrap_glibc.cc 229 int WRAP(open)(const char* pathname, int oflag, mode_t cmode, int* newfd) {
230 *newfd = ki_open(pathname, oflag);
352 int _real_open(const char* pathname, int oflag, mode_t cmode, int* newfd) {
353 return REAL(open)(pathname, oflag, cmode, newfd);
  /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,
  /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, ...);
  /frameworks/compile/mclinker/lib/Support/
FileHandle.cpp 42 inline static int oflag(FileHandle::OpenMode pMode) function
89 m_Handler = sys::fs::detail::open(pPath, oflag(pMode));
91 m_Handler = sys::fs::detail::open(pPath, oflag(pMode), (int)pPerm);
  /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) {
  /bionic/libc/bionic/
semaphore.c 129 sem_t *sem_open(const char *name, int oflag, ...)
132 oflag=oflag;
  /external/chromium_org/chrome/installer/mini_installer/
decompress.cc 72 if (oflag & _O_RDWR) {
74 } else if (oflag & _O_WRONLY) {
80 if (oflag & _O_CREAT) {
  /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) ;

Completed in 320 milliseconds

1 2