Home | History | Annotate | Download | only in bionic

Lines Matching refs:frames

85   uintptr_t* frames;
90 stack_crawl_state_t(uintptr_t* frames, size_t max_depth)
91 : frames(frames), frame_count(0), max_depth(max_depth), have_skipped_self(false) {
124 state->frames[state->frame_count++] = ip;
128 __LIBC_HIDDEN__ int get_backtrace(uintptr_t* frames, size_t max_depth) {
131 stack_crawl_state_t state(frames, max_depth);
136 __LIBC_HIDDEN__ void log_backtrace(uintptr_t* frames, size_t frame_count) {
140 if (frames == NULL) {
142 frames = self_bt;
153 if (dladdr((void*) frames[i], &info) != 0) {
159 const mapinfo_t* mi = (g_map_info != NULL) ? mapinfo_find(g_map_info, frames[i], &rel_pc) : NULL;
171 i, rel_pc, soname, best_name, frames[i] - offset);