Lines Matching refs:error
105 jvmtiError error; in Initialize() local
107 error = jvmti->GetSystemProperty("java.vm.name", /*out*/ &value_ptr); in Initialize()
108 CHECK_JVMTI_ERROR(jvmti, error) << "Failed to get property 'java.vm.name'"; in Initialize()
173 jvmtiError error; in LookupBytecode() local
181 error = jvmti_env->GetBytecodes(method, &bytecode_count_ptr, &bytecodes_ptr); in LookupBytecode()
182 CHECK_JVMTI_ERROR(jvmti_env, error) << "Failed to get bytecodes for method " << method; in LookupBytecode()
264 jvmtiError error{}; in Agent_OnLoad() local
272 error = jvmti->AddCapabilities(&caps); in Agent_OnLoad()
273 CHECK_JVMTI_ERROR(jvmti, error) in Agent_OnLoad()
283 error = jvmti->SetEventCallbacks(&callbacks, in Agent_OnLoad()
285 CHECK_JVMTI_ERROR(jvmti, error) << "Unable to set event callbacks"; in Agent_OnLoad()
290 error = jvmti->SetEventNotificationMode(JVMTI_ENABLE, in Agent_OnLoad()
293 CHECK_JVMTI_ERROR(jvmti, error) in Agent_OnLoad()
296 error = jvmti->SetEventNotificationMode(JVMTI_ENABLE, in Agent_OnLoad()
299 CHECK_JVMTI_ERROR(jvmti, error) in Agent_OnLoad()