Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/gdb/gdb/
H A Dhpread.c576 static pst_syms_struct *pst_syms_array = 0; variable
590 pst_syms_array = (pst_syms_struct *) xmalloc (20 * sizeof (pst_syms_struct)); in init_pst_syms()
599 xfree (pst_syms_array); in clear_pst_syms()
600 pst_syms_array = 0; in clear_pst_syms()
609 pst_syms_array = (pst_syms_struct *) xrealloc (pst_syms_array, in record_pst_syms()
613 pst_syms_array[pst_syms_count - 1].start = start_sym; in record_pst_syms()
614 pst_syms_array[pst_syms_count - 1].end = end_sym; in record_pst_syms()
632 if (pst_syms_array[i].end <= index) in find_next_pst_start()
633 return (i == pst_syms_count - 1) ? 0 : pst_syms_array[i + 1].start - 1; in find_next_pst_start()
635 if (pst_syms_array[0].start > index) in find_next_pst_start()
[all …]