Home | History | Annotate | Download | only in include

Lines Matching refs:pathname

113 int open(const char* pathname, int flags, mode_t modes, ...) __overloadable
117 int open(const char* pathname, int flags) __overloadable
128 int open(const char* const __pass_object_size pathname,
130 return __open_2(pathname, flags);
134 int open(const char* const __pass_object_size pathname, int flags, mode_t modes)
136 return __open_real(pathname, flags, modes);
140 int openat(int dirfd, const char* pathname, int flags) __overloadable
145 int openat(int dirfd, const char* pathname, int flags, mode_t modes, ...)
150 int openat(int dirfd, const char* const __pass_object_size pathname,
152 return __openat_2(dirfd, pathname, flags);
156 int openat(int dirfd, const char* const __pass_object_size pathname, int flags,
158 return __openat_real(dirfd, pathname, flags, modes);
168 int open(const char* pathname, int flags, ...) {
180 return __open_2(pathname, flags);
183 return __open_real(pathname, flags, __builtin_va_arg_pack());
187 int openat(int dirfd, const char* pathname, int flags, ...) {
199 return __openat_2(dirfd, pathname, flags);
202 return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack());