Lines Matching refs:note

64 			      ELF_HANDLE_DECL(elf_note) note)  in print_string_note()
66 printf("%s: %s\n", prefix, elf_strfmt(elf, elf_note_desc(elf, note))); in print_string_note()
70 ELF_HANDLE_DECL(elf_note) note) in print_numeric_note()
72 uint64_t value = elf_note_numeric(elf, note); in print_numeric_note()
73 unsigned descsz = elf_uval(elf, note, descsz); in print_numeric_note()
80 ELF_HANDLE_DECL(elf_note) note) in print_l1_mfn_valid_note()
82 unsigned descsz = elf_uval(elf, note, descsz); in print_l1_mfn_valid_note()
83 elf_ptrval desc = elf_note_desc(elf, note); in print_l1_mfn_valid_note()
104 ELF_HANDLE_DECL(elf_note) note; in print_notes()
108 …for ( note = start; ELF_HANDLE_PTRVAL(note) < ELF_HANDLE_PTRVAL(end); note = elf_note_next(elf, no… in print_notes()
110 this_note_name = elf_note_name(elf, note); in print_notes()
118 switch(elf_uval(elf, note, type)) in print_notes()
121 print_string_note("INFO", elf , note); in print_notes()
124 print_numeric_note("ENTRY", elf , note); in print_notes()
127 print_numeric_note("HYPERCALL_PAGE", elf , note); in print_notes()
130 print_numeric_note("VIRT_BASE", elf , note); in print_notes()
133 print_numeric_note("PADDR_OFFSET", elf , note); in print_notes()
136 print_string_note("XEN_VERSION", elf , note); in print_notes()
139 print_string_note("GUEST_OS", elf , note); in print_notes()
142 print_string_note("GUEST_VERSION", elf , note); in print_notes()
145 print_string_note("LOADER", elf , note); in print_notes()
148 print_string_note("PAE_MODE", elf , note); in print_notes()
151 print_string_note("FEATURES", elf , note); in print_notes()
154 print_numeric_note("HV_START_LOW", elf , note); in print_notes()
157 print_numeric_note("SUSPEND_CANCEL", elf, note); in print_notes()
160 print_l1_mfn_valid_note("L1_MFN_VALID", elf , note); in print_notes()
163 print_numeric_note("PHYS32_ENTRY", elf , note); in print_notes()
167 (unsigned)elf_uval(elf, note, type)); in print_notes()