Home
last modified time | relevance | path

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

/art/libprofile/profile/
Dprofile_compilation_info.cc404 : fd_(fd), mem_map_(std::move(mem_map)), mem_map_cur_(0) {} in ProfileSource()
412 size_t mem_map_cur_; // Current position in the map to read from. member in art::ProfileCompilationInfo::ProfileSource
1491 mem_map_cur_ = offset; in Seek()
1507 DCHECK_LE(mem_map_cur_, mem_map_.Size()); in Read()
1508 if (byte_count > mem_map_.Size() - mem_map_cur_) { in Read()
1511 memcpy(buffer, mem_map_.Begin() + mem_map_cur_, byte_count); in Read()
1512 mem_map_cur_ += byte_count; in Read()