Home
last modified time | relevance | path

Searched refs:errors (Results 1 – 22 of 22) sorted by relevance

/art/test/1926-missed-frame-pop/
Dexpected.txt1 Ran recurTimes(10) without errors after disabling frame pop event!
3 Ran recurTimes(10) without errors!
4 Ran recurTimes(10) without errors after disabling frame pop event!
6 Ran recurTimes(10) without errors!
7 Ran recurTimes(10) without errors after disabling frame pop event!
9 Ran recurTimes(10) without errors!
/art/test/1924-frame-pop-toggle/
Dexpected.txt2 Ran recurTimes(10) without errors!
4 Ran recurTimes(10) without errors!
6 Ran recurTimes(10) without errors!
/art/test/1923-frame-pop/
Dexpected.txt2 Ran recurTimes(10) without errors!
4 Ran recurTimes(10) without errors!
6 Ran recurTimes(10) without errors!
/art/openjdkjvmti/
Dti_extension.cc80 const std::vector<jvmtiError>& errors) { in GetExtensionFunctions() argument
120 func_info.error_count = errors.size(); in GetExtensionFunctions()
121 if (!errors.empty()) { in GetExtensionFunctions()
123 AllocJvmtiUniquePtr<jvmtiError[]>(env, errors.size(), &error); in GetExtensionFunctions()
127 func_info.errors = errors_ptr.get(); in GetExtensionFunctions()
131 func_info.errors[i] = errors[i]; in GetExtensionFunctions()
134 func_info.errors = nullptr; in GetExtensionFunctions()
/art/test/974-verify-interface-super/
Dinfo.txt2 verifier errors.
/art/
DPREUPLOAD.cfg9 # Cpplint prints nothing unless there were errors.
DCPPLINT.cfg26 # Ignore the following categories of errors, as specified by the filter:
/art/test/1925-self-frame-pop/
Dexpected.txt2 Ran recurTimes(10) without errors!
/art/test/965-default-verify/
Dinfo.txt5 since it is much more proactive about finding likely runtime errors then smali.
/art/oatdump/
DAndroid.bp73 // TODO: Having this is not ideal as it might obscure errors.
104 // TODO: Having this is not ideal as it might obscure errors.
/art/test/913-heaps/
Dheaps.cc879 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(extensions[i].errors)); in FreeExtensionFunctionInfo()
909 CHECK(extensions[i].errors != nullptr); in Java_art_Test913_checkForExtensionApis()
910 CHECK(extensions[i].errors[0] == JVMTI_ERROR_NOT_FOUND); in Java_art_Test913_checkForExtensionApis()
931 CHECK(extensions[i].errors != nullptr); in Java_art_Test913_checkForExtensionApis()
932 CHECK(extensions[i].errors[0] == JVMTI_ERROR_ILLEGAL_ARGUMENT); in Java_art_Test913_checkForExtensionApis()
961 CHECK(extensions[i].errors != nullptr); in Java_art_Test913_checkForExtensionApis()
962 CHECK(extensions[i].errors[0] == JVMTI_ERROR_MUST_POSSESS_CAPABILITY); in Java_art_Test913_checkForExtensionApis()
963 CHECK(extensions[i].errors[1] == JVMTI_ERROR_INVALID_CLASS); in Java_art_Test913_checkForExtensionApis()
964 CHECK(extensions[i].errors[2] == JVMTI_ERROR_NULL_POINTER); in Java_art_Test913_checkForExtensionApis()
/art/dex2oat/
DAndroid.bp225 // TODO: Having this is not ideal as it might obscure errors.
257 // TODO: Having this is not ideal as it might obscure errors.
Ddex2oat_options.def19 #define DEX2OAT_OPTIONS_KEY(...) // Don't display errors in this file in IDEs.
/art/test/1946-list-descriptors/
Ddescriptors.cc126 Dealloc(cur_info->id, cur_info->short_description, cur_info->params, cur_info->errors); in Java_art_Test1946_initializeTest()
/art/compiler/driver/
Dcompiler_options_map.def19 #define COMPILER_OPTIONS_KEY(...) // Don't display errors in this file in IDEs.
/art/test/1900-track-alloc/
Dalloc.cc145 Dealloc(cur_info->id, cur_info->short_description, cur_info->params, cur_info->errors); in Java_art_Test1900_initializeTest()
/art/libartbase/base/
Dhash_set.h474 size_t errors = 0; in Verify() local
484 ++errors; in Verify()
489 return errors; in Verify()
/art/test/1940-ddms-ext/
Dddm_ext.cc163 Dealloc(cur_info->id, cur_info->short_description, cur_info->params, cur_info->errors); in Java_art_Test1940_initializeTest()
/art/tools/
Dart100 Common errors:
225 # If android logging is not explicitly set, only print warnings and errors.
/art/runtime/
Druntime_options.def19 #define RUNTIME_OPTIONS_KEY(...) // Don't display errors in this file in IDEs.
/art/cmdline/
DREADME.md208 // note: Name() is just here for more user-friendly errors,
/art/openjdkjvmti/include/
Djvmti.h642 jvmtiError* errors; member