| /src/sys/arch/vax/vax/ |
| conf.c | 50 #include "qv.h" 132 cons_decl(qv); variable 147 cons_init(qv), /* QVSS bit-mapped console driver */
|
| /src/sys/ufs/ufs/ |
| ufs_quota.c | 355 struct quotaval *qv; local 359 qv = args->u.get.qc_val; 369 error = quota1_handle_cmd_get(ump, qk, qv); 374 error = quota2_handle_cmd_get(ump, qk, qv); 391 const struct quotaval *qv; local 397 qv = args->u.put.qc_val; 416 error = quota1_handle_cmd_put(ump, qk, qv); 421 error = quota2_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 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/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 [all...] |
| /src/sys/ufs/lfs/ |
| ulfs_quota.c | 368 struct quotaval *qv = args->u.get.qc_val; local 369 error = lfsquota1_handle_cmd_get(ump, qk, qv); 374 struct quotaval *qv = args->u.get.qc_val; local 375 error = lfsquota2_handle_cmd_get(ump, qk, qv); 416 const struct quotaval *qv = args->u.put.qc_val; local 417 error = lfsquota1_handle_cmd_put(ump, qk, qv); 422 const struct quotaval *qv = args->u.put.qc_val; local 423 error = lfsquota2_handle_cmd_put(ump, qk, qv);
|
| /src/sys/arch/vax/uba/ |
| qv.c | 1 /* $NetBSD: qv.c,v 1.38 2021/08/07 16:19:07 thorpej Exp $ */ 34 __KERNEL_RCSID(0, "$NetBSD: qv.c,v 1.38 2021/08/07 16:19:07 thorpej Exp $"); 59 #include "qv.h" 230 CFATTACH_DECL_NEW(qv, sizeof(struct qv_softc), 255 /* initialize qv interrupt controller */ 479 CFARGS(.iattr = "qv")) != NULL) { 481 CFARGS(.iattr = "qv")); 971 cons_decl(qv); variable 995 printf("qv: could not find 8x15 font\n"); 999 printf("qv: could not lock 8x15 font\n") [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 [all...] |