| /netbsd-src/lib/libquota/ |
| H A D | quota_oldfiles.c | 322 dqblk_getblocks(const struct dqblk *dq, struct quotaval *qv) in dqblk_getblocks() argument 324 qv->qv_hardlimit = dqblk_getlimit(dq->dqb_bhardlimit); in dqblk_getblocks() 325 qv->qv_softlimit = dqblk_getlimit(dq->dqb_bsoftlimit); in dqblk_getblocks() 326 qv->qv_usage = dq->dqb_curblocks; in dqblk_getblocks() 327 qv->qv_expiretime = dq->dqb_btime; in dqblk_getblocks() 328 qv->qv_grace = QUOTA_NOTIME; in dqblk_getblocks() 332 dqblk_getfiles(const struct dqblk *dq, struct quotaval *qv) in dqblk_getfiles() argument 334 qv->qv_hardlimit = dqblk_getlimit(dq->dqb_ihardlimit); in dqblk_getfiles() 335 qv->qv_softlimit = dqblk_getlimit(dq->dqb_isoftlimit); in dqblk_getfiles() 336 qv->qv_usage = dq->dqb_curinodes; in dqblk_getfiles() [all …]
|
| H A D | quota_get.c | 40 quotaval_clear(struct quotaval *qv) in quotaval_clear() argument 42 qv->qv_hardlimit = QUOTA_NOLIMIT; in quotaval_clear() 43 qv->qv_softlimit = QUOTA_NOLIMIT; in quotaval_clear() 44 qv->qv_usage = 0; in quotaval_clear() 45 qv->qv_expiretime = QUOTA_NOTIME; in quotaval_clear() 46 qv->qv_grace = QUOTA_NOTIME; in quotaval_clear() 50 quota_get(struct quotahandle *qh, const struct quotakey *qk, struct quotaval *qv) in quota_get() argument 54 return __quota_nfs_get(qh, qk, qv); in quota_get() 57 return __quota_oldfiles_get(qh, qk, qv); in quota_get() 60 return __quota_kernel_get(qh, qk, qv); in quota_get()
|
| H A D | quotapvt.h | 67 struct quotaval *qv); 69 const struct quotaval *qv); 91 struct quotaval *qv); 103 struct quotaval *qv); 105 const struct quotaval *qv); 124 int __quota_getquota(const char *path, struct quotaval *qv, uid_t id,
|
| H A D | quota_put.c | 41 const struct quotaval *qv) in quota_put() argument 49 return __quota_oldfiles_put(qh, qk, qv); in quota_put() 52 return __quota_kernel_put(qh, qk, qv); in quota_put()
|
| H A D | quota_nfs.c | 130 struct quotaval *qv) in __quota_nfs_get() argument 215 quotaval_clear(qv); in __quota_nfs_get() 224 *qv = blocks; in __quota_nfs_get() 226 *qv = inodes; in __quota_nfs_get()
|
| H A D | quota_kernel.c | 196 struct quotaval *qv) in __quota_kernel_get() argument 202 args.u.get.qc_val = qv; in __quota_kernel_get() 208 const struct quotaval *qv) in __quota_kernel_put() argument 214 args.u.put.qc_val = qv; in __quota_kernel_put()
|
| /netbsd-src/usr.bin/quota/ |
| H A D | quota.c | 91 static int isover(struct quotaval *qv, time_t now); 437 printqv(struct quotaval *qv, int isbytes, time_t now) in printqv() argument 452 over = isover(qv, now); in printqv() 454 str = intprt(buf, width, qv->qv_usage, intprtflags, hflag); in printqv() 459 str = intprt(buf, width, qv->qv_softlimit, intprtflags, hflag); in printqv() 462 str = intprt(buf, width, qv->qv_hardlimit, intprtflags, hflag); in printqv() 466 str = timeprt(buf, 9, now, qv->qv_expiretime); in printqv() 467 } else if (vflag && qv->qv_grace != QUOTA_NOTIME) { in printqv() 468 str = timeprt(buf, 9, 0, qv->qv_grace); in printqv() 581 isover(struct quotaval *qv, time_t now) in isover() argument [all …]
|
| /netbsd-src/usr.sbin/repquota/ |
| H A D | repquota.c | 119 static int isover(struct quotaval *qv, time_t now); 230 struct quotaval qv; in repquota() local 248 if (quotacursor_get(qc, &qk, &qv)) { in repquota() 264 qvp[QUOTA_OBJTYPE_BLOCKS] = qv; in repquota() 266 qvp[QUOTA_OBJTYPE_FILES] = qv; in repquota() 390 exportquotaval(const struct quotaval *qv) in exportquotaval() argument 392 if (qv->qv_hardlimit == QUOTA_NOLIMIT) { in exportquotaval() 395 printf(" %llu", (unsigned long long)qv->qv_hardlimit); in exportquotaval() 398 if (qv->qv_softlimit == QUOTA_NOLIMIT) { in exportquotaval() 401 printf(" %llu", (unsigned long long)qv->qv_softlimit); in exportquotaval() [all …]
|
| /netbsd-src/usr.sbin/edquota/ |
| H A D | edquota.c | 105 struct quotaval qv[EDQUOTA_NUMOBJTYPES]; member 222 quotaval_clear(&qup->qv[i]); in quotause_create() 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) { in dogetprivs2() 427 if (quota_get(qh, &qk, &qup->qv[objtype]) == 0) { in dogetprivs2() 437 quotaval_clear(&qup->qv[objtype]); in dogetprivs2() 531 if (quota_put(qh, &qk, &qup->qv[QO_BLK])) { in putprivs2() [all …]
|
| /netbsd-src/sys/arch/vax/vax/ |
| H A D | conf.c | 132 cons_decl(qv); 147 cons_init(qv), /* QVSS bit-mapped console driver */
|
| /netbsd-src/sys/ufs/ufs/ |
| H A D | ufs_quota.c | 351 struct quotaval *qv; in quota_handle_cmd_get() local 355 qv = args->u.get.qc_val; in quota_handle_cmd_get() 365 error = quota1_handle_cmd_get(ump, qk, qv); in quota_handle_cmd_get() 370 error = quota2_handle_cmd_get(ump, qk, qv); in quota_handle_cmd_get() 387 const struct quotaval *qv; in quota_handle_cmd_put() local 393 qv = args->u.put.qc_val; in quota_handle_cmd_put() 412 error = quota1_handle_cmd_put(ump, qk, qv); in quota_handle_cmd_put() 417 error = quota2_handle_cmd_put(ump, qk, qv); in quota_handle_cmd_put()
|
| H A D | ufs_quota2.c | 97 q2val_to_quotaval(struct quota2_val *q2v, struct quotaval *qv) in q2val_to_quotaval() argument 99 qv->qv_softlimit = q2v->q2v_softlimit; in q2val_to_quotaval() 100 qv->qv_hardlimit = q2v->q2v_hardlimit; in q2val_to_quotaval() 101 qv->qv_usage = q2v->q2v_cur; in q2val_to_quotaval() 102 qv->qv_expiretime = q2v->q2v_time; in q2val_to_quotaval() 103 qv->qv_grace = q2v->q2v_grace; in q2val_to_quotaval() 872 struct quotaval *qv) in quota2_handle_cmd_get() argument 907 qk->qk_objtype, qv); in quota2_handle_cmd_get() 910 error = quota2_fetch_quotaval(ump, qk, qv); in quota2_handle_cmd_get()
|
| H A D | ufs_quota1.c | 485 struct quotaval *qv) in quota1_handle_cmd_get() argument 522 *qv = blocks; in quota1_handle_cmd_get() 525 *qv = files; in quota1_handle_cmd_get()
|
| /netbsd-src/sys/ufs/lfs/ |
| H A D | ulfs_quota.c | 368 struct quotaval *qv = args->u.get.qc_val; in quota_handle_cmd_get() local 369 error = lfsquota1_handle_cmd_get(ump, qk, qv); in quota_handle_cmd_get() 374 struct quotaval *qv = args->u.get.qc_val; in quota_handle_cmd_get() local 375 error = lfsquota2_handle_cmd_get(ump, qk, qv); in quota_handle_cmd_get() 416 const struct quotaval *qv = args->u.put.qc_val; in quota_handle_cmd_put() local 417 error = lfsquota1_handle_cmd_put(ump, qk, qv); in quota_handle_cmd_put() 422 const struct quotaval *qv = args->u.put.qc_val; in quota_handle_cmd_put() local 423 error = lfsquota2_handle_cmd_put(ump, qk, qv); in quota_handle_cmd_put()
|
| H A D | ulfs_quota2.c | 102 q2val_to_quotaval(struct quota2_val *q2v, struct quotaval *qv) in q2val_to_quotaval() argument 104 qv->qv_softlimit = q2v->q2v_softlimit; in q2val_to_quotaval() 105 qv->qv_hardlimit = q2v->q2v_hardlimit; in q2val_to_quotaval() 106 qv->qv_usage = q2v->q2v_cur; in q2val_to_quotaval() 107 qv->qv_expiretime = q2v->q2v_time; in q2val_to_quotaval() 108 qv->qv_grace = q2v->q2v_grace; in q2val_to_quotaval() 867 struct quotaval *qv) in lfsquota2_handle_cmd_get() argument 903 qk->qk_objtype, qv); in lfsquota2_handle_cmd_get() 906 error = quota2_fetch_quotaval(ump, qk, qv); in lfsquota2_handle_cmd_get()
|
| H A D | ulfs_quota1.c | 475 struct quotaval *qv) in lfsquota1_handle_cmd_get() argument 512 *qv = blocks; in lfsquota1_handle_cmd_get() 515 *qv = files; in lfsquota1_handle_cmd_get()
|
| /netbsd-src/sys/arch/vax/conf/ |
| H A D | files.vax | 199 device qv {}: displaydev, wsemuldisplaydev 200 attach qv at uba 201 attach genfb at qv with genfb_qv 202 file arch/vax/uba/qv.c qv|genfb_qv needs-flag 205 attach qvaux at qv
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/hx509/data/ |
| H A D | proxy-level-test.crt | 2 MIIFVTCCAz2gAwIBAgIJAOXO+qv/iXxEMA0GCSqGSIb3DQEBCwUAMDExCzAJBgNV
|
| /netbsd-src/sys/kern/ |
| H A D | kern_sysctl.c | 1960 sysctlfn func, u_quad_t qv, void *newp, size_t newlen, in sysctl_createv() argument 2035 nnode.sysctl_alias = qv; in sysctl_createv() 2039 nnode.sysctl_bdata = qv; in sysctl_createv() 2042 nnode.sysctl_idata = qv; in sysctl_createv() 2045 nnode.sysctl_qdata = qv; in sysctl_createv()
|
| /netbsd-src/sys/sys/ |
| H A D | sysctl.h | 1166 #define sysctl_createv(lg, cfl, rn, cn, fl, type, nm, desc, fn, qv, newp, ...) \ argument 1167 sysctl_createv(lg, cfl, rn, cn, fl, type, nm, desc, fn, qv, \
|
| /netbsd-src/sys/arch/vax/uba/ |
| H A D | qv.c | 230 CFATTACH_DECL_NEW(qv, sizeof(struct qv_softc), 971 cons_decl(qv);
|
| /netbsd-src/usr.sbin/makemandb/ |
| H A D | stopwords.txt | 387 qv
|
| /netbsd-src/external/lgpl3/gmp/dist/demos/perl/ |
| H A D | GMP.xs | 2490 overload_lshift (qv, nv, order) 2491 SV *qv 2508 SV_PTR_SWAP (qv, nv); 2510 (*table[ix].op) (RETVAL->m, coerce_mpq (RETVAL->m, qv), coerce_ulong (nv));
|
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | shell.c | 4664 unsigned long qv = *pIn++; in toBase64() local 4666 qv <<= 8; in toBase64() 4667 if( nbe<nbIn ) qv |= *pIn++; in toBase64() 4670 char ce = (nbe<nco)? BX_NUMERAL((u8)(qv & 0x3f)) : PAD_CHAR; in toBase64() 4671 qv >>= 6; in toBase64() 4694 unsigned long qv = 0L; in fromBase64() local 4719 qv = qv<<6 | bdp; in fromBase64() 4725 pOut[2] = (qv) & 0xff; in fromBase64() 4727 pOut[1] = (qv>>8) & 0xff; in fromBase64() 4729 pOut[0] = (qv>>16) & 0xff; in fromBase64() [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/binutils/ |
| H A D | README-how-to-make-a-release | 143 qv: https://translationproject.org/html/maintainers.html
|