Lines Matching refs:point_r
64 struct mountpoint *point_r)
68 i_zero(point_r);
77 point_r->device_path = p_strdup(pool, buf.f_mntfromname);
78 point_r->mount_path = p_strdup(pool, buf.f_mntonname);
80 point_r->type = p_strdup(pool, getvfsbynumber(buf.f_type));
82 point_r->type = p_strdup(pool, buf.f_fstypename);
84 point_r->block_size = buf.f_bsize;
89 int mountpoint_get(const char *path, pool_t pool, struct mountpoint *point_r)
92 i_zero(point_r);
97 return mountpoint_get_statvfs(path, pool, point_r);
104 i_zero(point_r);
120 point_r->device_path = p_strdup(pool, mnt->device_path);
121 point_r->mount_path = p_strdup(pool, mnt->mount_path);
122 point_r->type = p_strdup(pool, mnt->type);
123 point_r->dev = mnt->dev;
124 point_r->block_size = st.st_blksize;