Lines Matching refs:t
1440 static int elf_dump_thread_status(long signr, struct elf_thread_status *t) in elf_dump_thread_status() argument
1442 struct task_struct *p = t->thread; in elf_dump_thread_status()
1445 t->num_notes = 0; in elf_dump_thread_status()
1447 fill_prstatus(&t->prstatus, p, signr); in elf_dump_thread_status()
1448 elf_core_copy_task_regs(p, &t->prstatus.pr_reg); in elf_dump_thread_status()
1450 fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus), in elf_dump_thread_status()
1451 &t->prstatus); in elf_dump_thread_status()
1452 t->num_notes++; in elf_dump_thread_status()
1453 sz += notesize(&t->notes[0]); in elf_dump_thread_status()
1455 t->prstatus.pr_fpvalid = elf_core_copy_task_fpregs(p, NULL, &t->fpu); in elf_dump_thread_status()
1456 if (t->prstatus.pr_fpvalid) { in elf_dump_thread_status()
1457 fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu), in elf_dump_thread_status()
1458 &t->fpu); in elf_dump_thread_status()
1459 t->num_notes++; in elf_dump_thread_status()
1460 sz += notesize(&t->notes[1]); in elf_dump_thread_status()
1464 if (elf_core_copy_task_xfpregs(p, &t->xfpu)) { in elf_dump_thread_status()
1465 fill_note(&t->notes[2], "LINUX", ELF_CORE_XFPREG_TYPE, in elf_dump_thread_status()
1466 sizeof(t->xfpu), &t->xfpu); in elf_dump_thread_status()
1467 t->num_notes++; in elf_dump_thread_status()
1468 sz += notesize(&t->notes[2]); in elf_dump_thread_status()
1563 struct list_head *t; in elf_fdpic_core_dump() local
1622 list_for_each(t, &thread_list) { in elf_fdpic_core_dump()
1626 tmp = list_entry(t, struct elf_thread_status, list); in elf_fdpic_core_dump()
1760 list_for_each(t, &thread_list) { in elf_fdpic_core_dump()
1762 list_entry(t, struct elf_thread_status, list); in elf_fdpic_core_dump()