/third_party/rust/crates/rustix/tests/fs/ |
D | utimensat.rs | 4 use rustix::fs::{cwd, openat, statat, utimensat, AtFlags, Mode, OFlags, Timespec, Timestamps}; in test_utimensat() 33 utimensat(&dir, "foo", ×, AtFlags::empty()).unwrap(); in test_utimensat() 64 use rustix::fs::{cwd, openat, utimensat, AtFlags, Mode, OFlags, Timespec, Timestamps}; in test_utimensat_noent() 86 utimensat(&dir, "foo", ×, AtFlags::empty()).unwrap_err(), in test_utimensat_noent() 94 use rustix::fs::{cwd, openat, utimensat, AtFlags, Mode, OFlags, Timespec, Timestamps}; in test_utimensat_notdir() 124 utimensat(&foo, "bar", ×, AtFlags::empty()).unwrap_err(), in test_utimensat_notdir()
|
D | main.rs | 50 mod utimensat; module
|
D | y2038.rs | 11 cwd, fstat, openat, statat, utimensat, AtFlags, Mode, OFlags, Timespec, Timestamps, in test_y2038_with_utimensat() 35 match utimensat(&dir, "foo", ×tamps, AtFlags::empty()) { in test_y2038_with_utimensat()
|
/third_party/ltp/m4/ |
D | ltp-utimensat.m4 | 5 AC_MSG_CHECKING([for utimensat]) 16 return utimensat(AT_FDCWD, NULL, NULL, 0); 20 AC_DEFINE(HAVE_UTIMENSAT, 1, [Define to 1 if you have utimensat(2)])
|
/third_party/musl/libc-test/src/functionalext/supplement/stat/ |
D | utimensat.c | 38 int result = utimensat(fd, path, times, 0); in utimensat_0100() 66 int result = utimensat(-1, NULL, NULL, 0); in utimensat_0200()
|
D | test_src_functionalext_supplement_stat.gni | 26 "utimensat",
|
/third_party/ltp/testcases/kernel/syscalls/utimensat/ |
D | utimensat01.c | 116 …{ .utimensat = sys_utimensat, .ts_type = TST_KERN_OLD_TIMESPEC, .desc = "syscall with old kernel s… 120 …{ .utimensat = sys_utimensat_time64, .ts_type = TST_KERN_TIMESPEC, .desc = "syscall time64 with ke… 207 TEST(tv->utimensat(dfd, pathname, &ts, flags)); in reset_time() 252 TEST(tv->utimensat(dfd, pathname, tsp, tc->flags)); in run()
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | stat.h | 92 int utimensat(int, const char *, const struct timespec [2], int); 119 __REDIR(utimensat, __utimensat_time64);
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | stat.h | 92 int utimensat(int, const char *, const struct timespec [2], int); 119 __REDIR(utimensat, __utimensat_time64);
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
D | stat.h | 92 int utimensat(int, const char *, const struct timespec [2], int); 118 __REDIR(utimensat, __utimensat_time64);
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | stat.h | 92 int utimensat(int, const char *, const struct timespec [2], int); 119 __REDIR(utimensat, __utimensat_time64);
|
/third_party/musl/porting/linux/user/include/sys/ |
D | stat.h | 92 int utimensat(int, const char *, const struct timespec [2], int); 119 __REDIR(utimensat, __utimensat_time64);
|
/third_party/musl/include/sys/ |
D | stat.h | 92 int utimensat(int, const char *, const struct timespec [2], int); 119 __REDIR(utimensat, __utimensat_time64);
|
/third_party/musl/ndk_musl_include/sys/ |
D | stat.h | 92 int utimensat(int, const char *, const struct timespec [2], int); 118 __REDIR(utimensat, __utimensat_time64);
|
/third_party/musl/src/stat/ |
D | futimens.c | 5 return utimensat(fd, 0, times, 0); in futimens()
|
D | futimesat.c | 19 return utimensat(dirfd, pathname, times ? ts : 0, 0); in __futimesat()
|
D | utimensat.c | 10 int utimensat(int fd, const char *path, const struct timespec times[2], int flags) in utimensat() function
|
/third_party/musl/src/time/ |
D | utime.c | 8 return utimensat(AT_FDCWD, path, times ? ((struct timespec [2]){ in utime()
|
/third_party/musl/porting/liteos_a/user/src/time/ |
D | utime.c | 10 return utimensat(AT_FDCWD, path, times ? ((struct timespec [2]){ in utime()
|
/third_party/musl/compat/time32/ |
D | utimensat_time32.c | 7 return utimensat(fd, path, !times32 ? 0 : ((struct timespec[2]){ in __utimensat_time32()
|
/third_party/musl/src/legacy/ |
D | lutimes.c | 15 return utimensat(AT_FDCWD, filename, tv ? times : 0, AT_SYMLINK_NOFOLLOW); in lutimes()
|
/third_party/toybox/toys/posix/ |
D | touch.c | 75 if (!utimensat(AT_FDCWD, s, ts, FLAG(h)*AT_SYMLINK_NOFOLLOW)) continue; in touch_main()
|
/third_party/toybox/porting/liteos_a/toys/posix/ |
D | touch.c | 68 if (!utimensat(AT_FDCWD, s, ts, FLAG(h)*AT_SYMLINK_NOFOLLOW)) continue; in touch_main()
|
/third_party/ltp/include/ |
D | time64_variants.h | 61 int (*utimensat)(int dirfd, const char *pathname, void *times, member
|
/third_party/rust/crates/nix/test/ |
D | test_stat.rs | 31 use nix::sys::stat::utimensat; 295 utimensat( in test_utimensat() 307 utimensat( in test_utimensat()
|