Searched refs:CheckIndex (Results 1 – 3 of 3) sorted by relevance
/art/runtime/ |
D | bytecode_utils.h | 74 void CheckIndex(size_t index) const { in CheckIndex() function 85 CheckIndex(index); in GetEntryAt() 90 CheckIndex(index); in GetDexPcForIndex()
|
D | dex_file_verifier.cc | 103 if (UNLIKELY(!CheckIndex(idx.index_, dex_file_->NumStringIds(), error_string))) { in CheckLoadStringByIdx() 171 if (UNLIKELY(!CheckIndex(type_idx.index_, dex_file_->NumTypeIds(), error_string))) { in CheckLoadStringByTypeIdx() 178 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) { in CheckLoadFieldId() 185 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumMethodIds(), err_string))) { in CheckLoadMethodId() 192 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumProtoIds(), err_string))) { in CheckLoadProtoId() 325 bool DexFileVerifier::CheckIndex(uint32_t field, uint32_t limit, const char* label) { in CheckIndex() function in art::DexFileVerifier 596 if (!CheckIndex(type_idx, header_->type_ids_size_, "handler type_idx")) { in CheckAndGetHandlerOffsets() 625 if (!CheckIndex(idx, header_->field_ids_size_, "class_data_item field_idx")) { in CheckClassDataItemField() 666 if (!CheckIndex(idx, header_->method_ids_size_, "class_data_item method_idx")) { in CheckClassDataItemMethod() 784 if (!CheckIndex(idx, header_->string_ids_size_, "encoded_value string")) { in CheckEncodedValue() [all …]
|
D | dex_file_verifier.h | 69 bool CheckIndex(uint32_t field, uint32_t limit, const char* label);
|