OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:try_get_word
(Results
1 - 5
of
5
) sorted by null
/system/core/include/corkscrew/
ptrace.h
97
bool
try_get_word
(const memory_t* memory, uintptr_t ptr, uint32_t* out_value);
/system/core/libcorkscrew/arch-mips/
backtrace-mips.c
98
if (!
try_get_word
(memory, addr, &op))
129
if (!
try_get_word
(memory, state->sp + ra_offset, &next_ra))
/system/core/libcorkscrew/
ptrace.c
48
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/
backtrace-arm.c
156
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)) {
/system/core/libcorkscrew/arch-x86/
backtrace-x86.c
121
if (!
try_get_word
(memory, lastptr, &buf)) {
498
if (!
try_get_word
(memory, addr, &newstate->reg[reg])) {
572
if (!
try_get_word
(memory, fde, &fde_length)) {
579
if (!
try_get_word
(memory, fde + 4, &cie_offset)) {
590
if (!
try_get_word
(memory, cie, &cie_length)) {
597
if (!
try_get_word
(memory, cie + 4, &cie_offset)) {
775
if (!
try_get_word
(memory, state->reg[DWARF_EBP] + 4, &ip) ||
787
if (!
try_get_word
(memory, state->reg[DWARF_EBP], &state->reg[DWARF_EBP])) {
Completed in 240 milliseconds