Home | History | Annotate | Download | only in ppc32

Lines Matching refs:unw_word_t

104 get_dyn_info_list_addr (unw_addr_space_t as, unw_word_t *dyn_info_list_addr,
107 *dyn_info_list_addr = (unw_word_t) &_U_dyn_info_list;
112 access_mem (unw_addr_space_t as, unw_word_t addr, unw_word_t *val, int write,
119 if (map_local_is_writable (addr, sizeof(unw_word_t)))
123 *(unw_word_t *) addr = *val;
138 if (map_local_is_readable (addr, sizeof(unw_word_t)))
141 *val = *(unw_word_t *) addr;
157 access_reg (unw_addr_space_t as, unw_regnum_t reg, unw_word_t *val,
160 unw_word_t *addr;
173 *(unw_word_t *) addr = *val;
178 *val = *(unw_word_t *) addr;
221 get_static_proc_name (unw_addr_space_t as, unw_word_t ip,
222 char *buf, size_t buf_len, unw_word_t *offp,