Searched refs:note_name (Results 1 – 2 of 2) sorted by relevance
/bionic/libc/bionic/ |
D | elf_note.cpp | 34 bool __get_elf_note(unsigned note_type, const char* note_name, const ElfW(Addr) note_addr, in __get_elf_note() argument 37 if (phdr_note->p_type != PT_NOTE || !note_name || !note_addr) { in __get_elf_note() 57 size_t note_name_len = strlen(note_name) + 1; in __get_elf_note() 58 if (note->n_namesz != note_name_len || strncmp(note_name, name, note_name_len) != 0) { in __get_elf_note() 70 bool __find_elf_note(unsigned int note_type, const char* note_name, const ElfW(Phdr)* phdr_start, in __find_elf_note() argument 77 if (__get_elf_note(note_type, note_name, note_addr, phdr, note_hdr, note_desc)) { in __find_elf_note()
|
/bionic/libc/private/ |
D | elf_note.h | 35 bool __get_elf_note(unsigned note_type, const char* note_name, const ElfW(Addr) note_addr, 40 bool __find_elf_note(unsigned int note_type, const char* note_name, const ElfW(Phdr)* phdr_start,
|