/src/lib/libc/gen/ |
utimens.c | 1 /* $NetBSD: utimens.c,v 1.3 2023/08/01 07:04:15 mrg Exp $ */ 34 __RCSID("$NetBSD: utimens.c,v 1.3 2023/08/01 07:04:15 mrg Exp $"); 43 utimens(const char *path, const struct timespec times[2]) function in typeref:typename:int
|
Makefile.inc | 38 ulimit.c uname.c unvis.c usleep.c utime.c utimens.c utmp.c \
|
/src/lib/librefuse/refuse/ |
v28.h | 83 int (*utimens) (const char *, const struct timespec[2]); member in struct:fuse_operations_v28
|
v29.h | 83 int (*utimens) (const char *, const struct timespec[2]); member in struct:fuse_operations_v29
|
v34.h | 79 int (*utimens) (const char *, const struct timespec[2], struct fuse_file_info *); member in struct:fuse_operations_v34
|
v35.h | 79 int (*utimens) (const char *, const struct timespec[2], struct fuse_file_info *); member in struct:fuse_operations_v35
|
v26.h | 83 int (*utimens) (const char *, const struct timespec[2]); member in struct:fuse_operations_v26
|
v30.h | 91 int (*utimens) (const char *, const struct timespec[2], struct fuse_file_info *); member in struct:fuse_operations_v30
|
v38.h | 79 int (*utimens) (const char *, const struct timespec[2], struct fuse_file_info *); member in struct:fuse_operations_v38
|
fs.c | 1284 /* FUSE < 2.6 didn't have utimens() but had utime() 1299 /* utimens() appeared on FUSE 2.6. Call it if it exists, or fall back to 1303 if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->utimens) \ 1304 return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->utimens(path, tv); \ 1317 if (((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->utimens) \ 1318 return ((const struct __CONCAT(fuse_operations_v,VER)*)fs->op)->utimens(path, tv, fi); \
|
/src/sys/sys/ |
stat.h | 286 int utimens(const char *, const struct timespec [2]);
|
/src/sbin/restore/ |
dirs.c | 693 (void) utimens(cp, node.ctimep); 694 (void) utimens(cp, node.mtimep);
|
tape.c | 743 (void) utimens(name, ctimep); 744 (void) utimens(name, mtimep); 778 (void) utimens(name, ctimep); 779 (void) utimens(name, mtimep);
|
/src/usr.bin/touch/ |
touch.c | 158 change_file_times = utimens;
|