Lines Matching defs:sb
68 struct statvfs sb;
69 int error = __statvfs190(path, &sb, 0);
71 statvfs_to_statvfs90(&sb, buf);
78 struct statvfs sb;
79 int error = __statvfs190(path, &sb, flags);
81 statvfs_to_statvfs90(&sb, buf);
88 struct statvfs sb;
89 int error = __fstatvfs190(fd, &sb, 0);
91 statvfs_to_statvfs90(&sb, buf);
98 struct statvfs sb;
99 int error = __fstatvfs190(fd, &sb, flags);
101 statvfs_to_statvfs90(&sb, buf);
109 struct statvfs *sb = calloc(count, sizeof(*sb));
111 if (sb == NULL)
114 int error = __getvfsstat90(sb, count * sizeof(*sb), flags);
117 statvfs_to_statvfs90(sb + i, buf + i);
119 free(sb);