Lines Matching full:note

97 } QEMU_PACKED Note;  typedef
100 Note note; member
110 Note *note = &arg->note; in ppc_write_elf_prstatus() local
113 note->hdr.n_type = cpu_to_dump32(s, NT_PRSTATUS); in ppc_write_elf_prstatus()
115 prstatus = &note->contents.prstatus; in ppc_write_elf_prstatus()
140 Note *note = &arg->note; in ppc_write_elf_fpregset() local
143 note->hdr.n_type = cpu_to_dump32(s, NT_PRFPREG); in ppc_write_elf_fpregset()
145 fpregset = &note->contents.fpregset; in ppc_write_elf_fpregset()
159 Note *note = &arg->note; in ppc_write_elf_vmxregset() local
162 note->hdr.n_type = cpu_to_dump32(s, NT_PPC_VMX); in ppc_write_elf_vmxregset()
163 vmxregset = &note->contents.vmxregset; in ppc_write_elf_vmxregset()
191 Note *note = &arg->note; in ppc_write_elf_vsxregset() local
194 note->hdr.n_type = cpu_to_dump32(s, NT_PPC_VSX); in ppc_write_elf_vsxregset()
195 vsxregset = &note->contents.vsxregset; in ppc_write_elf_vsxregset()
207 Note *note = &arg->note; in ppc_write_elf_speregset() local
210 note->hdr.n_type = cpu_to_dump32(s, NT_PPC_SPE); in ppc_write_elf_speregset()
211 speregset = &note->contents.speregset; in ppc_write_elf_speregset()
222 {sizeof_field(Note, contents.prstatus), ppc_write_elf_prstatus},
223 {sizeof_field(Note, contents.fpregset), ppc_write_elf_fpregset},
224 {sizeof_field(Note, contents.vmxregset), ppc_write_elf_vmxregset},
225 {sizeof_field(Note, contents.vsxregset), ppc_write_elf_vsxregset},
226 {sizeof_field(Note, contents.speregset), ppc_write_elf_speregset},
287 arg.note.hdr.n_namesz = cpu_to_dump32(s, sizeof(arg.note.name)); in ppc_write_all_elf_notes()
288 arg.note.hdr.n_descsz = cpu_to_dump32(s, nf->contents_size); in ppc_write_all_elf_notes()
289 strncpy(arg.note.name, note_name, sizeof(arg.note.name)); in ppc_write_all_elf_notes()
294 sizeof(arg.note) - sizeof(arg.note.contents) + nf->contents_size; in ppc_write_all_elf_notes()
295 ret = f(&arg.note, note_size, s); in ppc_write_all_elf_notes()