Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Delf_note.cpp34 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/
Delf_note.h35 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,