Lines Matching refs:notes
945 static void notes( std::ostream& out, const elfio& reader )
948 if ( SHT_NOTE == sec->get_type() ) { // Look at notes
949 note_section_accessor notes( reader, sec.get() );
950 Elf_Word no_notes = notes.get_notes_num();
958 for ( Elf_Word j = 0; j < no_notes; ++j ) { // For all notes
964 if ( notes.get_note( j, type, name, desc, descsz ) ) {
979 if ( PT_NOTE == seg->get_type() ) { // Look at notes
980 note_segment_accessor notes( reader, seg );
981 Elf_Word no_notes = notes.get_notes_num();
989 for ( Elf_Word j = 0; j < no_notes; ++j ) { // For all notes
995 if ( notes.get_note( j, type, name, desc, descsz ) ) {