Searched refs:out_value (Results 1 - 3 of 3) sorted by relevance

/system/core/libcorkscrew/
H A Dptrace.c47 bool try_get_word(const memory_t* memory, uintptr_t ptr, uint32_t* out_value) { argument
51 *out_value = 0xffffffffL;
57 *out_value = 0xffffffffL;
60 *out_value = *(uint32_t*)ptr;
66 *out_value = ptrace(PTRACE_PEEKTEXT, memory->tid, (void*)ptr, NULL);
67 if (*out_value == 0xffffffffL && errno) {
76 bool try_get_word_ptrace(pid_t tid, uintptr_t ptr, uint32_t* out_value) { argument
79 return try_get_word(&memory, ptr, out_value);
/system/core/include/corkscrew/
H A Dptrace.h83 bool try_get_word(const memory_t* memory, uintptr_t ptr, uint32_t* out_value);
89 bool try_get_word_ptrace(pid_t tid, uintptr_t ptr, uint32_t* out_value);
/system/core/libcorkscrew/arch-arm/
H A Dbacktrace-arm.c212 static bool try_next_byte(const memory_t* memory, byte_stream_t* stream, uint8_t* out_value) { argument
217 *out_value = 0;
220 *out_value = stream->word >> 24;
224 *out_value = stream->word >> 16;
228 *out_value = stream->word >> 8;
232 *out_value = stream->word;
236 ALOGV("next_byte: ptr=0x%08x, value=0x%02x", stream->ptr, *out_value);
443 static bool try_get_half_word(const memory_t* memory, uint32_t pc, uint16_t* out_value) { argument
446 *out_value = pc & 2 ? word >> 16 : word & 0xffff;

Completed in 4 milliseconds