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
111 note_start = 0; in map_object()
177 note_start = (Elf_Addr)(note_map + in map_object()
181 note_start = (Elf_Addr)(char *)hdr + in map_object()
184 note_end = note_start + phdr->p_filesz; in map_object()
344 if (note_start < note_end) in map_object()
345 digest_notes(obj, note_start, note_end); in map_object()
H A Drtld.c1710 Elf_Addr note_start, note_end; in digest_phdr() local
1770 note_start = (Elf_Addr)obj->relocbase + ph->p_vaddr; in digest_phdr()
1771 note_end = note_start + ph->p_filesz; in digest_phdr()
1772 digest_notes(obj, note_start, note_end); in digest_phdr()
1786 digest_notes(Obj_Entry *obj, Elf_Addr note_start, Elf_Addr note_end) in digest_notes() argument
1792 for (note = (const Elf_Note *)note_start; (Elf_Addr)note < note_end; in digest_notes()
2460 Elf_Addr note_start, note_end; in parse_rtld_phdr() local
2479 note_start = (Elf_Addr)obj->relocbase + ph->p_vaddr; in parse_rtld_phdr()
2480 note_end = note_start + ph->p_filesz; in parse_rtld_phdr()
2481 digest_notes(obj, note_start, note_end); in parse_rtld_phdr()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DProcessElfCore.cpp606 size_t note_start = offset; in parseSegment() local
609 result.push_back({note, DataExtractor(segment, note_start, note_size)}); in parseSegment()