Lines Matching refs:CurrentSymEx
462 ELSymEx* CurrentSymEx; in ELi_LoadObject() local
472 CurrentSymEx = ElfHandle->SymEx; in ELi_LoadObject()
473 … while( CurrentSymEx != NULL) { //If you track SymEx, the debug symbol is not included in ELi_LoadObject()
480 CurrentSymEx->Sym.st_name, in ELi_LoadObject()
486 … length = ELi_GetStrLen( ElfHandle, CurrentShdrEx->Shdr.sh_link, CurrentSymEx->Sym.st_name ) + 1; in ELi_LoadObject()
494 CurrentSymEx->Sym.st_name, in ELi_LoadObject()
504 … CurrentSymEx->Sym.st_name = StrShEx->str_table_size; //Correct symbol entry data in ELi_LoadObject()
513 if( ((ELF32_ST_BIND( (CurrentSymEx->Sym.st_info))) != STB_LOCAL)&& in ELi_LoadObject()
522 if( (CurrentSymEx->Sym.st_shndx != SHN_UNDEF) && in ELi_LoadObject()
523 (CurrentSymEx->Sym.st_shndx < SHN_LORESERVE)) { in ELi_LoadObject()
524 …CurrentSymEx->Sym.st_shndx = shdr_table[CurrentSymEx->Sym.st_shndx]; //Update section number for t… in ELi_LoadObject()
527 CurrentSymEx = CurrentSymEx->next; in ELi_LoadObject()