Home | History | Annotate | Download | only in libsys_cygwin

Lines Matching defs:ssb

67 #define PARCOPY(a) ssb->a = sb->a
69 bsd_to_cygwin_stat(const struct stat *sb, struct cygwin_stat *ssb)
72 memset(ssb, 0, sizeof(*ssb));
84 timespec_to_timespec50(&sb->st_atimespec, &ssb->st_atim);
85 timespec_to_timespec50(&sb->st_mtimespec, &ssb->st_mtim);
86 timespec_to_timespec50(&sb->st_ctimespec, &ssb->st_ctim);
87 timespec_to_timespec50(&sb->st_birthtimespec, &ssb->st_btim);
94 struct cygwin_stat ssb;
102 bsd_to_cygwin_stat(&sb, &ssb);
104 return copyout(&ssb, SCARG(uap, sp), sizeof(ssb));
111 struct cygwin_stat ssb;
119 bsd_to_cygwin_stat(&sb, &ssb);
121 return copyout(&ssb, SCARG(uap, sp), sizeof(ssb));
128 struct cygwin_stat ssb;
136 bsd_to_cygwin_stat(&sb, &ssb);
138 return copyout(&ssb, SCARG(uap, sp), sizeof(ssb));