/bionic/libc/bionic/ |
H A D | faccessat.cpp | 35 int faccessat(int dirfd, const char* pathname, int mode, int flags) { argument 58 return ___faccessat(dirfd, pathname, mode);
|
H A D | fchmodat.cpp | 39 int fchmodat(int dirfd, const char* pathname, mode_t mode, int flags) { argument 50 int fd = openat(dirfd, pathname, O_PATH | O_NOFOLLOW | O_CLOEXEC); 66 return ___fchmodat(dirfd, pathname, mode);
|
H A D | open.cpp | 46 int creat(const char* pathname, mode_t mode) { argument 47 return open(pathname, O_CREAT | O_TRUNC | O_WRONLY, mode); 51 int open(const char* pathname, int flags, ...) { argument 61 return __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), mode); 65 int __open_2(const char* pathname, int flags) { argument 70 return __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), 0); 73 int openat(int fd, const char *pathname, int flags, ...) { argument 83 return __openat(fd, pathname, force_O_LARGEFILE(flags), mode); 87 int __openat_2(int fd, const char* pathname, int flags) { argument 92 return __openat(fd, pathname, force_O_LARGEFIL [all...] |
H A D | system_properties.cpp | 993 static bool is_dir(const char* pathname) { argument 995 if (stat(pathname, &info) == -1) {
|
/bionic/libc/include/ |
H A D | fcntl.h | 101 int open(const char* pathname, int flags, ...) { argument 113 return __open_2(pathname, flags); 116 return __open_real(pathname, flags, __builtin_va_arg_pack()); 120 int openat(int dirfd, const char* pathname, int flags, ...) { argument 132 return __openat_2(dirfd, pathname, flags); 135 return __openat_real(dirfd, pathname, flags, __builtin_va_arg_pack());
|
/bionic/tests/ |
H A D | utils.h | 46 std::string pathname; member in struct:map_record 84 record.pathname = line + path_offset; 85 if (!record.pathname.empty() && record.pathname.back() == '\n') { 86 record.pathname.pop_back();
|
/bionic/libc/arch-mips64/bionic/ |
H A D | stat.cpp | 83 int fstatat(int dirfd, const char* pathname, struct stat* buf, int flags) { argument 85 int ret = syscall(__NR_newfstatat, dirfd, pathname, &s, flags);
|
/bionic/libc/kernel/uapi/linux/raid/ |
H A D | md_u.h | 107 char pathname[4096]; member in struct:mdu_bitmap_file_s
|
/bionic/libc/kernel/uapi/linux/ |
H A D | bpf.h | 139 __aligned_u64 pathname; member in struct:bpf_attr::__anon238
|