Home
last modified time | relevance | path

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

/system/core/libunwindstack/
DDwarfMemory.cpp30 if (!memory_->ReadFully(cur_offset_, dst, num_bytes)) { in ReadBytes()
33 cur_offset_ += num_bytes; in ReadBytes()
154 if (__builtin_add_overflow(cur_offset_, sizeof(AddressType) - 1, &cur_offset_)) { in ReadEncodedValue()
157 cur_offset_ &= -sizeof(AddressType); in ReadEncodedValue()
DSymbols.cpp32 : cur_offset_(offset), in Symbols()
70 while (cur_offset_ + entry_size_ <= end_) { in GetName()
72 if (!elf_memory->ReadFully(cur_offset_, &entry, sizeof(entry))) { in GetName()
74 cur_offset_ = UINT64_MAX; in GetName()
77 cur_offset_ += entry_size_; in GetName()
DSymbols.h54 cur_offset_ = offset_; in ClearCache()
58 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