Home
last modified time | relevance | path

Searched refs:error (Results 26 – 50 of 179) sorted by relevance

12345678

/art/tools/jvmti-agents/breakpoint-logger/
Dbreakpoint_logger.cc355 jvmtiError error = JVMTI_ERROR_NONE; in AgentStart() local
367 error = jvmti->Allocate(sizeof(BreakpointTargets), in AgentStart()
369 if (error != JVMTI_ERROR_NONE) { in AgentStart()
375 error = jvmti->SetEnvironmentLocalStorage(data); in AgentStart()
376 if (error != JVMTI_ERROR_NONE) { in AgentStart()
391 error = jvmti->AddCapabilities(&caps); in AgentStart()
392 if (error != JVMTI_ERROR_NONE) { in AgentStart()
401 error = jvmti->SetEventCallbacks(&callbacks, static_cast<jint>(sizeof(callbacks))); in AgentStart()
403 if (error != JVMTI_ERROR_NONE) { in AgentStart()
408 error = jvmti->SetEventNotificationMode(JVMTI_ENABLE, in AgentStart()
[all …]
/art/compiler/driver/
Dcompiler_options_map-storage.h30 #error "Expected COMPILER_OPTIONS_MAP_TYPE"
34 #error "Expected COMPILER_OPTIONS_MAP_KEY_TYPE"
/art/libartbase/base/
Dmem_map_windows.cc108 DWORD error = ::GetLastError(); in TargetMMap() local
109 PLOG(ERROR) << StringPrintf("Couldn't create file mapping %lx.", error); in TargetMMap()
123 DWORD error = ::GetLastError(); in TargetMMap() local
124 PLOG(ERROR) << StringPrintf("Couldn't create file view %lx.", error); in TargetMMap()
/art/test/ti-agent/
Djvmti_helper.cc33 void CheckJvmtiError(jvmtiEnv* env, jvmtiError error) { in CheckJvmtiError() argument
34 if (error != JVMTI_ERROR_NONE) { in CheckJvmtiError()
36 jvmtiError name_error = env->GetErrorName(error, &error_name); in CheckJvmtiError()
38 LOG(FATAL) << "Unable to get error name for " << error; in CheckJvmtiError()
110 bool JvmtiErrorToException(JNIEnv* env, jvmtiEnv* jvmtienv, jvmtiError error) { in JvmtiErrorToException() argument
111 if (error == JVMTI_ERROR_NONE) { in JvmtiErrorToException()
122 CheckJvmtiError(jvmtienv, jvmtienv->GetErrorName(error, &err)); in JvmtiErrorToException()
/art/tools/dexfuzz/src/dexfuzz/
DExecutionResult.java26 public List<String> error; field in ExecutionResult
73 for (String line : error) { in getFlattenedError()
87 for (String line : error) { in getFlattenedErrorWithNewlines()
DLog.java56 public static void error(String msg) { in error() method in Log
74 error(msg); in errorAndQuit()
/art/runtime/ti/
Dagent.h56 /*out*/LoadError* error,
63 /*out*/LoadError* error,
69 /*out*/LoadError* error,
76 /*out*/LoadError* error,
/art/runtime/
Dread_barrier_config.h38 #error "ART read barrier type must be set"
51 #error "Only one of Baker or Brooks can be enabled at a time."
/art/test/1957-error-ext/
Dexpected.txt1 LastError is: <call returned error: class java.lang.RuntimeException: JVMTI_ERROR_ABSENT_INFORMATIO…
4 LastError is: <call returned error: class java.lang.RuntimeException: JVMTI_ERROR_ABSENT_INFORMATIO…
/art/tools/class2greylist/src/com/android/class2greylist/
DStatus.java39 public void error(Throwable t) { in error() method in Status
45 public void error(String message, Object... args) { in error() method in Status
/art/test/978-virtual-interface/smali/
DMain.smali22 # System.out.println("No error thrown!");
24 # System.out.println("Recieved expected ICCE error!");
41 const-string v1, "No error thrown!"
47 const-string v1, "Recieved expected ICCE error!"
/art/test/008-exceptions/src/
DMain.java122 } catch (Exception error) { in exceptionsRethrowClassInitFailure()
123 error.printStackTrace(System.out); in exceptionsRethrowClassInitFailure()
145 } catch (Exception error) { in exceptionsRethrowClassInitFailureNoStringInit()
146 error.printStackTrace(System.out); in exceptionsRethrowClassInitFailureNoStringInit()
/art/build/
DAndroid.common_build.mk60 $(error LIBART_IMG_HOST_BASE_ADDRESS unset)
64 $(error LIBART_IMG_TARGET_BASE_ADDRESS unset)
/art/tools/class2greylist/test/src/com/android/class2greylist/
DAnnotationHandlerTestBase.java52 verify(mStatus, never()).error(any(Throwable.class)); in assertNoErrors()
53 verify(mStatus, never()).error(any(), any()); in assertNoErrors()
DCovariantReturnTypeHandlerTest.java104 verify(mStatus, atLeastOnce()).error(any(), any()); in testAnnotatedMemberNotPublicApi()
129 verify(mStatus, atLeastOnce()).error(any(), any()); in testReturnTypeAlreadyWhitelisted()
151 verify(mStatus, atLeastOnce()).error(any(), any()); in testAnnotationOnField()
/art/runtime/arch/arm64/
Dasm_support_arm64.S50 .error "Unsupported offset"
56 .error "Size should be positive"
59 .error "Unsupported offset"
66 .error "Unsupported size"
193 #error "FRAME_SIZE_SAVE_REFS_ONLY(ARM64) size not as expected."
235 #error "FRAME_SIZE_SAVE_REFS_AND_ARGS(ARM64) size not as expected."
329 #error "FRAME_SIZE_SAVE_ALL_CALLEE_SAVES(ARM64) size not as expected."
/art/test/1337-gc-coverage/
Dcheck18 if grep error "$2"; then
/art/test/148-multithread-gc-annotations/
Dcheck18 if grep error "$2"; then
/art/test/978-virtual-interface/
Dexpected.txt1 Recieved expected ICCE error!
/art/test/075-verification-error/
Dinfo.txt1 Exercise deferred verification error reporting.
/art/libdexfile/dex/
Ddex_file_loader.cc74 const int32_t error = ExtractToMemory(handle_, zip_entry_, map.data(), map.size()); in Extract() local
75 if (error) { in Extract()
76 *error_msg = std::string(ErrorCodeString(error)); in Extract()
113 const int32_t error = OpenArchiveFromMemory(nonconst_base, size, "ZipArchiveMemory", &handle); in Open() local
114 if (error) { in Open()
115 *error_msg = std::string(ErrorCodeString(error)); in Open()
126 const int32_t error = FindEntry(handle_, name, zip_entry.get()); in Find() local
127 if (error) { in Find()
128 *error_msg = std::string(ErrorCodeString(error)); in Find()
/art/test/VerifierDepsMulti/
DMySoftVerificationFailure.smali20 sget-object v0, LMySoftVerificationFailure;->error:LUnknownType;
24 .field public static error:LUnknownType;
/art/openjdkjvmti/
Dti_logging.h64 int error) in JvmtiLogMessage() argument
66 real_log_(file, line, severity, tag, error), in JvmtiLogMessage()
/art/test/595-error-class/
Dinfo.txt1 Regression test on merging array type with error component type.
/art/libnativeloader/
Dpublic_libraries.cpp128 return Errorf("Cannot parse {}: {}", configFile, result.error().message()); in ReadConfig()
167 config_file_path.c_str(), ret.error().message().c_str()); in ReadExtensionLibraries()
186 config_file.c_str(), sonames.error().message().c_str()); in InitDefaultPublicLibraries()
276 LOG_ALWAYS_FATAL("%s: %s", config_file.c_str(), sonames.error().message().c_str()); in InitLlndkLibrariesVendor()
290 LOG_ALWAYS_FATAL("%s: %s", config_file.c_str(), sonames.error().message().c_str()); in InitLlndkLibrariesProduct()
301 LOG_ALWAYS_FATAL("%s", sonames.error().message().c_str()); in InitVndkspLibrariesVendor()
315 LOG_ALWAYS_FATAL("%s", sonames.error().message().c_str()); in InitVndkspLibrariesProduct()
337 LOG_ALWAYS_FATAL("%s: %s", kJniConfigFile, config.error().message().c_str()); in InitApexJniLibraries()
478 return ret.error(); in ParseConfig()

12345678