Lines Matching full:note
48 Elf64_Nhdr *note; in x86_64_write_elf64_note() local
85 note = g_malloc0(note_size); in x86_64_write_elf64_note()
86 note->n_namesz = cpu_to_le32(name_size); in x86_64_write_elf64_note()
87 note->n_descsz = cpu_to_le32(descsz); in x86_64_write_elf64_note()
88 note->n_type = cpu_to_le32(NT_PRSTATUS); in x86_64_write_elf64_note()
89 buf = (char *)note; in x86_64_write_elf64_note()
97 ret = f(note, note_size, s); in x86_64_write_elf64_note()
98 g_free(note); in x86_64_write_elf64_note()
154 Elf64_Nhdr *note; in x86_write_elf64_note() local
163 note = g_malloc0(note_size); in x86_write_elf64_note()
164 note->n_namesz = cpu_to_le32(name_size); in x86_write_elf64_note()
165 note->n_descsz = cpu_to_le32(descsz); in x86_write_elf64_note()
166 note->n_type = cpu_to_le32(NT_PRSTATUS); in x86_write_elf64_note()
167 buf = (char *)note; in x86_write_elf64_note()
173 ret = f(note, note_size, s); in x86_write_elf64_note()
174 g_free(note); in x86_write_elf64_note()
208 Elf32_Nhdr *note; in x86_cpu_write_elf32_note() local
217 note = g_malloc0(note_size); in x86_cpu_write_elf32_note()
218 note->n_namesz = cpu_to_le32(name_size); in x86_cpu_write_elf32_note()
219 note->n_descsz = cpu_to_le32(descsz); in x86_cpu_write_elf32_note()
220 note->n_type = cpu_to_le32(NT_PRSTATUS); in x86_cpu_write_elf32_note()
221 buf = (char *)note; in x86_cpu_write_elf32_note()
227 ret = f(note, note_size, s); in x86_cpu_write_elf32_note()
228 g_free(note); in x86_cpu_write_elf32_note()
338 void *note; in cpu_write_qemu_note() local
354 note = g_malloc0(note_size); in cpu_write_qemu_note()
356 note32 = note; in cpu_write_qemu_note()
361 note64 = note; in cpu_write_qemu_note()
366 buf = note; in cpu_write_qemu_note()
372 ret = f(note, note_size, s); in cpu_write_qemu_note()
373 g_free(note); in cpu_write_qemu_note()