Lines Matching full:flags
7 char *qemu_open_flags_tostr(int flags) in qemu_open_flags_tostr() argument
9 int acc = flags & O_ACCMODE; in qemu_open_flags_tostr()
12 (flags & O_CREAT) ? "|CREAT" : "", in qemu_open_flags_tostr()
13 (flags & O_EXCL) ? "|EXCL" : "", in qemu_open_flags_tostr()
14 (flags & O_NOCTTY) ? "|NOCTTY" : "", in qemu_open_flags_tostr()
15 (flags & O_TRUNC) ? "|TRUNC" : "", in qemu_open_flags_tostr()
16 (flags & O_APPEND) ? "|APPEND" : "", in qemu_open_flags_tostr()
17 (flags & O_NONBLOCK) ? "|NONBLOCK" : "", in qemu_open_flags_tostr()
18 (flags & O_DSYNC) ? "|DSYNC" : "", in qemu_open_flags_tostr()
20 (flags & O_DIRECT) ? "|DIRECT" : "", in qemu_open_flags_tostr()
22 (flags & O_LARGEFILE) ? "|LARGEFILE" : "", in qemu_open_flags_tostr()
23 (flags & O_DIRECTORY) ? "|DIRECTORY" : "", in qemu_open_flags_tostr()
24 (flags & O_NOFOLLOW) ? "|NOFOLLOW" : "", in qemu_open_flags_tostr()
26 (flags & O_NOATIME) ? "|NOATIME" : "", in qemu_open_flags_tostr()
29 (flags & O_CLOEXEC) ? "|CLOEXEC" : "", in qemu_open_flags_tostr()
32 (flags & __O_SYNC) ? "|SYNC" : "", in qemu_open_flags_tostr()
34 ((flags & O_SYNC) == O_SYNC) ? "|SYNC" : "", in qemu_open_flags_tostr()
37 (flags & O_PATH) ? "|PATH" : "", in qemu_open_flags_tostr()
40 (flags & __O_TMPFILE) ? "|TMPFILE" : "", in qemu_open_flags_tostr()
42 ((flags & O_TMPFILE) == O_TMPFILE) ? "|TMPFILE" : "", in qemu_open_flags_tostr()
46 (flags & O_NDELAY) ? "|NDELAY" : "", in qemu_open_flags_tostr()