• Home
  • Raw
  • Download

Lines Matching refs:res

42                                          jvmtiError res) {  in throwCommonRedefinitionError()  argument
45 jvmti->GetErrorName(res, &error); in throwCommonRedefinitionError()
100 jvmtiError res) { in throwRedefinitionError() argument
101 return throwCommonRedefinitionError<true>(jvmti, env, num_targets, target, res); in throwRedefinitionError()
118 jvmtiError res = jvmti_env->RedefineClasses(num_redefines, defs.data()); in DoMultiClassRedefine() local
119 if (res != JVMTI_ERROR_NONE) { in DoMultiClassRedefine()
120 throwRedefinitionError(jvmti_env, env, num_redefines, targets, res); in DoMultiClassRedefine()
247 CommonTransformationResult& res = gTransformations[name_str][0]; in CommonClassFileLoadHookRetransformable() local
248 const std::vector<unsigned char>& desired_array = IsJVM() ? res.class_bytes : res.dex_bytes; in CommonClassFileLoadHookRetransformable()
286 jvmtiError res = jvmti_env->SetEventNotificationMode(enable ? JVMTI_ENABLE : JVMTI_DISABLE, in Java_art_Redefinition_enableCommonRetransformation() local
289 if (res != JVMTI_ERROR_NONE) { in Java_art_Redefinition_enableCommonRetransformation()
290 JvmtiErrorToException(env, jvmti_env, res); in Java_art_Redefinition_enableCommonRetransformation()
298 jvmtiError res) { in throwRetransformationError() argument
299 return throwCommonRedefinitionError<false>(jvmti, env, num_targets, targets, res); in throwRetransformationError()
308 jvmtiError res = jvmti_env->RetransformClasses(len, classes.data()); in DoClassRetransformation() local
309 if (res != JVMTI_ERROR_NONE) { in DoClassRetransformation()
310 throwRetransformationError(jvmti_env, env, len, classes.data(), res); in DoClassRetransformation()
385 jvmtiError res = jvmti_env->SetEventCallbacks(&current_callbacks, sizeof(current_callbacks)); in SetupCommonRetransform() local
386 CHECK_EQ(res, JVMTI_ERROR_NONE); in SetupCommonRetransform()
399 jvmtiError res = jvmti_env->SetEventCallbacks(&current_callbacks, sizeof(current_callbacks)); in SetupCommonTransform() local
400 CHECK_EQ(res, JVMTI_ERROR_NONE); in SetupCommonTransform()