Home
last modified time | relevance | path

Searched refs:dqb32 (Results 1 – 2 of 2) sorted by relevance

/freebsd/lib/libutil/
H A Dquotafile.c283 struct dqblk32 dqb32; in quota_read32() local
289 switch (read(qf->fd, &dqb32, sizeof(dqb32))) { in quota_read32()
293 case sizeof(dqb32): in quota_read32()
294 dqb->dqb_bhardlimit = dqb32.dqb_bhardlimit; in quota_read32()
295 dqb->dqb_bsoftlimit = dqb32.dqb_bsoftlimit; in quota_read32()
296 dqb->dqb_curblocks = dqb32.dqb_curblocks; in quota_read32()
297 dqb->dqb_ihardlimit = dqb32.dqb_ihardlimit; in quota_read32()
298 dqb->dqb_isoftlimit = dqb32.dqb_isoftlimit; in quota_read32()
299 dqb->dqb_curinodes = dqb32.dqb_curinodes; in quota_read32()
300 dqb->dqb_btime = dqb32.dqb_btime; in quota_read32()
[all …]
/freebsd/sys/ufs/ufs/
H A Dufs_quota.c948 struct dqblk32 dqb32; in getquota32() local
955 dqb64_dqb32(&dqb64, &dqb32); in getquota32()
956 error = copyout(&dqb32, addr, sizeof(dqb32)); in getquota32()
964 struct dqblk32 dqb32; in setquota32() local
968 error = copyin(addr, &dqb32, sizeof(dqb32)); in setquota32()
971 dqb32_dqb64(&dqb32, &dqb64); in setquota32()
979 struct dqblk32 dqb32; in setuse32() local
983 error = copyin(addr, &dqb32, sizeof(dqb32)); in setuse32()
986 dqb32_dqb64(&dqb32, &dqb64); in setuse32()
1777 dqb32_dq(const struct dqblk32 *dqb32, struct dquot *dq) in dqb32_dq() argument
[all …]