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

/art/tools/
H A Danalyze-init-failures.py130 error_string = ''
132 error_string = ',style=filled,fillcolor=Red,tooltip="' + root_errors[r_class] + '",URL="' + root_errors[r_class] + '"'
134 error_string = error_string + ',style=filled,fillcolor=Bisque'
136 error_string = error_string + ',style=filled,fillcolor=Darkseagreen'
137 print(' n%d [shape=box,label="%s"%s];' % (r_id, r_class, error_string))
/art/runtime/
H A Ddex_file_verifier.cc73 const char* DexFileVerifier::CheckLoadStringByIdx(uint32_t idx, const char* error_string) { argument
74 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumStringIds(), error_string))) {
80 const char* DexFileVerifier::CheckLoadStringByTypeIdx(uint32_t type_idx, const char* error_string) { argument
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) { argument
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); \
/art/runtime/verifier/
H A Dmethod_verifier.h344 std::string* error_string)
H A Dmethod_verifier.cc200 std::string* error_string) {
245 *error_string += "\n";
248 *error_string += "Verifier rejected class ";
249 *error_string += PrettyDescriptor(dex_file->GetClassDescriptor(*class_def));
250 *error_string += ":";
252 *error_string += " ";
253 *error_string += hard_failure_msg;

Completed in 646 milliseconds