Home
last modified time | relevance | path

Searched refs:str_offset (Results 1 – 4 of 4) sorted by relevance

/system/unwinding/libunwindstack/
DSymbols.cpp32 Symbols::Symbols(uint64_t offset, uint64_t size, uint64_t entry_size, uint64_t str_offset, in Symbols() argument
37 str_offset_(str_offset), in Symbols()
187 uint64_t str_offset = str_offset_ + entry.st_name; in GetGlobal() local
188 if (str_offset < str_end_) { in GetGlobal()
190 if (elf_memory->ReadString(str_offset, &symbol, str_end_ - str_offset) && symbol == name) { in GetGlobal()
DSymbols.h42 Symbols(uint64_t offset, uint64_t size, uint64_t entry_size, uint64_t str_offset,
DElfInterface.cpp308 uint64_t str_offset = ehdr.e_shoff + shdr.sh_link * ehdr.e_shentsize; in ReadSectionHeaders() local
309 if (!memory_->ReadFully(str_offset, &str_shdr, sizeof(str_shdr))) { in ReadSectionHeaders()
/system/unwinding/libunwindstack/tests/
DSymbolsTest.cpp342 uint64_t str_offset = 0xa000; in TYPED_TEST_P() local
343 Symbols symbols(start_offset, 4 * sizeof(TypeParam), sizeof(TypeParam), str_offset, 0x1000); in TYPED_TEST_P()
351 this->memory_.SetMemory(str_offset + 0x100, "global_0"); in TYPED_TEST_P()
361 this->memory_.SetMemory(str_offset + 0x200, "function_0"); in TYPED_TEST_P()
369 this->memory_.SetMemory(str_offset + 0x300, "global_1"); in TYPED_TEST_P()
379 this->memory_.SetMemory(str_offset + 0x400, "function_1"); in TYPED_TEST_P()