Lines Matching refs:res

47                                          jvmtiError res) {  in throwCommonRedefinitionError()  argument
50 jvmti->GetErrorName(res, &error); in throwCommonRedefinitionError()
139 jvmtiError res) { in throwRedefinitionError() argument
140 return throwCommonRedefinitionError<true>(jvmti, env, num_targets, target, res); in throwRedefinitionError()
158 jvmtiError res = CallRedefineEntrypoint<kType>(env, jvmti_env, num_redefines, defs.data()); in DoMultiClassRedefine() local
159 if (res != JVMTI_ERROR_NONE) { in DoMultiClassRedefine()
160 throwRedefinitionError(jvmti_env, env, num_redefines, targets, res); in DoMultiClassRedefine()
337 CommonTransformationResult& res = gTransformations[name_str][0]; in CommonClassFileLoadHookRetransformable() local
338 const std::vector<unsigned char>& desired_array = IsJVM() ? res.class_bytes : res.dex_bytes; in CommonClassFileLoadHookRetransformable()
376 jvmtiError res = jvmti_env->SetEventNotificationMode(enable ? JVMTI_ENABLE : JVMTI_DISABLE, in Java_art_Redefinition_enableCommonRetransformation() local
379 if (res != JVMTI_ERROR_NONE) { in Java_art_Redefinition_enableCommonRetransformation()
380 JvmtiErrorToException(env, jvmti_env, res); in Java_art_Redefinition_enableCommonRetransformation()
388 jvmtiError res) { in throwRetransformationError() argument
389 return throwCommonRedefinitionError<false>(jvmti, env, num_targets, targets, res); in throwRetransformationError()
398 jvmtiError res = jvmti_env->RetransformClasses(len, classes.data()); in DoClassRetransformation() local
399 if (res != JVMTI_ERROR_NONE) { in DoClassRetransformation()
400 throwRetransformationError(jvmti_env, env, len, classes.data(), res); in DoClassRetransformation()
477 jvmtiError res = jvmti_env->SetEventCallbacks(&current_callbacks, sizeof(current_callbacks)); in SetupCommonRetransform() local
478 CHECK_EQ(res, JVMTI_ERROR_NONE); in SetupCommonRetransform()
480 jvmtiError res = jvmti_env->SetExtensionEventCallback( in SetupCommonRetransform() local
484 CHECK_EQ(res, JVMTI_ERROR_NONE); in SetupCommonRetransform()
498 jvmtiError res = jvmti_env->SetEventCallbacks(&current_callbacks, sizeof(current_callbacks)); in SetupCommonTransform() local
499 CHECK_EQ(res, JVMTI_ERROR_NONE); in SetupCommonTransform()