Home
last modified time | relevance | path

Searched refs:error_string (Results 1 – 3 of 3) 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/libdexfile/dex/
Ddex_file_verifier.cc102 const char* DexFileVerifier::CheckLoadStringByIdx(dex::StringIndex idx, const char* error_string) { in CheckLoadStringByIdx() argument
103 if (UNLIKELY(!CheckIndex(idx.index_, dex_file_->NumStringIds(), error_string))) { in CheckLoadStringByIdx()
170 const char* error_string) { in CheckLoadStringByTypeIdx() argument
171 if (UNLIKELY(!CheckIndex(type_idx.index_, dex_file_->NumTypeIds(), error_string))) { in CheckLoadStringByTypeIdx()
174 return CheckLoadStringByIdx(dex_file_->GetTypeId(type_idx).descriptor_idx_, error_string); in CheckLoadStringByTypeIdx()
177 const DexFile::FieldId* DexFileVerifier::CheckLoadFieldId(uint32_t idx, const char* error_string) { in CheckLoadFieldId() argument
178 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) { in CheckLoadFieldId()
213 #define LOAD_METHOD(var, idx, error_string, error_stmt) \ argument
214 const DexFile::MethodId* (var) = CheckLoadMethodId(idx, error_string); \
/art/runtime/verifier/
Dmethod_verifier.h292 std::string* error_string)