Home
last modified time | relevance | path

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

/art/libdexfile/dex/
Ddex_file_tracking_registrar.h49 void SetDexFileRegistration(bool should_poison);
52 void SetAllCodeItemRegistration(bool should_poison);
54 void SetAllInsnsRegistration(bool should_poison);
56 void SetCodeItemRegistration(const char* class_name, bool should_poison);
59 void SetAllCodeItemStartRegistration(bool should_poison);
62 void SetAllStringDataRegistration(bool should_poison);
65 void SetAllStringDataStartRegistration(bool should_poison);
Ddex_file_tracking_registrar.cc129 inline void SetRegistrationRange(const void* begin, size_t size, bool should_poison) { in SetRegistrationRange() argument
130 if (should_poison) { in SetRegistrationRange()
152 void DexFileTrackingRegistrar::SetDexFileRegistration(bool should_poison) { in SetDexFileRegistration() argument
155 range_values_.push_back(std::make_tuple(dex_file_begin, dex_file_size, should_poison)); in SetDexFileRegistration()
158 void DexFileTrackingRegistrar::SetAllCodeItemRegistration(bool should_poison) { in SetAllCodeItemRegistration() argument
165 range_values_.push_back(std::make_tuple(code_item_begin, code_item_size, should_poison)); in SetAllCodeItemRegistration()
171 void DexFileTrackingRegistrar::SetAllCodeItemStartRegistration(bool should_poison) { in SetAllCodeItemStartRegistration() argument
183 should_poison)); in SetAllCodeItemStartRegistration()
189 void DexFileTrackingRegistrar::SetAllInsnsRegistration(bool should_poison) { in SetAllInsnsRegistration() argument
198 range_values_.push_back(std::make_tuple(insns_begin, insns_size, should_poison)); in SetAllInsnsRegistration()
[all …]