Lines Matching refs:flags
30 int __open_dprotected_np(const char* path, int flags, int class, int dpflags, int mode);
31 int __openat_dprotected_np(int fd, const char* path, int flags, int class, int dpflags, int mode, i…
34 open_dprotected_np(const char *path, int flags, int class, int dpflags, ...) in open_dprotected_np() argument
43 if (flags & O_CREAT) { in open_dprotected_np()
49 return __open_dprotected_np(path, flags, class, dpflags, mode); in open_dprotected_np()
53 openat_dprotected_np(int fd, const char *path, int flags, int class, int dpflags, ...) in openat_dprotected_np() argument
62 if (flags & O_CREAT) { in openat_dprotected_np()
68 return __openat_dprotected_np(fd, path, flags, class, dpflags, mode, AUTH_OPEN_NOAUTHFD); in openat_dprotected_np()
72 openat_authenticated_np(int fd, const char *path, int flags, int authfd) in openat_authenticated_np() argument
74 if (flags & O_CREAT) { in openat_authenticated_np()
84 …return __openat_dprotected_np(fd, path, flags, PROTECTION_CLASS_DEFAULT, O_DP_AUTHENTICATE, 0, aut… in openat_authenticated_np()