Lines Matching defs:has_more
264 int *has_more)
279 return xfs_inobt_lookup(*curpp, 0, XFS_LOOKUP_GE, has_more);
288 error = xfs_inobt_lookup(*curpp, agino, XFS_LOOKUP_LE, has_more);
296 if (!*has_more)
301 error = xfs_inobt_get_rec(*curpp, irec, has_more);
304 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
351 int *has_more)
375 if (!has_more)
383 return xfs_inobt_lookup(*curpp, next_agino, XFS_LOOKUP_GE, has_more);
397 int has_more;
403 error = xfs_iwalk_ag_start(iwag, agno, agino, &cur, &agi_bp, &has_more);
405 while (!error && has_more) {
415 error = xfs_inobt_get_rec(cur, irec, &has_more);
416 if (error || !has_more)
430 error = xfs_btree_increment(cur, 0, &has_more);
448 error = xfs_btree_increment(cur, 0, &has_more);
449 if (error || !has_more)
460 ASSERT(has_more);
462 &has_more);
469 error = xfs_iwalk_run_callbacks(iwag, agno, &cur, &agi_bp, &has_more);