Searched defs:pathname (Results 1 - 9 of 9) sorted by relevance

/bionic/libc/bionic/
H A Dfaccessat.cpp35 int faccessat(int dirfd, const char* pathname, int mode, int flags) { argument
58 return ___faccessat(dirfd, pathname, mode);
H A Dfchmodat.cpp39 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 Dopen.cpp46 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 Dsystem_properties.cpp993 static bool is_dir(const char* pathname) { argument
995 if (stat(pathname, &info) == -1) {
/bionic/libc/include/
H A Dfcntl.h101 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 Dutils.h46 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 Dstat.cpp83 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 Dmd_u.h107 char pathname[4096]; member in struct:mdu_bitmap_file_s
/bionic/libc/kernel/uapi/linux/
H A Dbpf.h139 __aligned_u64 pathname; member in struct:bpf_attr::__anon238

Completed in 220 milliseconds