Searched refs:note_start (Results 1 – 3 of 3) sorted by relevance
| /freebsd-13.1/libexec/rtld-elf/ |
| H A D | map_object.c | 100 Elf_Addr note_start; in map_object() local 121 note_start = 0; in map_object() 181 note_start = (Elf_Addr)(note_map + phdr->p_offset - in map_object() 184 note_start = (Elf_Addr)(char *)hdr + phdr->p_offset; in map_object() 186 note_end = note_start + phdr->p_filesz; in map_object() 330 if (note_start < note_end) in map_object() 331 digest_notes(obj, note_start, note_end); in map_object()
|
| H A D | rtld.c | 1666 Elf_Addr note_start, note_end; in digest_phdr() local 1724 note_start = (Elf_Addr)obj->relocbase + ph->p_vaddr; in digest_phdr() 1725 note_end = note_start + ph->p_filesz; in digest_phdr() 1726 digest_notes(obj, note_start, note_end); in digest_phdr() 1740 digest_notes(Obj_Entry *obj, Elf_Addr note_start, Elf_Addr note_end) in digest_notes() argument 1746 for (note = (const Elf_Note *)note_start; (Elf_Addr)note < note_end; in digest_notes() 2358 Elf_Addr note_start, note_end; in parse_rtld_phdr() local 2373 note_start = (Elf_Addr)obj->relocbase + ph->p_vaddr; in parse_rtld_phdr() 2374 note_end = note_start + ph->p_filesz; in parse_rtld_phdr() 2375 digest_notes(obj, note_start, note_end); in parse_rtld_phdr()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
| H A D | ProcessElfCore.cpp | 520 size_t note_start = offset; in parseSegment() local 522 DataExtractor note_data(segment, note_start, note_size); in parseSegment()
|