HomeSort by relevance Sort by last modified time
    Searched refs:qctx (Results 1 - 19 of 19) sorted by null

  /external/f2fs-tools/fsck/
mkquota.c 66 quota_ctx_t qctx = fsck->qctx; local
71 if ((!qctx) || (!sb->qf_ino[qtype]))
80 dict = qctx->quota_dict[qtype];
174 fsck->qctx = ctx;
178 void quota_release_context(quota_ctx_t *qctx)
184 if (!qctx)
187 ctx = *qctx;
197 *qctx = NULL;
224 void quota_data_add(quota_ctx_t qctx, struct f2fs_inode *inode, qsize_t space
363 quota_ctx_t qctx = fsck->qctx; local
    [all...]
quotaio.c 102 quota_ctx_t qctx = fsck->qctx; local
113 if (qctx->quota_file[qtype]) {
114 h = qctx->quota_file[qtype];
149 qctx->quota_file[qtype] = h;
192 quota_ctx_t qctx = fsck->qctx; local
204 if (qctx->quota_file[h->qh_type] == h)
205 quota_free_mem(&qctx->quota_file[h->qh_type]);
quotaio.h 211 void quota_data_inodes(quota_ctx_t qctx, struct f2fs_inode *inode, int adjust);
212 void quota_data_add(quota_ctx_t qctx, struct f2fs_inode *inode, qsize_t space);
213 void quota_data_sub(quota_ctx_t qctx, struct f2fs_inode *inode, qsize_t space);
215 void quota_add_inode_usage(quota_ctx_t qctx, f2fs_ino_t ino,
217 void quota_release_context(quota_ctx_t *qctx);
fsck.h 103 struct quota_ctx *qctx; member in struct:f2fs_fsck
fsck.c 535 quota_add_inode_usage(fsck->qctx, nid, &node_blk->i);
    [all...]
  /external/e2fsprogs/lib/support/
mkquota.c 163 errcode_t quota_write_inode(quota_ctx_t qctx, unsigned int qtype_bits)
172 if (!qctx)
175 fs = qctx->fs;
193 dict = qctx->quota_dict[qtype];
205 retval = quota_file_close(qctx, h);
252 static inline int project_quota_valid(quota_ctx_t qctx)
254 return (EXT2_INODE_SIZE(qctx->fs->super) > EXT2_GOOD_OLD_INODE_SIZE);
291 errcode_t quota_init_context(quota_ctx_t *qctx, ext2_filsys fs,
327 *qctx = ctx;
331 void quota_release_context(quota_ctx_t *qctx)
    [all...]
quotaio.h 11 * quota_ctx_t qctx;
13 * quota_init_context(&qctx, fs, QUOTA_ALL_BIT);
15 * quota_compute_usage(qctx);
19 * quota_write_inode(qctx, USRQUOTA);
20 * quota_write_inode(qctx, GRPQUOTA);
21 * quota_release_context(&qctx);
189 errcode_t quota_file_open(quota_ctx_t qctx, struct quota_handle *h,
199 errcode_t quota_file_close(quota_ctx_t qctx, struct quota_handle *h);
218 errcode_t quota_init_context(quota_ctx_t *qctx, ext2_filsys fs,
220 void quota_data_inodes(quota_ctx_t qctx, struct ext2_inode_large *inode
    [all...]
quotaio.c 213 errcode_t quota_file_open(quota_ctx_t qctx, struct quota_handle *h,
217 ext2_filsys fs = qctx->fs;
243 if (qctx->quota_file[qtype]) {
244 h = qctx->quota_file[qtype];
250 (void) quota_file_close(qctx, h);
286 qctx->quota_file[qtype] = h;
406 errcode_t quota_file_close(quota_ctx_t qctx, struct quota_handle *h)
427 if (qctx->quota_file[h->qh_type] == h)
428 ext2fs_free_mem(&qctx->quota_file[h->qh_type]);
  /external/e2fsprogs/e2fsck/
super.c 176 if (ctx->qctx)
177 quota_data_sub(ctx->qctx, pb->inode, 0, ctx->fs->blocksize);
254 if (ctx->qctx)
255 quota_data_sub(ctx->qctx, inode, 0,
275 retval = quota_init_context(&ctx->qctx, ctx->fs, 0);
284 retval = quota_update_limits(ctx->qctx, qf_ino, qtype);
289 quota_release_context(&ctx->qctx);
305 pctx.errcode = quota_write_inode(ctx->qctx, 1 << qtype);
312 quota_release_context(&ctx->qctx);
351 if (ctx->qctx)
    [all...]
pass4.c 67 quota_data_inodes(ctx->qctx, inode, i, -1);
extents.c 254 quota_data_sub(ctx->qctx, &inode, ino,
312 quota_data_add(ctx->qctx, &inode, ino, delta);
pass1b.c 709 quota_data_sub(ctx->qctx, &dp->inode, ino,
711 quota_data_inodes(ctx->qctx, &dp->inode, ino, -1);
746 quota_data_sub(ctx->qctx, &dp->inode, ino,
pass3.c 581 quota_data_add(ctx->qctx, &inode, ino, EXT2_CLUSTER_SIZE(fs->super));
582 quota_data_inodes(ctx->qctx, &inode, ino, +1);
902 quota_data_add(ctx->qctx, &inode, dir,
unix.c     [all...]
e2fsck.h 343 quota_ctx_t qctx; member in struct:e2fsck_struct
pass1.c     [all...]
  /external/e2fsprogs/misc/
tune2fs.c 1612 quota_ctx_t qctx; local
    [all...]
mke2fs.c 2774 quota_ctx_t qctx; local
    [all...]
  /external/tensorflow/tensorflow/core/grappler/costs/
graph_properties.cc 2007 auto qctx = shape_refiner->GetContext(qnode); local
    [all...]

Completed in 2993 milliseconds