Lines Matching refs:src
25 static void copy_stat(struct uml_stat *dst, const struct stat64 *src)
28 .ust_dev = src->st_dev, /* device */
29 .ust_ino = src->st_ino, /* inode */
30 .ust_mode = src->st_mode, /* protection */
31 .ust_nlink = src->st_nlink, /* number of hard links */
32 .ust_uid = src->st_uid, /* user ID of owner */
33 .ust_gid = src->st_gid, /* group ID of owner */
34 .ust_size = src->st_size, /* total size, in bytes */
35 .ust_blksize = src->st_blksize, /* blocksize for filesys I/O */
36 .ust_blocks = src->st_blocks, /* number of blocks allocated */
37 .ust_atime = src->st_atime, /* time of last access */
38 .ust_mtime = src->st_mtime, /* time of last modification */
39 .ust_ctime = src->st_ctime, /* time of last change */