HomeSort by relevance Sort by last modified time
    Searched refs:cur_offset_ (Results 1 - 6 of 6) sorted by null

  /system/core/libunwindstack/
Symbols.h 52 cur_offset_ = offset_;
56 uint64_t cur_offset_; member in class:unwindstack::Symbols
Symbols.cpp 31 : cur_offset_(offset),
72 while (cur_offset_ + entry_size_ <= end_) {
74 if (!elf_memory->Read(cur_offset_, &entry, sizeof(entry))) {
76 cur_offset_ = UINT64_MAX;
79 cur_offset_ += entry_size_;
DwarfMemory.cpp 30 if (!memory_->Read(cur_offset_, dst, num_bytes)) {
33 cur_offset_ += num_bytes;
155 if (__builtin_add_overflow(cur_offset_, sizeof(AddressType) - 1, &cur_offset_)) {
158 cur_offset_ &= -sizeof(AddressType);
  /system/core/libunwindstack/include/unwindstack/
DwarfMemory.h 49 uint64_t cur_offset() { return cur_offset_; }
50 void set_cur_offset(uint64_t cur_offset) { cur_offset_ = cur_offset; }
66 uint64_t cur_offset_ = 0; member in class:unwindstack::DwarfMemory
  /art/runtime/
trace.cc 600 start_time_(MicroTime()), clock_overhead_ns_(GetClockOverheadNanoSeconds()), cur_offset_(0),
620 cur_offset_.StoreRelaxed(kTraceHeaderLength);
663 final_offset = cur_offset_.LoadRelaxed();
879 int32_t old_offset = cur_offset_.LoadRelaxed();
    [all...]
trace.h 304 AtomicInteger cur_offset_; member in class:art::FINAL

Completed in 596 milliseconds