Lines Matching defs:ssb
104 #define PARCOPY(a) ssb->a = sb->a
106 bsd_to_sunos_stat(const struct stat *sb, struct sunos_stat *ssb)
109 memset(ssb, 0, sizeof(*ssb));
122 ssb->st_atim = sb->st_atimespec;
123 ssb->st_mtim = sb->st_mtimespec;
124 ssb->st_ctim = sb->st_ctimespec;
126 timespec_to_timespec50(&sb->st_atimespec, &ssb->st_atim);
127 timespec_to_timespec50(&sb->st_mtimespec, &ssb->st_mtim);
128 timespec_to_timespec50(&sb->st_ctimespec, &ssb->st_ctim);
136 struct sunos_stat ssb;
144 bsd_to_sunos_stat(&sb, &ssb);
146 return copyout(&ssb, SCARG(uap, sp), sizeof(ssb));
153 struct sunos_stat ssb;
161 bsd_to_sunos_stat(&sb, &ssb);
163 return copyout(&ssb, SCARG(uap, sp), sizeof(ssb));
170 struct sunos_stat ssb;
178 bsd_to_sunos_stat(&sb, &ssb);
180 return copyout(&ssb, SCARG(uap, sp), sizeof(ssb));