Home | History | Annotate | Download | only in fortify

Lines Matching refs:pathname

51 int open(const char* pathname, int flags, mode_t modes, ...) __overloadable
61 int open(const char* const __pass_object_size pathname, int flags)
64 return __open_2(pathname, flags);
68 int open(const char* const __pass_object_size pathname, int flags, mode_t modes)
72 return __open_real(pathname, flags, modes);
76 int openat(int dirfd, const char* pathname, int flags, mode_t modes, ...)
81 int openat(int dirfd, const char* const __pass_object_size pathname, int flags)
84 return __openat_2(dirfd, pathname, flags);
88 int openat(int dirfd, const char* const __pass_object_size pathname, int flags, mode_t modes)
92 return __openat_real(dirfd, pathname, flags, modes);
102 int open(const char* pathname, int flags, ...) {
114 return __open_2(pathname, flags);
117 return __open_real(pathname, flags, __builtin_va_arg_pack());
121 int openat(int dirfd, const char* pathname, int flags, ...) {
133 return __openat_2(dirfd, pathname, flags);
136 return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack());