Home
last modified time | relevance | path

Searched refs:has_record (Results 1 – 4 of 4) sorted by relevance

/linux/fs/xfs/scrub/
H A Dialloc.c76 int has_record; in xchk_inobt_xref_finobt() local
81 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &has_record); in xchk_inobt_xref_finobt()
84 if (!has_record) in xchk_inobt_xref_finobt()
87 error = xfs_inobt_get_rec(cur, &frec, &has_record); in xchk_inobt_xref_finobt()
88 if (!has_record) in xchk_inobt_xref_finobt()
179 int has_record; in xchk_finobt_xref_inobt() local
184 error = xfs_inobt_lookup(cur, agino, XFS_LOOKUP_LE, &has_record); in xchk_finobt_xref_inobt()
187 if (!has_record) in xchk_finobt_xref_inobt()
190 error = xfs_inobt_get_rec(cur, &irec, &has_record); in xchk_finobt_xref_inobt()
191 if (!has_record) in xchk_finobt_xref_inobt()
H A Dinode.c652 int has_record; in xchk_inode_xref_finobt() local
665 &has_record); in xchk_inode_xref_finobt()
667 !has_record) in xchk_inode_xref_finobt()
670 error = xfs_inobt_get_rec(sc->sa.fino_cur, &rec, &has_record); in xchk_inode_xref_finobt()
672 !has_record) in xchk_inode_xref_finobt()
/linux/fs/xfs/libxfs/
H A Dxfs_ialloc.c2827 int has_record; in xfs_ialloc_count_ondisk() local
2830 error = xfs_inobt_lookup(cur, low, XFS_LOOKUP_LE, &has_record); in xfs_ialloc_count_ondisk()
2834 while (has_record) { in xfs_ialloc_count_ondisk()
2837 error = xfs_inobt_get_rec(cur, &irec, &has_record); in xfs_ialloc_count_ondisk()
2854 error = xfs_btree_increment(cur, 0, &has_record); in xfs_ialloc_count_ondisk()
/linux/tools/perf/
H A Dbuiltin-c2c.c2125 bool has_record = false; in is_valid_hist_entry() local
2135 has_record = !!c2c_he->stats.lcl_hitm; in is_valid_hist_entry()
2138 has_record = !!c2c_he->stats.rmt_hitm; in is_valid_hist_entry()
2141 has_record = !!c2c_he->stats.tot_hitm; in is_valid_hist_entry()
2144 has_record = !!c2c_he->stats.tot_peer; in is_valid_hist_entry()
2149 return has_record; in is_valid_hist_entry()