/external/e2fsprogs/lib/quota/ |
mkquota.c | 90 ext2_ino_t qf_ino; local 93 qf_ino = (qtype == USRQUOTA) ? fs->super->s_usr_quota_inum : 97 if (qf_ino < EXT2_FIRST_INODE(fs->super)) 98 quota_inode_truncate(fs, qf_ino); 488 errcode_t quota_update_limits(quota_ctx_t qctx, ext2_ino_t qf_ino, int type) 502 err = quota_file_open(qh, qctx->fs, qf_ino, type, -1, 0); 533 ext2_ino_t qf_ino; local 539 qf_ino = qtype == USRQUOTA ? fs->super->s_usr_quota_inum : 541 err = quota_file_open(&qh, fs, qf_ino, qtype, -1, 0);
|
mkquota.h | 54 errcode_t quota_update_limits(quota_ctx_t qctx, ext2_ino_t qf_ino, int type);
|
quotaio.c | 200 ext2_ino_t qf_ino, int type, int fmt, int flags) 212 log_debug("Opening quota ino=%lu, type=%d", qf_ino, type); 213 err = ext2fs_file_open(fs, qf_ino, flags, &e2_file); 221 h->qh_qf.ino = qf_ino;
|
quotaio.h | 138 ext2_ino_t qf_ino, int type, int fmt, int flags);
|
/external/e2fsprogs/misc/ |
tune2fs.c | 724 ext2_ino_t qf_ino; local 736 if ((qf_ino = quota_file_exists(fs, USRQUOTA, 738 quota_update_limits(qctx, qf_ino, USRQUOTA); 745 if ((qf_ino = quota_file_exists(fs, GRPQUOTA, 747 quota_update_limits(qctx, qf_ino, GRPQUOTA); [all...] |