Home
last modified time | relevance | path

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

/freebsd/libexec/rtld-elf/
H A Dmap_object.c93 Elf_Addr note_start; in map_object() local
112 note_start = 0; in map_object()
172 note_start = (Elf_Addr)(note_map + in map_object()
176 note_start = (Elf_Addr)(char *)hdr + in map_object()
179 note_end = note_start + phdr->p_filesz; in map_object()
339 if (note_start < note_end) in map_object()
340 digest_notes(obj, note_start, note_end); in map_object()
H A Drtld.c1700 Elf_Addr note_start, note_end; in digest_phdr() local
1754 note_start = (Elf_Addr)obj->relocbase + ph->p_vaddr; in digest_phdr()
1755 note_end = note_start + ph->p_filesz; in digest_phdr()
1756 digest_notes(obj, note_start, note_end); in digest_phdr()
1770 digest_notes(Obj_Entry *obj, Elf_Addr note_start, Elf_Addr note_end) in digest_notes() argument
1776 for (note = (const Elf_Note *)note_start; (Elf_Addr)note < note_end; in digest_notes()
2443 Elf_Addr note_start, note_end; in parse_rtld_phdr() local
2463 note_start = (Elf_Addr)obj->relocbase + ph->p_vaddr; in parse_rtld_phdr()
2464 note_end = note_start + ph->p_filesz; in parse_rtld_phdr()
2465 digest_notes(obj, note_start, note_end); in parse_rtld_phdr()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp593 size_t note_start = offset; in parseSegment() local
596 result.push_back({note, DataExtractor(segment, note_start, note_size)}); in parseSegment()