Lines Matching defs:has_more
260 int *has_more)
277 return xfs_inobt_lookup(*curpp, 0, XFS_LOOKUP_GE, has_more);
286 error = xfs_inobt_lookup(*curpp, agino, XFS_LOOKUP_LE, has_more);
294 if (!*has_more)
299 error = xfs_inobt_get_rec(*curpp, irec, has_more);
302 if (XFS_IS_CORRUPT(mp, *has_more != 1)) {
334 return xfs_btree_increment(*curpp, 0, has_more);
341 * full (and therefore we could've just incremented the cursor) if *@has_more
342 * is true. On exit, *@has_more will indicate whether or not the caller should
350 int *has_more)
377 if (!has_more)
388 return xfs_inobt_lookup(*curpp, next_agino, XFS_LOOKUP_GE, has_more);
401 int has_more;
407 error = xfs_iwalk_ag_start(iwag, agino, &cur, &agi_bp, &has_more);
409 while (!error && has_more) {
419 error = xfs_inobt_get_rec(cur, irec, &has_more);
420 if (error || !has_more)
435 error = xfs_btree_increment(cur, 0, &has_more);
453 error = xfs_btree_increment(cur, 0, &has_more);
454 if (error || !has_more)
465 ASSERT(has_more);
466 error = xfs_iwalk_run_callbacks(iwag, &cur, &agi_bp, &has_more);
473 error = xfs_iwalk_run_callbacks(iwag, &cur, &agi_bp, &has_more);