/src/sys/ufs/lfs/ |
ulfs_quota.c | 368 struct quotaval *qv = args->u.get.qc_val; local in function:quota_handle_cmd_get 369 error = lfsquota1_handle_cmd_get(ump, qk, qv); 374 struct quotaval *qv = args->u.get.qc_val; local in function:quota_handle_cmd_get 375 error = lfsquota2_handle_cmd_get(ump, qk, qv); 416 const struct quotaval *qv = args->u.put.qc_val; local in function:quota_handle_cmd_put 417 error = lfsquota1_handle_cmd_put(ump, qk, qv); 422 const struct quotaval *qv = args->u.put.qc_val; local in function:quota_handle_cmd_put 423 error = lfsquota2_handle_cmd_put(ump, qk, qv);
|
/src/usr.sbin/repquota/ |
repquota.c | 119 static int isover(struct quotaval *qv, time_t now); 230 struct quotaval qv; local in function:repquota 248 if (quotacursor_get(qc, &qk, &qv)) { 264 qvp[QUOTA_OBJTYPE_BLOCKS] = qv; 266 qvp[QUOTA_OBJTYPE_FILES] = qv; 390 exportquotaval(const struct quotaval *qv) 392 if (qv->qv_hardlimit == QUOTA_NOLIMIT) { 395 printf(" %llu", (unsigned long long)qv->qv_hardlimit); 398 if (qv->qv_softlimit == QUOTA_NOLIMIT) { 401 printf(" %llu", (unsigned long long)qv->qv_softlimit) [all...] |
/src/sys/ufs/ufs/ |
ufs_quota.c | 351 struct quotaval *qv; local in function:quota_handle_cmd_get 355 qv = args->u.get.qc_val; 365 error = quota1_handle_cmd_get(ump, qk, qv); 370 error = quota2_handle_cmd_get(ump, qk, qv); 387 const struct quotaval *qv; local in function:quota_handle_cmd_put 393 qv = args->u.put.qc_val; 412 error = quota1_handle_cmd_put(ump, qk, qv); 417 error = quota2_handle_cmd_put(ump, qk, qv);
|
/src/lib/libquota/ |
quota_oldfiles.c | 322 dqblk_getblocks(const struct dqblk *dq, struct quotaval *qv) 324 qv->qv_hardlimit = dqblk_getlimit(dq->dqb_bhardlimit); 325 qv->qv_softlimit = dqblk_getlimit(dq->dqb_bsoftlimit); 326 qv->qv_usage = dq->dqb_curblocks; 327 qv->qv_expiretime = dq->dqb_btime; 328 qv->qv_grace = QUOTA_NOTIME; 332 dqblk_getfiles(const struct dqblk *dq, struct quotaval *qv) 334 qv->qv_hardlimit = dqblk_getlimit(dq->dqb_ihardlimit); 335 qv->qv_softlimit = dqblk_getlimit(dq->dqb_isoftlimit); 336 qv->qv_usage = dq->dqb_curinodes 694 struct quotaval qv; local in function:__quota_oldfiles_delete [all...] |
/src/usr.sbin/edquota/ |
edquota.c | 105 struct quotaval qv[EDQUOTA_NUMOBJTYPES]; member in struct:quotause 222 quotaval_clear(&qup->qv[i]); 310 quotavals_to_dqblk(&qup->qv[QUOTA_LIMIT_BLOCK], 311 &qup->qv[QUOTA_LIMIT_FILE], 397 &qup->qv[QUOTA_LIMIT_BLOCK], 398 &qup->qv[QUOTA_LIMIT_FILE]); 415 if (quota_get(qh, &qk, &qup->qv[objtype]) == 0) { 427 if (quota_get(qh, &qk, &qup->qv[objtype]) == 0) { 437 quotaval_clear(&qup->qv[objtype]); 531 if (quota_put(qh, &qk, &qup->qv[QO_BLK])) 853 struct quotaval *qv; local in function:readprivs [all...] |