Lines Matching refs:sb
86 struct statvfs *sb;
89 sb = STATVFSBUF_GET();
90 error = do_sys_pstatvfs(l, SCARG_P32(uap, path), SCARG(uap, flags), sb);
92 error = netbsd32_copyout_statvfs90(sb, SCARG_P32(uap, buf),
94 STATVFSBUF_PUT(sb);
107 struct statvfs *sb;
110 sb = STATVFSBUF_GET();
111 error = do_sys_fstatvfs(l, SCARG(uap, fd), SCARG(uap, flags), sb);
113 error = netbsd32_copyout_statvfs90(sb, SCARG_P32(uap, buf), 0);
114 STATVFSBUF_PUT(sb);
129 struct statvfs *sb;
132 sb = STATVFSBUF_GET();
133 error = do_fhstatvfs(l, SCARG_P32(uap, fhp), SCARG(uap, fh_size), sb,
137 error = netbsd32_copyout_statvfs90(sb, SCARG_P32(uap, buf), 0);
138 STATVFSBUF_PUT(sb);