Home
last modified time | relevance | path

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

/system/unwinding/libunwindstack/
DSymbols.cpp90 Info& info = symbols_[sym.st_value + sym.st_size]; in BinarySearch()
92 if (addr < sym.st_value) { in BinarySearch()
94 } else if (addr < sym.st_value + sym.st_size) { in BinarySearch()
95 *func_offset = addr - sym.st_value; in BinarySearch()
131 addrs.push_back(sym.st_value); // Always insert so it is indexable by symbol index. in BuildRemapTable()
228 global_variables_.emplace(name, entry.st_value); in GetGlobal()
229 *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.cpp172 sym.st_value = value; in InitSym()
DUnwinderTest.cpp1732 sym.st_value = 0x100300; in TEST_F()
/system/chre/platform/riscv/
Dnanoapp_loader.cc67 *addr = reinterpret_cast<uintptr_t>(mMapping + sym->st_value); in relocateTable()
/system/chre/platform/arm/
Dnanoapp_loader.cc64 *addr = reinterpret_cast<uintptr_t>(mMapping + sym->st_value); in relocateTable()
/system/chre/platform/shared/include/chre/platform/shared/
Dloader_util.h218 Elf32_Addr st_value; member
/system/bpf/loader/
DLoader.cpp269 return (a.st_value < b.st_value); in symCompare()
/system/chre/platform/shared/
Dnanoapp_loader.cc690 return mMapping + symbol->st_value; in getSymbolTarget()