Lines Matching defs:src
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
44 stat64_32_to_n(struct stat64_32 *src, struct stat *dest)
47 dest->st_dev = DEVEXPL(src->st_dev);
48 dest->st_ino = (ino_t)src->st_ino;
49 dest->st_mode = (mode_t)src->st_mode;
50 dest->st_nlink = (nlink_t)src->st_nlink;
51 dest->st_uid = (uid_t)src->st_uid;
52 dest->st_gid = (gid_t)src->st_gid;
53 dest->st_rdev = DEVEXPL(src->st_rdev);
54 dest->st_size = (off_t)src->st_size;
55 TIMESPEC32_TO_TIMESPEC(&dest->st_atim, &src->st_atim);
56 TIMESPEC32_TO_TIMESPEC(&dest->st_mtim, &src->st_mtim);
57 TIMESPEC32_TO_TIMESPEC(&dest->st_ctim, &src->st_ctim);
58 dest->st_blksize = (blksize_t)src->st_blksize;
59 dest->st_blocks = (blkcnt_t)src->st_blocks;
60 (void) memcpy(dest->st_fstype, src->st_fstype,