Lines Matching refs:statfs
9532 sysret_t sys_statfs(const char *path, struct statfs *buf) in sys_statfs()
9538 struct statfs statfsbuff = {0}; in sys_statfs()
9540 if (!lwp_user_accessable((void *)buf, sizeof(struct statfs))) in sys_statfs()
9565 ret = _SYS_WRAP(statfs(copy_path, &statfsbuff)); in sys_statfs()
9602 sysret_t sys_statfs64(const char *path, size_t sz, struct statfs *buf) in sys_statfs64()
9608 struct statfs statfsbuff = {0}; in sys_statfs64()
9610 if (!lwp_user_accessable((void *)buf, sizeof(struct statfs))) in sys_statfs64()
9615 if (sz != sizeof(struct statfs)) in sys_statfs64()
9640 ret = _SYS_WRAP(statfs(copy_path, &statfsbuff)); in sys_statfs64()
9675 sysret_t sys_fstatfs(int fd, struct statfs *buf) in sys_fstatfs()
9678 struct statfs statfsbuff = {0}; in sys_fstatfs()
9680 if (!lwp_user_accessable((void *)buf, sizeof(struct statfs))) in sys_fstatfs()
9721 sysret_t sys_fstatfs64(int fd, size_t sz, struct statfs *buf) in sys_fstatfs64()
9724 struct statfs statfsbuff = {0}; in sys_fstatfs64()
9726 if (!lwp_user_accessable((void *)buf, sizeof(struct statfs))) in sys_fstatfs64()
9731 if (sz != sizeof(struct statfs)) in sys_fstatfs64()