Home
last modified time | relevance | path

Searched refs:oflag (Results 1 – 3 of 3) sorted by relevance

/ndk/sources/host-tools/ndk-stack/elff/
Dmapfile.c33 mapfile_open(const char* path, int oflag, int share_mode) in mapfile_open() argument
42 if ((oflag & O_RDWR) == O_RDWR) { in mapfile_open()
44 } else if ((oflag & O_ACCMODE) == O_RDONLY) { in mapfile_open()
46 } else if ((oflag & O_WRONLY) == O_WRONLY) { in mapfile_open()
60 if ((oflag & O_CREAT) == O_CREAT) { in mapfile_open()
61 if ((oflag & O_EXCL) == O_EXCL) { in mapfile_open()
66 } if ((oflag & O_TRUNC) == O_TRUNC) { in mapfile_open()
75 if ((oflag & O_DSYNC) == O_DSYNC || in mapfile_open()
76 (oflag & O_RSYNC) == O_RSYNC || in mapfile_open()
77 (oflag & O_RSYNC) == O_SYNC) { in mapfile_open()
[all …]
Dmapfile.h56 extern MapFile* mapfile_open(const char* path, int oflag, int share_mode);
/ndk/sources/android/support/src/musl-locale/
Dcatopen.c3 nl_catd catopen (const char *name, int oflag) in catopen() argument