/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 59 return ___faccessat(dirfd, pathname, mode); in faccessat()
|
D | system_properties.cpp | 1068 static bool is_dir(const char* pathname) { in is_dir() argument 1070 if (stat(pathname, &info) == -1) { in is_dir()
|
/bionic/libc/include/ |
D | fcntl.h | 117 int open(const char* pathname, int flags, mode_t modes, ...) __overloadable 121 int open(const char* pathname, int flags) __overloadable 132 int open(const char* const __pass_object_size pathname, in open() argument 134 return __open_2(pathname, flags); in open() 138 int open(const char* const __pass_object_size pathname, int flags, mode_t modes) in open() argument 140 return __open_real(pathname, flags, modes); in open() 144 int openat(int dirfd, const char* pathname, int flags) __overloadable 149 int openat(int dirfd, const char* pathname, int flags, mode_t modes, ...) 154 int openat(int dirfd, const char* const __pass_object_size pathname, in openat() argument 156 return __openat_2(dirfd, pathname, flags); in openat() [all …]
|
/bionic/tests/ |
D | utils.h | 61 std::string pathname; member 97 record.pathname = line + path_offset; in parse_maps() 98 if (!record.pathname.empty() && record.pathname.back() == '\n') { in parse_maps() 99 record.pathname.pop_back(); in parse_maps()
|
D | dlfcn_test.cpp | 913 if (executable_path == rec.pathname) { in TEST()
|
D | dlext_test.cpp | 1660 if (rec.pathname == private_library_absolute_path) { in TEST()
|
D | pthread_test.cpp | 1346 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/ |
D | SECCOMP_WHITELIST.TXT | 65 int access:access(const char *pathname, int mode) arm,x86,mips 87 int creat:creat(const char *pathname, mode_t mode) arm,x86,mips 88 int unlink:unlink(const char *pathname) arm,x86,mips 116 int execveat(int dirfd, const char* pathname, char* const* argv, char* const* envp, int flags) all 129 int mkdir(const char *pathname, mode_t mode) arm,x86,mips
|
/bionic/libc/kernel/uapi/linux/raid/ |
D | md_u.h | 90 char pathname[4096]; member
|
/bionic/libc/kernel/uapi/linux/ |
D | bpf.h | 142 __aligned_u64 pathname; member
|