/bionic/libc/include/bits/fortify/ |
D | fcntl.h | 49 int open(const char* pathname, int flags, mode_t modes, ...) __overloadable 59 int open(const char* const __pass_object_size pathname, int flags) in open() argument 63 return __open_2(pathname, flags); in open() 65 return __open_real(pathname, flags); in open() 70 int open(const char* const __pass_object_size pathname, int flags, mode_t modes) in open() argument 74 return __open_real(pathname, flags, modes); in open() 78 int openat(int dirfd, const char* pathname, int flags, mode_t modes, ...) 83 int openat(int dirfd, const char* const __pass_object_size pathname, int flags) in openat() argument 87 return __openat_2(dirfd, pathname, flags); in openat() 89 return __openat_real(dirfd, pathname, flags); in openat() [all …]
|
/bionic/libc/bionic/ |
D | open.cpp | 51 int creat(const char* pathname, mode_t mode) { in creat() argument 52 return open(pathname, O_CREAT | O_TRUNC | O_WRONLY, mode); in creat() 56 int open(const char* pathname, int flags, ...) { in open() argument 66 return FDTRACK_CREATE(__openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), mode)); in open() 70 int __open_2(const char* pathname, int flags) { in __open_2() argument 72 return FDTRACK_CREATE_NAME("open", __openat(AT_FDCWD, pathname, force_O_LARGEFILE(flags), 0)); in __open_2() 75 int openat(int fd, const char *pathname, int flags, ...) { in openat() argument 85 return FDTRACK_CREATE_NAME("openat", __openat(fd, pathname, force_O_LARGEFILE(flags), mode)); in openat() 89 int __openat_2(int fd, const char* pathname, int flags) { in __openat_2() argument 91 return FDTRACK_CREATE_NAME("openat", __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 ScopedFd fd(openat(dirfd, pathname, O_PATH | O_NOFOLLOW | O_CLOEXEC)); in fchmodat() 61 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 | exec.cpp | 47 extern "C" int __execve(const char* pathname, char* const* argv, char* const* envp); 187 __attribute__((no_sanitize("memtag"))) int execve(const char* pathname, char* const* argv, in execve() argument 190 return __execve(pathname, argv, envp); in execve()
|
/bionic/libc/ |
D | SECCOMP_ALLOWLIST_APP.TXT | 10 int access:access(const char *pathname, int mode) lp32 27 int creat:creat(const char *pathname, mode_t mode) lp32 28 int unlink:unlink(const char *pathname) lp32 58 int mkdir(const char *pathname, mode_t mode) lp32
|
/bionic/tests/ |
D | utils.h | 98 std::string pathname; member 132 record.pathname = line + path_offset; in parse_maps() 133 if (!record.pathname.empty() && record.pathname.back() == '\n') { in parse_maps() 134 record.pathname.pop_back(); in parse_maps()
|
D | dlfcn_test.cpp | 945 if (executable_path == rec.pathname) { in TEST()
|
D | dlext_test.cpp | 2013 if (rec.pathname == private_library_absolute_path) { in TEST()
|
/bionic/libc/arch-arm/ |
D | dynamic_function_dispatch.cpp | 68 static long ifunc_open(const char* pathname) { in ifunc_open() argument 70 register long r1 __asm__("r1") = reinterpret_cast<long>(pathname); in ifunc_open()
|
/bionic/libc/kernel/uapi/linux/raid/ |
D | md_u.h | 90 char pathname[4096]; member
|
/bionic/libc/system_properties/ |
D | system_properties.cpp | 53 static bool is_dir(const char* pathname) { in is_dir() argument 55 if (stat(pathname, &info) == -1) { in is_dir()
|
/bionic/docs/ |
D | clang_fortify_anatomy.md | 418 int open(const char* pathname, int flags, mode_t modes, ...) __overloadable 425 int open(const char* const __attribute__((pass_object_size(1))) pathname, int flags) 432 return __open_2(pathname, flags); 434 return __open_real(pathname, flags); 441 int open(const char* const __attribute__((pass_object_size(1))) pathname, int flags, mode_t modes) 445 return __open_real(pathname, flags, modes); 483 int open(const char* pathname, int flags, mode_t modes, ...) __overloadable 500 int open(const char* const __attribute__((pass_object_size(1))) pathname, int flags) 507 return __open_2(pathname, flags); 509 return __open_real(pathname, flags); [all …]
|
/bionic/libc/kernel/uapi/linux/ |
D | bpf.h | 396 __aligned_u64 pathname; member
|