Home | History | Annotate | Download | only in libcorkscrew

Lines Matching refs:tid

39     memory->tid = -1;
43 void init_memory_ptrace(memory_t* memory, pid_t tid) {
44 memory->tid = tid;
55 if (memory->tid < 0) {
71 *out_value = ptrace(PTRACE_PEEKTEXT, memory->tid, (void*)ptr, NULL);
73 ALOGV("try_get_word: invalid pointer 0x%08x reading from tid %d, "
74 "ptrace() errno=%d", ptr, memory->tid, errno);
82 bool try_get_word_ptrace(pid_t tid, uintptr_t ptr, uint32_t* out_value) {
84 init_memory_ptrace(&memory, tid);