Home
last modified time | relevance | path

Searched refs:pathname (Results 1 – 12 of 12) sorted by relevance

/bionic/libc/bionic/
Dopen.cpp46 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()
Dfchmodat.cpp39 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()
Dfaccessat.cpp35 int faccessat(int dirfd, const char* pathname, int mode, int flags) { in faccessat() argument
58 return ___faccessat(dirfd, pathname, mode); in faccessat()
Dsystem_properties.cpp993 static bool is_dir(const char* pathname) { in is_dir() argument
995 if (stat(pathname, &info) == -1) { in is_dir()
/bionic/libc/include/
Dfcntl.h101 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/
Dutils.h46 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()
Ddlfcn_test.cpp811 if (executable_path == rec.pathname) { in TEST()
Ddlext_test.cpp1148 if (rec.pathname == private_library_absolute_path) { in TEST()
Dpthread_test.cpp1264 if (map.pathname == "[stack]") { in TEST()
/bionic/libc/arch-mips64/bionic/
Dstat.cpp83 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/
Dmd_u.h107 char pathname[4096]; member
/bionic/libc/kernel/uapi/linux/
Dbpf.h139 __aligned_u64 pathname; member