Home
last modified time | relevance | path

Searched refs:error_string (Results 1 – 2 of 2) sorted by relevance

/art/tools/
Danalyze-init-failures.py130 error_string = ''
132error_string = ',style=filled,fillcolor=Red,tooltip="' + root_errors[r_class] + '",URL="' + root_e…
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/
Ddex_file_verifier.cc69 const char* DexFileVerifier::CheckLoadStringByIdx(uint32_t idx, const char* error_string) { in CheckLoadStringByIdx() argument
70 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumStringIds(), error_string))) { in CheckLoadStringByIdx()
76 const char* DexFileVerifier::CheckLoadStringByTypeIdx(uint32_t type_idx, const char* error_string) { in CheckLoadStringByTypeIdx() argument
77 if (UNLIKELY(!CheckIndex(type_idx, dex_file_->NumTypeIds(), error_string))) { in CheckLoadStringByTypeIdx()
82 return CheckLoadStringByIdx(idx, error_string); in CheckLoadStringByTypeIdx()
85 const DexFile::FieldId* DexFileVerifier::CheckLoadFieldId(uint32_t idx, const char* error_string) { in CheckLoadFieldId() argument
86 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) { in CheckLoadFieldId()
114 #define LOAD_METHOD(var, idx, error_string, error_stmt) \ argument
115 const DexFile::MethodId* var = CheckLoadMethodId(idx, error_string); \