Lines Matching refs:statmount
37 static struct statmount *statmount_alloc(uint64_t mnt_id, uint64_t mask, unsigned int flags) in statmount_alloc()
40 struct statmount *buf = NULL, *tmp = alloca(bufsize); in statmount_alloc()
45 ret = statmount(mnt_id, 0, mask, tmp, bufsize, flags); in statmount_alloc()
238 struct statmount sm; in test_statmount_zero_mask()
241 ret = statmount(root_id, 0, 0, &sm, sizeof(sm), 0); in test_statmount_zero_mask()
263 struct statmount sm; in test_statmount_mnt_basic()
267 ret = statmount(root_id, 0, mask, &sm, sizeof(sm), 0); in test_statmount_mnt_basic()
321 struct statmount sm; in test_statmount_sb_basic()
327 ret = statmount(root_id, 0, mask, &sm, sizeof(sm), 0); in test_statmount_sb_basic()
377 struct statmount *sm; in test_statmount_mnt_point()
398 struct statmount *sm; in test_statmount_mnt_root()
430 struct statmount *sm; in test_statmount_fs_type()
454 struct statmount *sm; in test_statmount_mnt_opts()
536 struct statmount *sm; in test_statmount_string()
570 ret = statmount(root_id, 0, mask, sm, exactsize, 0); in test_statmount_string()
577 ret = statmount(root_id, 0, mask, sm, shortsize, 0); in test_statmount_string()
642 #define str_off(memb) (offsetof(struct statmount, memb) / sizeof(uint32_t))
653 ret = statmount(0, 0, 0, NULL, 0, 0); in main()