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