/external/ltp/testcases/kernel/syscalls/fstatat/ |
D | fstatat01.c | 63 int fstatat(int dirfd, const char *filename, struct stat64 *statbuf, int flags) in fstatat() function 68 int fstatat(int dirfd, const char *filename, struct stat *statbuf, int flags) in fstatat() function 73 int fstatat(int dirfd, const char *filename, struct stat *statbuf, int flags) in fstatat() function 100 TEST(fstatat(fds[i], filenames[i], &statbuf, flags[i])); in main()
|
/external/toybox/lib/ |
D | dirtree.c | 40 if (fstatat(fd, name, &st, sym)) { in dirtree_add_node() 42 if (errno!=ENOENT || sym || fstatat(fd, name, &st, AT_SYMLINK_NOFOLLOW)) { in dirtree_add_node()
|
D | lib.c | 180 if (!fstatat(atfd, dir, &buf, 0)) { in mkpathat()
|
/external/rust/crates/nix/src/sys/ |
D | stat.rs | 115 pub fn fstatat<P: ?Sized + NixPath>(dirfd: RawFd, pathname: &P, f: AtFlags) -> Result<FileStat> { in fstatat() function 118 unsafe { libc::fstatat(dirfd, cstr.as_ptr(), dst.as_mut_ptr(), f.bits() as libc::c_int) } in fstatat()
|
/external/igt-gpu-tools/tests/ |
D | vgem_basic.c | 275 if (fstatat(dir, de->d_name, &st, 0)) in test_sysfs_read() 304 if (fstatat(dir, de->d_name, &st, 0)) in test_debugfs_read()
|
/external/ltp/include/lapi/syscalls/ |
D | aarch64.in | 80 fstatat 79
|
/external/libfuse/ |
D | meson.build | 37 test_funcs = [ 'fork', 'fstatat', 'openat', 'readlinkat', 'pipe2',
|
/external/ltp/ |
D | configure.ac | 74 fstatat \
|
/external/llvm-project/clang/test/Analysis/ |
D | std-c-library-functions-POSIX.c | 180 int fstatat(int fd, const char *restrict path, struct stat *restrict buf, int flag);
|
/external/rust/crates/nix/test/ |
D | test_stat.rs | 119 let result = stat::fstatat(dirfd.unwrap(), in test_fstatat()
|
D | test_unistd.rs | 144 let stats = stat::fstatat(dirfd, mkfifoat_name, fcntl::AtFlags::empty()).unwrap(); in test_mkfifoat()
|
/external/strace/tests-mx32/ |
D | Makefile.am | 394 fstatat.c \
|
/external/strace/tests-m32/ |
D | Makefile.am | 394 fstatat.c \
|
/external/strace/tests/ |
D | Makefile.am | 394 fstatat.c \
|
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 714 INTERCEPTOR(int, fstatat, int fd, char *pathname, void *buf, int flags) { in INTERCEPTOR() argument 716 int res = REAL(fstatat)(fd, pathname, buf, flags); in INTERCEPTOR() 720 # define MSAN_INTERCEPT_FSTATAT INTERCEPT_FUNCTION(fstatat)
|
/external/llvm-project/compiler-rt/lib/msan/ |
D | msan_interceptors.cpp | 698 INTERCEPTOR(int, fstatat, int fd, char *pathname, void *buf, int flags) { in INTERCEPTOR() argument 700 int res = REAL(fstatat)(fd, pathname, buf, flags); in INTERCEPTOR() 704 # define MSAN_INTERCEPT_FSTATAT INTERCEPT_FUNCTION(fstatat)
|
/external/toybox/toys/posix/ |
D | cp.c | 147 || (!fstatat(cfd, catch, &cst, 0) && cst.st_dev == try->st.st_dev in cp_node()
|
D | ls.c | 472 if (fstatat(dirfd, dt->symlink, &st2, 0)) color = 256+31; in listfiles()
|
/external/igt-gpu-tools/lib/ |
D | igt_debugfs.c | 524 igt_require_f(fstatat(dir, "crtc-0/crc/control", &stat, 0) == 0, in igt_require_pipe_crc()
|
/external/libbrillo/brillo/files/ |
D | safe_fd.cc | 503 if (fstatat(dir_fd.get(), entry->d_name, &child_info, in Rmdir()
|
/external/kmod/tools/ |
D | depmod.c | 691 fstatat(dirfd(d), name, &st, 0); in cfg_files_filter_out() 1263 if (fstatat(dfd, name, &st, 0) < 0) { in depmod_modules_search_dir() 2707 if (fstatat(dfd, name, &st, 0) < 0) { in depfile_up_to_date_dir() 2781 if (fstatat(dirfd(d), "modules.dep", &st, 0) != 0) { in depfile_up_to_date()
|
/external/mesa3d/src/util/ |
D | disk_cache_os.c | 302 if (fstatat(dirfd(dir), entry->d_name, &sb, 0) == 0) { in choose_lru_file_matching()
|
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_linux.cpp | 307 return internal_syscall(SYSCALL(fstatat), AT_FDCWD, (uptr)path, (uptr)buf, 0); in internal_stat() 331 return internal_syscall(SYSCALL(fstatat), AT_FDCWD, (uptr)path, (uptr)buf, in internal_lstat()
|
/external/kmod/libkmod/ |
D | libkmod-config.c | 714 fstatat(dirfd(d), fn, &st, 0); in conf_files_filter_out()
|
/external/rust/crates/libc/src/ |
D | wasi.rs | 498 pub fn fstatat( in fstatat() function
|