Searched defs:fde_count (Results 1 - 5 of 5) sorted by relevance

/external/libunwind/src/dwarf/
H A DGfind_unwind_table.c44 unw_word_t addr, eh_frame_start, fde_count, load_base; local
170 /* (Optionally) read fde_count: */
173 &fde_count, NULL)) < 0)
194 fde_count = ~0UL;
199 eh_frame_start, eh_frame_end, fde_count,
209 edi->di_cache.u.rti.table_len = (fde_count * 8) / sizeof (unw_word_t);
H A DGfind_proc_info-lsb.c52 unw_word_t fde_count,
59 while (i++ < fde_count && addr < eh_frame_end)
523 unw_word_t addr, eh_frame_start, eh_frame_end, fde_count, ip; local
615 /* (Optionally) read fde_count: */
618 &fde_count, NULL)) < 0)
647 fde_count = ~0UL;
655 eh_frame_start, eh_frame_end, fde_count,
668 di->u.rti.table_len = (fde_count * sizeof (struct table_entry)
50 linear_search(unw_addr_space_t as, unw_word_t ip, unw_word_t eh_frame_start, unw_word_t eh_frame_end, unw_word_t fde_count, unw_proc_info_t *pi, int need_unwind_info, void *arg) argument
/external/elfutils/0.153/libdw/
H A Ddwarf_getcfi_elf.c129 Dwarf_Word fde_count; local
131 &fde_count)))
133 if (fde_count != 0 && (size_t) fde_count == fde_count
137 *table_entries = fde_count;
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dunwind.c210 * encoded_t fde_count;
220 * } binary_search_table[fde_count];
227 u64 *fde_count)
242 *fde_count = dw_read_encoded_value(enc, end, hdr.fde_count_enc);
249 u64 *table_data, u64 *segbase, u64 *fde_count)
264 fde_count);
286 u64 table_data, segbase, fde_count; local
295 &table_data, &segbase, &fde_count))
304 di.u.rti.table_len = fde_count * sizeof(struct table_entry)
225 unwind_spec_ehframe(struct dso *dso, struct machine *machine, u64 offset, u64 *table_data, u64 *segbase, u64 *fde_count) argument
248 read_unwind_spec(struct dso *dso, struct machine *machine, u64 *table_data, u64 *segbase, u64 *fde_count) argument
/external/elfutils/0.153/src/
H A Dreadelf.c6885 uint64_t fde_count = 0; local
6888 readp = read_encoded (fde_count_enc, readp, dataend, &fde_count, dbg);
6892 printf (" fde_count: %" PRIu64 "\n", fde_count);
6895 if (fde_count == 0 || table_enc == DW_EH_PE_omit)
6902 while (fde_count > 0 && readp + 8 <= dataend)

Completed in 3695 milliseconds