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

/system/core/libcorkscrew/
H A Dptrace.c48 bool try_get_word(const memory_t* memory, uintptr_t ptr, uint32_t* out_value) { argument
52 *out_value = 0xffffffffL;
58 *out_value = 0xffffffffL;
61 *out_value = *(uint32_t*)ptr;
67 *out_value = ptrace(PTRACE_PEEKTEXT, memory->tid, (void*)ptr, NULL);
68 if (*out_value == 0xffffffffL && errno) {
77 bool try_get_word_ptrace(pid_t tid, uintptr_t ptr, uint32_t* out_value) { argument
80 return try_get_word(&memory, ptr, out_value);
/system/core/include/corkscrew/
H A Dptrace.h97 bool try_get_word(const memory_t* memory, uintptr_t ptr, uint32_t* out_value);
103 bool try_get_word_ptrace(pid_t tid, uintptr_t ptr, uint32_t* out_value);
/system/core/libcutils/
H A Dfs.c77 int fs_read_atomic_int(const char* path, int* out_value) { argument
89 if (sscanf(buf, "%d", out_value) != 1) {
98 *out_value = -1;
/system/core/libcorkscrew/arch-arm/
H A Dbacktrace-arm.c210 static bool try_next_byte(const memory_t* memory, byte_stream_t* stream, uint8_t* out_value) { argument
215 *out_value = 0;
218 *out_value = stream->word >> 24;
222 *out_value = stream->word >> 16;
226 *out_value = stream->word >> 8;
230 *out_value = stream->word;
234 ALOGV("next_byte: ptr=0x%08x, value=0x%02x", stream->ptr, *out_value);
441 static bool try_get_half_word(const memory_t* memory, uint32_t pc, uint16_t* out_value) { argument
444 *out_value = pc & 2 ? word >> 16 : word & 0xffff;

Completed in 601 milliseconds