Searched defs:open_flags (Results 1 - 3 of 3) sorted by relevance

/system/core/trusty/storage/proxy/
H A Dstorage.c52 static uint32_t insert_fd(int open_flags, int fd) argument
56 if (open_flags & O_CREAT) {
62 if (open_flags & O_TRUNC) {
67 if (open_flags & (O_TRUNC | O_CREAT)) {
244 int open_flags = O_RDWR; local
247 open_flags |= O_TRUNC;
253 open_flags |= O_CREAT | O_EXCL;
254 rc = TEMP_FAILURE_RETRY(open(path, open_flags, S_IRUSR | S_IWUSR));
257 rc = TEMP_FAILURE_RETRY(open(path, open_flags, S_IRUSR | S_IWUSR));
260 open_flags |
[all...]
/system/extras/ioshark/
H A Dioshark.h102 #define open_flags u.open_a.flags macro
/system/core/sdcard/
H A Dfuse.cpp984 static int open_flags_to_access_mode(int open_flags) { argument
985 if ((open_flags & O_ACCMODE) == O_RDONLY) {
987 } else if ((open_flags & O_ACCMODE) == O_WRONLY) {
1028 out.open_flags = 0;
1191 out.open_flags = 0;

Completed in 90 milliseconds