Home
last modified time | relevance | path

Searched refs:notehdr (Results 1 – 1 of 1) sorted by relevance

/external/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp680 } notehdr; in ParseNoteGNUBuildID() local
686 if (data.GetU32 (&offset, &notehdr, 3) == NULL) in ParseNoteGNUBuildID()
689 notehdr.name_len = llvm::RoundUpToAlignment (notehdr.name_len, 4); in ParseNoteGNUBuildID()
690 notehdr.desc_len = llvm::RoundUpToAlignment (notehdr.desc_len, 4); in ParseNoteGNUBuildID()
692 lldb::offset_t offset_next_note = offset + notehdr.name_len + notehdr.desc_len; in ParseNoteGNUBuildID()
695 if ((notehdr.type == g_gnu_build_id) && (notehdr.name_len == 4) && in ParseNoteGNUBuildID()
696 (notehdr.desc_len == 16 || notehdr.desc_len == 20)) in ParseNoteGNUBuildID()
704 if (data.GetU8 (&offset, &uuidbuf, notehdr.desc_len) == NULL) in ParseNoteGNUBuildID()
706 uuid.SetBytes (uuidbuf, notehdr.desc_len); in ParseNoteGNUBuildID()