Home
last modified time | relevance | path

Searched refs:error_string (Results 1 – 5 of 5) 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/gc/space/
Dimage_space_fs.h173 const char* error_string = dlerror(); in RelabelOTAFiles() local
175 << ((error_string != nullptr) ? error_string : "(unknown error)"); in RelabelOTAFiles()
/art/runtime/
Ddex_file_verifier.cc73 const char* DexFileVerifier::CheckLoadStringByIdx(uint32_t idx, const char* error_string) { in CheckLoadStringByIdx() argument
74 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumStringIds(), error_string))) { in CheckLoadStringByIdx()
80 const char* DexFileVerifier::CheckLoadStringByTypeIdx(uint32_t type_idx, const char* error_string) { in CheckLoadStringByTypeIdx() argument
81 if (UNLIKELY(!CheckIndex(type_idx, dex_file_->NumTypeIds(), error_string))) { in CheckLoadStringByTypeIdx()
86 return CheckLoadStringByIdx(idx, error_string); in CheckLoadStringByTypeIdx()
89 const DexFile::FieldId* DexFileVerifier::CheckLoadFieldId(uint32_t idx, const char* error_string) { in CheckLoadFieldId() argument
90 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) { in CheckLoadFieldId()
118 #define LOAD_METHOD(var, idx, error_string, error_stmt) \ argument
119 const DexFile::MethodId* var = CheckLoadMethodId(idx, error_string); \
/art/runtime/verifier/
Dmethod_verifier.h344 std::string* error_string)
Dmethod_verifier.cc200 std::string* error_string) { in VerifyMethods() argument
245 *error_string += "\n"; in VerifyMethods()
248 *error_string += "Verifier rejected class "; in VerifyMethods()
249 *error_string += PrettyDescriptor(dex_file->GetClassDescriptor(*class_def)); in VerifyMethods()
250 *error_string += ":"; in VerifyMethods()
252 *error_string += " "; in VerifyMethods()
253 *error_string += hard_failure_msg; in VerifyMethods()