Searched defs:error_string (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Ddex_file_verifier.cc102 const char* DexFileVerifier::CheckLoadStringByIdx(dex::StringIndex idx, const char* error_string) { argument
103 if (UNLIKELY(!CheckIndex(idx.index_, dex_file_->NumStringIds(), error_string))) {
170 const char* error_string) {
171 if (UNLIKELY(!CheckIndex(type_idx.index_, dex_file_->NumTypeIds(), error_string))) {
174 return CheckLoadStringByIdx(dex_file_->GetTypeId(type_idx).descriptor_idx_, error_string);
177 const DexFile::FieldId* DexFileVerifier::CheckLoadFieldId(uint32_t idx, const char* error_string) { argument
178 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) {
213 #define LOAD_METHOD(var, idx, error_string, error_stmt) \
214 const DexFile::MethodId* (var) = CheckLoadMethodId(idx, error_string); \
169 CheckLoadStringByTypeIdx(dex::TypeIndex type_idx, const char* error_string) argument

Completed in 38 milliseconds