Lines Matching defs:has_more
268 int *has_more)
284 return xfs_inobt_lookup(*curpp, 0, XFS_LOOKUP_GE, has_more);
293 error = xfs_inobt_lookup(*curpp, agino, XFS_LOOKUP_LE, has_more);
301 if (!*has_more)
306 error = xfs_inobt_get_rec(*curpp, irec, has_more);
309 if (XFS_IS_CORRUPT(mp, *has_more != 1))
339 return xfs_btree_increment(*curpp, 0, has_more);
346 * full (and therefore we could've just incremented the cursor) if *@has_more
347 * is true. On exit, *@has_more will indicate whether or not the caller should
355 int *has_more)
383 if (!has_more)
398 return xfs_inobt_lookup(*curpp, next_agino, XFS_LOOKUP_GE, has_more);
411 int has_more;
417 error = xfs_iwalk_ag_start(iwag, agino, &cur, &agi_bp, &has_more);
419 while (!error && has_more) {
429 error = xfs_inobt_get_rec(cur, irec, &has_more);
430 if (error || !has_more)
444 error = xfs_btree_increment(cur, 0, &has_more);
462 error = xfs_btree_increment(cur, 0, &has_more);
463 if (error || !has_more)
474 ASSERT(has_more);
475 error = xfs_iwalk_run_callbacks(iwag, &cur, &agi_bp, &has_more);
482 error = xfs_iwalk_run_callbacks(iwag, &cur, &agi_bp, &has_more);