Home
last modified time | relevance | path

Searched refs:pathname (Results 1 – 13 of 13) 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
59 return ___faccessat(dirfd, pathname, mode); in faccessat()
Dsystem_properties.cpp1068 static bool is_dir(const char* pathname) { in is_dir() argument
1070 if (stat(pathname, &info) == -1) { in is_dir()
/bionic/libc/include/
Dfcntl.h117 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/
Dutils.h61 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()
Ddlfcn_test.cpp913 if (executable_path == rec.pathname) { in TEST()
Ddlext_test.cpp1660 if (rec.pathname == private_library_absolute_path) { in TEST()
Dpthread_test.cpp1346 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/
DSECCOMP_WHITELIST.TXT65 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/
Dmd_u.h90 char pathname[4096]; member
/bionic/libc/kernel/uapi/linux/
Dbpf.h142 __aligned_u64 pathname; member