Home | History | Annotate | Download | only in Unwind

Lines Matching defs:info

88   unw_proc_info_t info;
92 if (unw_get_proc_info(&cursor, &info) == UNW_ESUCCESS)
93 return (void *)(long) info.start_ip;
170 /// Find dwarf unwind info for an address 'pc' in some function.
177 unw_proc_info_t info;
181 unw_get_proc_info(&cursor, &info);
182 bases->tbase = (uintptr_t)info.extra;
184 bases->func = (uintptr_t)info.start_ip;
186 (void *)(long) info.unwind_info);
187 return (void *)(long) info.unwind_info;