Searched refs:try_get_word (Results 1 - 5 of 5) sorted by relevance

/system/core/include/corkscrew/
H A Dptrace.h97 bool try_get_word(const memory_t* memory, uintptr_t ptr, uint32_t* out_value);
/system/core/libcorkscrew/arch-mips/
H A Dbacktrace-mips.c97 if (!try_get_word(memory, addr, &op))
128 if (!try_get_word(memory, state->sp + ra_offset, &next_ra))
/system/core/libcorkscrew/arch-x86/
H A Dbacktrace-x86.c115 if (!try_get_word(memory, state->ebp + 4, &state->eip)
116 || !try_get_word(memory, state->ebp, &state->ebp)
/system/core/libcorkscrew/
H A Dptrace.c48 bool try_get_word(const memory_t* memory, uintptr_t ptr, uint32_t* out_value) { function
49 ALOGV("try_get_word: reading word at 0x%08x", ptr);
51 ALOGV("try_get_word: invalid pointer 0x%08x", ptr);
57 ALOGV("try_get_word: pointer 0x%08x not in a readable map", ptr);
69 ALOGV("try_get_word: invalid pointer 0x%08x reading from tid %d, "
80 return try_get_word(&memory, ptr, out_value);
/system/core/libcorkscrew/arch-arm/
H A Dbacktrace-arm.c156 if (!try_get_word(memory, entry, &entry_prel_pc)) {
168 if (!try_get_word(memory, next_entry, &next_entry_prel_pc)) {
181 if (!try_get_word(memory, entry_handler_ptr, &entry_handler)) {
214 if (!try_get_word(memory, stream->ptr, &stream->word)) {
250 if (!try_get_word(memory, sp, &value)) {
443 if (try_get_word(memory, pc & ~2, &word)) {

Completed in 70 milliseconds