Lines Matching refs:error
355 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()
411 if (error != JVMTI_ERROR_NONE) { in AgentStart()
425 error = jvmti->SetEventNotificationMode(JVMTI_ENABLE, in AgentStart()
428 if (error != JVMTI_ERROR_NONE) { in AgentStart()