Lines Matching full:error_string
73 const char* DexFileVerifier::CheckLoadStringByIdx(uint32_t idx, const char* error_string) {
74 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumStringIds(), error_string))) {
80 const char* DexFileVerifier::CheckLoadStringByTypeIdx(uint32_t type_idx, const char* error_string) {
81 if (UNLIKELY(!CheckIndex(type_idx, dex_file_->NumTypeIds(), error_string))) {
86 return CheckLoadStringByIdx(idx, error_string);
89 const DexFile::FieldId* DexFileVerifier::CheckLoadFieldId(uint32_t idx, const char* error_string) {
90 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) {
118 #define LOAD_METHOD(var, idx, error_string, error_stmt) \
119 const DexFile::MethodId* var = CheckLoadMethodId(idx, error_string); \