Lines Matching refs:sym
365 Elf_Sym sym = Elf_Sym(); in Add() local
366 sym.st_name = name; in Add()
367 sym.st_value = addr; in Add()
368 sym.st_size = size; in Add()
369 sym.st_other = 0; in Add()
370 sym.st_info = (binding << 4) + (type & 0xf); in Add()
371 Add(sym, section); in Add()
375 void Add(Elf_Sym sym, const Section* section) { in Add() argument
377 DCHECK_LE(section->GetAddress(), sym.st_value); in Add()
378 DCHECK_LE(sym.st_value, section->GetAddress() + section->header_.sh_size); in Add()
379 sym.st_shndx = section->GetSectionIndex(); in Add()
381 sym.st_shndx = SHN_UNDEF; in Add()
383 syms_.push_back(sym); in Add()
389 auto is_local = [](const Elf_Sym& sym) { return ELF_ST_BIND(sym.st_info) == STB_LOCAL; }; in WriteCachedSection()