Searched refs:CheckIndex (Results 1 - 3 of 3) sorted by relevance

/art/compiler/optimizing/
H A Dbytecode_utils.h73 void CheckIndex(size_t index) const { function in class:art::DexSwitchTable
84 CheckIndex(index);
89 CheckIndex(index);
/art/runtime/
H A Ddex_file_verifier.cc74 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumStringIds(), error_string))) {
81 if (UNLIKELY(!CheckIndex(type_idx, dex_file_->NumTypeIds(), error_string))) {
90 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) {
97 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumMethodIds(), err_string))) {
225 bool DexFileVerifier::CheckIndex(uint32_t field, uint32_t limit, const char* label) { function in class:art::DexFileVerifier
472 if (!CheckIndex(type_idx, header_->type_ids_size_, "handler type_idx")) {
501 if (!CheckIndex(idx, header_->field_ids_size_, "class_data_item field_idx")) {
542 if (!CheckIndex(idx, header_->method_ids_size_, "class_data_item method_idx")) {
641 if (!CheckIndex(idx, header_->string_ids_size_, "encoded_value string")) {
652 if (!CheckIndex(id
[all...]
H A Ddex_file_verifier.h54 bool CheckIndex(uint32_t field, uint32_t limit, const char* label);

Completed in 58 milliseconds