Searched refs:error_string (Results 1 – 2 of 2) sorted by relevance
| /art/tools/ |
| D | analyze-init-failures.py | 130 error_string = '' 132 …error_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/libdexfile/dex/ |
| D | dex_file_verifier.cc | 104 const char* DexFileVerifier::CheckLoadStringByIdx(dex::StringIndex idx, const char* error_string) { in CheckLoadStringByIdx() argument 105 if (UNLIKELY(!CheckIndex(idx.index_, dex_file_->NumStringIds(), error_string))) { in CheckLoadStringByIdx() 112 const char* error_string) { in CheckLoadStringByTypeIdx() argument 113 if (UNLIKELY(!CheckIndex(type_idx.index_, dex_file_->NumTypeIds(), error_string))) { in CheckLoadStringByTypeIdx() 116 return CheckLoadStringByIdx(dex_file_->GetTypeId(type_idx).descriptor_idx_, error_string); in CheckLoadStringByTypeIdx() 119 const dex::FieldId* DexFileVerifier::CheckLoadFieldId(uint32_t idx, const char* error_string) { in CheckLoadFieldId() argument 120 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) { in CheckLoadFieldId() 156 #define LOAD_METHOD(var, idx, error_string, error_stmt) \ argument 157 const dex::MethodId* (var) = CheckLoadMethodId(idx, error_string); \
|