Home
last modified time | relevance | path

Searched refs:st_value (Results 1 – 7 of 7) sorted by relevance

/system/unwinding/libunwindstack/
DSymbols.cpp75 Info& info = symbols_[sym.st_value + sym.st_size]; in BinarySearch()
77 if (addr < sym.st_value) { in BinarySearch()
79 } else if (addr < sym.st_value + sym.st_size) { in BinarySearch()
80 *func_offset = addr - sym.st_value; in BinarySearch()
108 addrs.push_back(sym.st_value); // Always insert so it is indexable by symbol index. in BuildRemapTable()
191 global_variables_.emplace(name, entry.st_value); in GetGlobal()
192 *memory_address = entry.st_value; in GetGlobal()
/system/unwinding/libunwindstack/tests/
DSymbolsTest.cpp47 void InitSym(TypeParam* sym, uint32_t st_value, uint32_t st_size, uint32_t st_name) { in InitSym() argument
50 sym->st_value = st_value; in InitSym()
358 sym.st_value = 0x10000; in TYPED_TEST_P()
376 sym.st_value = 0x12000; in TYPED_TEST_P()
DElfInterfaceTest.cpp171 sym.st_value = value; in InitSym()
DUnwinderTest.cpp1725 sym.st_value = 0x100300; in TEST_F()
/system/chre/platform/shared/include/chre/platform/shared/
Dloader_util.h211 Elf32_Addr st_value; member
/system/chre/platform/shared/
Dnanoapp_loader.cc326 symbol = mMapping + currSym->st_value; in findSymbolByName()
827 *addr = reinterpret_cast<uintptr_t>(mMapping + sym->st_value); in fixRelocations()
/system/bpf/libbpf_android/
DLoader.cpp261 return (a.st_value < b.st_value); in symCompare()