HomeSort by relevance Sort by last modified time
    Searched defs:scopeFlags (Results 1 - 4 of 4) sorted by null

  /system/core/debuggerd/x86/
machine.c 41 int scopeFlags = (at_fault ? SCOPE_AT_FAULT : 0);
44 _LOG(log, scopeFlags, "cannot get registers: %s\n", strerror(errno));
50 _LOG(log, scopeFlags, " eax %08x ebx %08x ecx %08x edx %08x\n",
52 _LOG(log, scopeFlags, " esi %08x edi %08x\n",
54 _LOG(log, scopeFlags, " xcs %08x xds %08x xes %08x xfs %08x xss %08x\n",
56 _LOG(log, scopeFlags, " eip %08x ebp %08x esp %08x flags %08x\n",
  /system/core/debuggerd/arm/
machine.c 45 static void dump_memory(log_t* log, pid_t tid, uintptr_t addr, int scopeFlags) {
105 _LOG(log, scopeFlags, " %s %s\n", code_buffer, ascii_buffer);
120 int scopeFlags = at_fault ? SCOPE_AT_FAULT : 0;
137 _LOG(log, scopeFlags | SCOPE_SENSITIVE, "\nmemory near %.2s:\n", &REG_NAMES[reg * 2]);
138 dump_memory(log, tid, addr, scopeFlags | SCOPE_SENSITIVE);
143 _LOG(log, scopeFlags, "\ncode around pc:\n");
144 dump_memory(log, tid, (uintptr_t)regs.ARM_pc, scopeFlags);
147 _LOG(log, scopeFlags, "\ncode around lr:\n");
148 dump_memory(log, tid, (uintptr_t)regs.ARM_lr, scopeFlags);
156 int scopeFlags = at_fault ? SCOPE_AT_FAULT : 0
    [all...]
  /system/core/debuggerd/mips/
machine.c 39 static void dump_memory(log_t* log, pid_t tid, uintptr_t addr, int scopeFlags) {
95 _LOG(log, scopeFlags, " %s %s\n", code_buffer, ascii_buffer);
110 int scopeFlags = at_fault ? SCOPE_AT_FAULT : 0;
133 _LOG(log, scopeFlags | SCOPE_SENSITIVE, "\nmemory near %.2s:\n", &REG_NAMES[reg * 2]);
134 dump_memory(log, tid, addr, scopeFlags | SCOPE_SENSITIVE);
141 _LOG(log, scopeFlags, "\ncode around pc:\n");
142 dump_memory(log, tid, (uintptr_t)pc, scopeFlags);
145 _LOG(log, scopeFlags, "\ncode around ra:\n");
146 dump_memory(log, tid, (uintptr_t)ra, scopeFlags);
154 int scopeFlags = at_fault ? SCOPE_AT_FAULT : 0
    [all...]
  /system/core/debuggerd/
tombstone.c 236 int scopeFlags = at_fault ? SCOPE_AT_FAULT : 0;
237 _LOG(log, scopeFlags, "\nbacktrace:\n");
245 _LOG(log, scopeFlags, " %s\n", line);
251 int scopeFlags, uintptr_t* sp, size_t words, int label) {
268 _LOG(log, scopeFlags, " #%02d %08x %08x %s (%s+%u)\n",
271 _LOG(log, scopeFlags, " #%02d %08x %08x %s (%s)\n",
276 _LOG(log, scopeFlags, " %08x %08x %s (%s+%u)\n",
279 _LOG(log, scopeFlags, " %08x %08x %s (%s)\n",
286 _LOG(log, scopeFlags, " #%02d %08x %08x %s\n",
289 _LOG(log, scopeFlags, " %08x %08x %s\n"
    [all...]

Completed in 101 milliseconds