Searched refs:times (Results 1 – 6 of 6) sorted by relevance
/fs/ |
D | utimes.c | 27 SYSCALL_DEFINE2(utime, char __user *, filename, struct utimbuf __user *, times) in SYSCALL_DEFINE2() argument 31 if (times) { in SYSCALL_DEFINE2() 32 if (get_user(tv[0].tv_sec, ×->actime) || in SYSCALL_DEFINE2() 33 get_user(tv[1].tv_sec, ×->modtime)) in SYSCALL_DEFINE2() 38 return do_utimes(AT_FDCWD, filename, times ? tv : NULL, 0); in SYSCALL_DEFINE2() 51 static int utimes_common(struct path *path, struct timespec *times) in utimes_common() argument 62 if (times && times[0].tv_nsec == UTIME_NOW && in utimes_common() 63 times[1].tv_nsec == UTIME_NOW) in utimes_common() 64 times = NULL; in utimes_common() 67 if (times) { in utimes_common() [all …]
|
/fs/hostfs/ |
D | hostfs_user.c | 197 struct timeval times[2]; in set_attr() local 244 times[0].tv_sec = st.atime.tv_sec; in set_attr() 245 times[0].tv_usec = st.atime.tv_nsec / 1000; in set_attr() 246 times[1].tv_sec = st.mtime.tv_sec; in set_attr() 247 times[1].tv_usec = st.mtime.tv_nsec / 1000; in set_attr() 250 times[0].tv_sec = attrs->ia_atime.tv_sec; in set_attr() 251 times[0].tv_usec = attrs->ia_atime.tv_nsec / 1000; in set_attr() 254 times[1].tv_sec = attrs->ia_mtime.tv_sec; in set_attr() 255 times[1].tv_usec = attrs->ia_mtime.tv_nsec / 1000; in set_attr() 259 if (futimes(fd, times) != 0) in set_attr() [all …]
|
/fs/isofs/ |
D | rock.c | 424 iso_date(rr->u.TF.times[cnt++].time, in parse_rock_ridge_inode_internal() 430 iso_date(rr->u.TF.times[cnt++].time, in parse_rock_ridge_inode_internal() 436 iso_date(rr->u.TF.times[cnt++].time, in parse_rock_ridge_inode_internal() 442 iso_date(rr->u.TF.times[cnt++].time, in parse_rock_ridge_inode_internal()
|
D | rock.h | 73 struct stamp times[0]; /* Variable number of these beasts */ member
|
/fs/logfs/ |
D | Kconfig | 11 times and potentially less RAM usage, although the latter has
|
/fs/befs/ |
D | ChangeLog | 164 can be called multiple times for each inode struct. [WD]
|