Searched defs:elf (Results 1 - 1 of 1) sorted by relevance

/device/google/contexthub/util/nanoapp_postprocess/
H A Dpostprocess_elf.c586 static bool elfParse(Elf *elf, struct ElfNanoApp *app) argument
595 if (elf_getshdrstrndx(elf, &shdrstrndx) != 0) {
600 while ((scn = elf_nextscn(elf, scn)) != NULL) {
605 sectionName = elf_strptr(elf, shdrstrndx, shdr.sh_name);
622 Elf *elf; local
635 elf = elf_begin(fd, ELF_C_READ, NULL);
636 if (elf == NULL) {
641 if (!elfParse(elf, app)) {

Completed in 39 milliseconds