HomeSort by relevance Sort by last modified time
    Searched defs:dquot (Results 1 - 6 of 6) sorted by null

  /external/f2fs-tools/fsck/
quotaio.c 49 void update_grace_times(struct dquot *q)
210 struct dquot *get_empty_dquot(void)
212 struct dquot *dquot; local
214 if (quota_get_memzero(sizeof(struct dquot), &dquot)) {
215 log_err("Failed to allocate dquot");
219 dquot->dq_id = -1;
220 return dquot;
quotaio_tree.c 35 /* Is given dquot empty? */
193 /* Find space for dquot */
195 struct dquot *dquot, int *err)
244 dquot->dq_dqb.u.v2_mdqb.dqb_off =
252 static int do_insert_tree(struct quota_handle *h, struct dquot *dquot,
278 newblk = le32_to_cpu(ref[get_index(dquot->dq_id, depth)]);
285 ref[get_index(dquot->dq_id, depth)]);
286 newblk = find_free_dqentry(h, dquot, &ret)
515 struct dquot *dquot = get_empty_dquot(); local
653 struct dquot *dquot = get_empty_dquot(); local
    [all...]
quotaio.h 138 } u; /* Format specific dquot information */
142 struct dquot { struct
143 struct dquot *dq_next; /* Pointer to next dquot in the list */
144 qid_t dq_id; /* ID dquot belongs to */
146 struct quota_handle *dq_h; /* Handle of quotafile for this dquot */
147 struct util_dqblk dq_dqb; /* Parsed data of dquot */
164 /* Read dquot into memory */
165 struct dquot *(*read_dquot) (struct quota_handle *h, qid_t id);
166 /* Write given dquot to disk *
    [all...]
  /external/e2fsprogs/lib/support/
quotaio.c 84 void update_grace_times(struct dquot *q)
430 struct dquot *get_empty_dquot(void)
432 struct dquot *dquot; local
434 if (ext2fs_get_memzero(sizeof(struct dquot), &dquot)) {
435 log_err("Failed to allocate dquot");
439 dquot->dq_id = -1;
440 return dquot;
quotaio_tree.c 34 /* Is given dquot empty? */
193 /* Find space for dquot */
195 struct dquot *dquot, int *err)
244 dquot->dq_dqb.u.v2_mdqb.dqb_off =
252 static int do_insert_tree(struct quota_handle *h, struct dquot *dquot,
278 newblk = ext2fs_le32_to_cpu(ref[get_index(dquot->dq_id, depth)]);
285 ref[get_index(dquot->dq_id, depth)]);
286 newblk = find_free_dqentry(h, dquot, &ret)
512 struct dquot *dquot = get_empty_dquot(); local
648 struct dquot *dquot = get_empty_dquot(); local
    [all...]
quotaio.h 145 } u; /* Format specific dquot information */
149 struct dquot { struct
150 struct dquot *dq_next; /* Pointer to next dquot in the list */
151 qid_t dq_id; /* ID dquot belongs to */
153 struct quota_handle *dq_h; /* Handle of quotafile for this dquot */
154 struct util_dqblk dq_dqb; /* Parsed data of dquot */
171 /* Read dquot into memory */
172 struct dquot *(*read_dquot) (struct quota_handle *h, qid_t id);
173 /* Write given dquot to disk *
    [all...]

Completed in 80 milliseconds