HomeSort by relevance Sort by last modified time
    Searched defs:CheckIndex (Results 1 - 2 of 2) sorted by null

  /art/libdexfile/dex/
bytecode_utils.h 45 void CheckIndex(size_t index) const {
56 CheckIndex(index);
61 CheckIndex(index);
dex_file_verifier.cc 103 if (UNLIKELY(!CheckIndex(idx.index_, dex_file_->NumStringIds(), error_string))) {
171 if (UNLIKELY(!CheckIndex(type_idx.index_, dex_file_->NumTypeIds(), error_string))) {
178 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) {
185 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumMethodIds(), err_string))) {
192 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumProtoIds(), err_string))) {
325 bool DexFileVerifier::CheckIndex(uint32_t field, uint32_t limit, const char* label) {
611 if (!CheckIndex(type_idx, header_->type_ids_size_, "handler type_idx")) {
640 if (!CheckIndex(idx, header_->field_ids_size_, "class_data_item field_idx")) {
681 if (!CheckIndex(idx, header_->method_ids_size_, "class_data_item method_idx")) {
804 if (!CheckIndex(idx, header_->string_ids_size_, "encoded_value string"))
    [all...]

Completed in 352 milliseconds