Home
last modified time | relevance | path

Searched refs:dfd (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h2916 void __sanitizer_syscall_pre_impl_mknodat(long dfd, long filename, long mode,
2918 void __sanitizer_syscall_post_impl_mknodat(long res, long dfd, long filename,
2939 void __sanitizer_syscall_pre_impl_futimesat(long dfd, long filename,
2955 void __sanitizer_syscall_post_impl_openat(long res, long dfd, long filename,
2957 void __sanitizer_syscall_pre_impl_newfstatat(long dfd, long filename,
2961 void __sanitizer_syscall_pre_impl_fstatat64(long dfd, long filename,
2965 void __sanitizer_syscall_pre_impl_readlinkat(long dfd, long path, long buf,
2967 void __sanitizer_syscall_post_impl_readlinkat(long res, long dfd, long path,
2969 void __sanitizer_syscall_pre_impl_utimensat(long dfd, long filename,
3057 void __sanitizer_syscall_pre_impl_name_to_handle_at(long dfd, long name,
[all …]
/llvm-project-15.0.7/libc/src/unistd/linux/
H A Dunlinkat.cpp20 LLVM_LIBC_FUNCTION(int, unlinkat, (int dfd, const char *path, int flags)) {
22 long ret = __llvm_libc::syscall(SYS_unlinkat, dfd, path, flags);
/llvm-project-15.0.7/libc/src/sys/stat/linux/
H A Dmkdirat.cpp20 LLVM_LIBC_FUNCTION(int, mkdirat, (int dfd, const char *path, mode_t mode)) {
22 long ret = __llvm_libc::syscall(SYS_mkdirat, dfd, path, mode);
/llvm-project-15.0.7/libc/src/fcntl/linux/
H A Dopenat.cpp21 LLVM_LIBC_FUNCTION(int, openat, (int dfd, const char *path, int flags, ...)) {
32 int fd = __llvm_libc::syscall(SYS_openat, dfd, path, flags, mode_flags);
/llvm-project-15.0.7/libc/src/fcntl/
H A Dopenat.h16 int openat(int dfd, const char *path, int flags, ...);
/llvm-project-15.0.7/libc/src/unistd/
H A Dunlinkat.h14 int unlinkat(int dfd, const char *path, int flags);
/llvm-project-15.0.7/libc/src/sys/stat/
H A Dmkdirat.h16 int mkdirat(int dfd, const char *path, mode_t mode);
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_syscalls.inc2714 (long res, long dfd, const void *filename, long mode, long dev) {}
2716 PRE_SYSCALL(mkdirat)(long dfd, const void *pathname, long mode) {
2724 PRE_SYSCALL(unlinkat)(long dfd, const void *pathname, long flag) {
2774 (long res, long dfd, const void *filename, void *utimes) {
2781 PRE_SYSCALL(faccessat)(long dfd, const void *filename, long mode) {
2789 PRE_SYSCALL(fchmodat)(long dfd, const void *filename, long mode) {
2798 (long dfd, const void *filename, long user, long group, long flag) {
2817 (long dfd, const void *filename, void *statbuf, long flag) {
2832 (long dfd, const void *filename, void *statbuf, long flag) {
2852 (long res, long dfd, const void *path, void *buf, long bufsiz) {
[all …]