Home
last modified time | relevance | path

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

/system/core/libunwindstack/
DSymbols.cpp31 : cur_offset_(offset), in Symbols()
72 while (cur_offset_ + entry_size_ <= end_) { in GetName()
74 if (!elf_memory->Read(cur_offset_, &entry, sizeof(entry))) { in GetName()
76 cur_offset_ = UINT64_MAX; in GetName()
79 cur_offset_ += entry_size_; in GetName()
DDwarfMemory.cpp30 if (!memory_->Read(cur_offset_, dst, num_bytes)) { in ReadBytes()
33 cur_offset_ += num_bytes; in ReadBytes()
155 if (__builtin_add_overflow(cur_offset_, sizeof(AddressType) - 1, &cur_offset_)) { in ReadEncodedValue()
158 cur_offset_ &= -sizeof(AddressType); in ReadEncodedValue()
DSymbols.h52 cur_offset_ = offset_; in ClearCache()
56 uint64_t cur_offset_;
/system/core/libunwindstack/include/unwindstack/
DDwarfMemory.h49 uint64_t cur_offset() { return cur_offset_; } in cur_offset()
50 void set_cur_offset(uint64_t cur_offset) { cur_offset_ = cur_offset; } in set_cur_offset()
66 uint64_t cur_offset_ = 0; variable