Searched refs:prstatus (Results 1 – 17 of 17) sorted by relevance
/external/libunwind/src/coredump/ |
D | _UCD_access_reg_freebsd.c | 44 *valp = ui->prstatus->pr_reg.r_eax; in _UCD_access_reg() 47 *valp = ui->prstatus->pr_reg.r_edx; in _UCD_access_reg() 50 *valp = ui->prstatus->pr_reg.r_ecx; in _UCD_access_reg() 53 *valp = ui->prstatus->pr_reg.r_ebx; in _UCD_access_reg() 56 *valp = ui->prstatus->pr_reg.r_esi; in _UCD_access_reg() 59 *valp = ui->prstatus->pr_reg.r_edi; in _UCD_access_reg() 62 *valp = ui->prstatus->pr_reg.r_ebp; in _UCD_access_reg() 65 *valp = ui->prstatus->pr_reg.r_esp; in _UCD_access_reg() 68 *valp = ui->prstatus->pr_reg.r_eip; in _UCD_access_reg() 71 *valp = ui->prstatus->pr_reg.r_eflags; in _UCD_access_reg() [all …]
|
D | _UCD_access_reg_linux.c | 130 (long)ui->prstatus->pr_reg[regnum], in _UCD_access_reg() 131 (long)ui->prstatus->pr_reg[regnum] in _UCD_access_reg() 133 *valp = ui->prstatus->pr_reg[regnum]; in _UCD_access_reg()
|
D | _UCD_internal.h | 80 #define PRSTATUS_STRUCT prstatus 93 struct PRSTATUS_STRUCT *prstatus; /* points inside note_phdr */ member
|
D | _UCD_create.c | 277 ui->prstatus = ui->threads[0]; in _UCD_create() 294 ui->prstatus = ui->threads[n]; in _UCD_select_thread() 299 return ui->prstatus->pr_pid; in _UCD_get_pid() 304 return ui->prstatus->pr_cursig; in _UCD_get_cursig()
|
/external/elfutils/src/backends/ |
D | linux-core-note.c | 73 struct EBLHOOK(prstatus) in EBLHOOK() argument 124 .offset = offsetof (struct EBLHOOK(prstatus), pr_##item), \ 237 if (nhdr->n_descsz != sizeof (struct EBLHOOK(prstatus))) 239 *regs_offset = offsetof (struct EBLHOOK(prstatus), pr_reg);
|
D | ppc_corenote.c | 125 .offset = offsetof (struct EBLHOOK(prstatus), pr_reg[32]), \ 130 .offset = offsetof (struct EBLHOOK(prstatus), pr_reg[34]), \
|
D | aarch64_corenote.c | 65 .offset = (offsetof (struct EBLHOOK(prstatus), pr_reg) \ 72 .offset = (offsetof (struct EBLHOOK(prstatus), pr_reg) \
|
D | arm_corenote.c | 53 .offset = offsetof (struct EBLHOOK(prstatus), pr_reg) + (4 * 17), \
|
D | sh_corenote.c | 75 .offset = offsetof (struct EBLHOOK(prstatus), pr_reg[22]), \
|
D | x86_64_corenote.c | 96 .offset = offsetof (struct EBLHOOK(prstatus), pr_reg) + (8 * 15), \
|
D | i386_corenote.c | 87 .offset = offsetof (struct EBLHOOK(prstatus), pr_reg) + (4 * 11), \
|
D | s390_corenote.c | 135 .offset = offsetof (struct EBLHOOK(prstatus), \
|
D | ChangeLog | 272 (struct EBLHOOK(prstatus)): Change field pr_reg to anonymous struct with
|
/external/lldb/source/Plugins/Process/elf-core/ |
D | ProcessElfCore.cpp | 504 ELFLinuxPrStatus prstatus; in ParseThreadContextsFromNoteSegment() local 563 prstatus.Parse(note_data, arch); in ParseThreadContextsFromNoteSegment() 564 thread_data->signo = prstatus.pr_cursig; in ParseThreadContextsFromNoteSegment()
|
/external/google-breakpad/src/tools/linux/md2core/ |
D | minidump-2-core.cc | 142 typedef struct prstatus { /* Information about thread; includes CPU reg*/ struct 157 } prstatus; argument 746 struct prstatus pr; in WriteThread() 757 nhdr.n_descsz = sizeof(struct prstatus); in WriteThread() 761 !writea(1, &pr, sizeof(struct prstatus))) { in WriteThread() 1116 (sizeof(Nhdr) + 8 + sizeof(prstatus)) in main()
|
/external/valgrind/coregrind/m_coredump/ |
D | coredump-elf.c | 551 struct vki_elf_prstatus prstatus; in dump_one_thread() local 568 fill_prstatus(&VG_(threads)[tid], &prstatus, si); in dump_one_thread() 573 add_note(notelist, "CORE", NT_PRSTATUS, &prstatus, sizeof(prstatus)); in dump_one_thread()
|
/external/libunwind/ |
D | configure.ac | 55 AC_CHECK_TYPES([struct elf_prstatus, struct prstatus], [], [],
|