Lines Matching refs:pi
33 unw_proc_info_t *pi,
50 pi->format = UNW_INFO_FORMAT_REMOTE_TABLE;
51 pi->start_ip = extract_unsigned_integer (buf + 0, 8, byte_order);
52 pi->end_ip = extract_unsigned_integer (buf + 8, 8, byte_order);
53 pi->gp = extract_unsigned_integer (buf + 24, 8, byte_order);
59 pi->unwind_info = NULL;
60 pi->unwind_info_size = 0;
72 pi->unwind_info_size = 8 * info_len;
75 pi->unwind_info = xmalloc (pi->unwind_info_size);
78 (gdb_byte *) pi->unwind_info, pi->unwind_info_size);
81 xfree (pi->unwind_info);
82 pi->unwind_info = NULL;
91 pi->lsda = table_addr + 8 + pi->unwind_info_size;
94 pi->lsda += 8;
96 pi->handler = 0;