Searched refs:range_values_ (Results 1 – 2 of 2) sorted by relevance
/aosp12/art/libdexfile/dex/ |
H A D | dex_file_tracking_registrar.cc | 143 while (!range_values_.empty()) { in SetCurrentRanges() 144 const std::tuple<const void*, size_t, bool>& current_range = range_values_.front(); in SetCurrentRanges() 148 range_values_.pop_front(); in SetCurrentRanges() 155 range_values_.push_back(std::make_tuple(dex_file_begin, dex_file_size, should_poison)); in SetDexFileRegistration() 165 range_values_.push_back(std::make_tuple(code_item_begin, code_item_size, should_poison)); in SetAllCodeItemRegistration() 181 range_values_.push_back(std::make_tuple(code_item_begin, in SetAllCodeItemStartRegistration() 198 range_values_.push_back(std::make_tuple(insns_begin, insns_size, should_poison)); in SetAllInsnsRegistration() 213 range_values_.push_back(std::make_tuple(code_item_begin, code_item_size, should_poison)); in SetCodeItemRegistration() 225 range_values_.push_back(std::make_tuple(string_data_begin, 1, should_poison)); in SetAllStringDataStartRegistration() 226 range_values_.push_back(std::make_tuple(string_data_data_begin, 1, should_poison)); in SetAllStringDataStartRegistration() [all …]
|
H A D | dex_file_tracking_registrar.h | 69 std::deque<std::tuple<const void *, size_t, bool>> range_values_; variable
|