Lines Matching refs:linfo
5932 struct bpf_line_info *linfo = NULL; in test_get_linfo() local
5941 rec_size = sizeof(*linfo); in test_get_linfo()
5994 linfo = calloc(cnt, rec_size); in test_get_linfo()
5995 if (CHECK(!linfo, "!linfo")) { in test_get_linfo()
6001 info.line_info = ptr_to_u64(linfo); in test_get_linfo()
6052 CHECK(linfo[0].insn_off, "linfo[0].insn_off:%u", in test_get_linfo()
6053 linfo[0].insn_off); in test_get_linfo()
6062 if (CHECK(linfo[i].insn_off <= linfo[i - 1].insn_off, in test_get_linfo()
6064 i, linfo[i].insn_off, in test_get_linfo()
6065 i - 1, linfo[i - 1].insn_off)) { in test_get_linfo()
6069 if (CHECK(linfo[i].file_name_off != expected_linfo->file_name_off || in test_get_linfo()
6070 linfo[i].line_off != expected_linfo->line_off || in test_get_linfo()
6071 linfo[i].line_col != expected_linfo->line_col, in test_get_linfo()
6073 linfo[i].file_name_off, in test_get_linfo()
6074 linfo[i].line_off, in test_get_linfo()
6075 linfo[i].line_col, in test_get_linfo()
6136 free(linfo); in test_get_linfo()