Lines Matching refs:notes
325 struct memelfnote notes[3]; in elf_kcore_store_hdr() local
388 notes[0].name = CORE_STR; in elf_kcore_store_hdr()
389 notes[0].type = NT_PRSTATUS; in elf_kcore_store_hdr()
390 notes[0].datasz = sizeof(struct elf_prstatus); in elf_kcore_store_hdr()
391 notes[0].data = &prstatus; in elf_kcore_store_hdr()
395 nhdr->p_filesz = notesize(¬es[0]); in elf_kcore_store_hdr()
396 bufp = storenote(¬es[0], bufp); in elf_kcore_store_hdr()
399 notes[1].name = CORE_STR; in elf_kcore_store_hdr()
400 notes[1].type = NT_PRPSINFO; in elf_kcore_store_hdr()
401 notes[1].datasz = sizeof(struct elf_prpsinfo); in elf_kcore_store_hdr()
402 notes[1].data = &prpsinfo; in elf_kcore_store_hdr()
412 nhdr->p_filesz += notesize(¬es[1]); in elf_kcore_store_hdr()
413 bufp = storenote(¬es[1], bufp); in elf_kcore_store_hdr()
416 notes[2].name = CORE_STR; in elf_kcore_store_hdr()
417 notes[2].type = NT_TASKSTRUCT; in elf_kcore_store_hdr()
418 notes[2].datasz = arch_task_struct_size; in elf_kcore_store_hdr()
419 notes[2].data = current; in elf_kcore_store_hdr()
421 nhdr->p_filesz += notesize(¬es[2]); in elf_kcore_store_hdr()
422 bufp = storenote(¬es[2], bufp); in elf_kcore_store_hdr()