Symbol: utimensat
bin/cp/utils.c
346
utimensat(to.dir, to.path, tspec, atflags)) {
crypto/openssh/openbsd-compat/bsd-misc.h
102
int utimensat(int, const char *, const struct timespec[2], int);
crypto/openssh/openbsd-compat/regress/utimensattest.c
110
(void)utimensat(AT_FDCWD, TMPFILE, ts, AT_SYMLINK_NOFOLLOW);
crypto/openssh/openbsd-compat/regress/utimensattest.c
36
int utimensat(int, const char *, const struct timespec[2], int);
crypto/openssh/openbsd-compat/regress/utimensattest.c
76
if (utimensat(AT_FDCWD, TMPFILE, ts, AT_SYMLINK_NOFOLLOW) == -1)
crypto/openssh/sftp-server.c
1498
r = utimensat(AT_FDCWD, name,
sbin/restore/dirs.c
654
utimensat(AT_FDCWD, cp, node.ctimep, 0);
sbin/restore/dirs.c
655
utimensat(AT_FDCWD, cp, node.mtimep, 0);
sbin/restore/tape.c
627
(void) utimensat(AT_FDCWD, name, ctimep,
sbin/restore/tape.c
629
(void) utimensat(AT_FDCWD, name, mtimep,
sbin/restore/tape.c
659
(void) utimensat(AT_FDCWD, name, ctimep, 0);
sbin/restore/tape.c
660
(void) utimensat(AT_FDCWD, name, mtimep, 0);
sbin/restore/tape.c
689
(void) utimensat(AT_FDCWD, name, ctimep, 0);
sbin/restore/tape.c
690
(void) utimensat(AT_FDCWD, name, mtimep, 0);
sys/sys/stat.h
379
int utimensat(int fd, const char *path, const struct timespec times[2],
tests/sys/file/path_test.c
420
ATF_REQUIRE_MSG(utimensat(pathfd, "", ts, AT_EMPTY_PATH) == 0,
tests/sys/fs/fusefs/default_permissions.cc
692
ASSERT_EQ(0, utimensat(AT_FDCWD, FULLPATH, &times[0], 0))
tests/sys/fs/fusefs/default_permissions.cc
713
ASSERT_EQ(0, utimensat(AT_FDCWD, FULLPATH, &times[0], 0))
tests/sys/fs/fusefs/setattr.cc
593
TEST_F(Setattr, utimensat) {
tests/sys/fs/fusefs/setattr.cc
643
EXPECT_EQ(0, utimensat(AT_FDCWD, FULLPATH, &newtimes[0], 0))
tests/sys/fs/fusefs/setattr.cc
694
EXPECT_EQ(0, utimensat(AT_FDCWD, FULLPATH, &newtimes[0], 0))
tests/sys/fs/fusefs/setattr.cc
755
ASSERT_EQ(0, utimensat(AT_FDCWD, FULLPATH, &newtimes[0], 0))
tools/build/cross-build/include/mac/sys/stat.h
40
utimensat(int fd, const char *file, const struct timespec *ts, int flag)
tools/build/stat.h
40
int utimensat(int, const char *, const struct timespec *, int);
usr.bin/compress/compress.c
359
if (utimensat(AT_FDCWD, name, tspec, 0))
usr.bin/mail/util.c
325
(void)utimensat(AT_FDCWD, name, ts, 0);
usr.bin/touch/touch.c
197
if (!utimensat(AT_FDCWD, *argv, ts, atflag))
usr.bin/xinstall/xinstall.c
1000
(void)utimensat(AT_FDCWD, to_name, tsb, 0);
usr.bin/xinstall/xinstall.c
927
(void)utimensat(AT_FDCWD, tempfile, tsb, 0);