HomeSort by relevance Sort by last modified time
    Searched refs:class_file_bytes (Results 51 - 53 of 53) sorted by null

1 23

  /art/test/999-redefine-hiddenapi/src/art/
Redefinition.java 24 public final byte[] class_file_bytes; field in class:Redefinition.CommonClassDefinition
27 public CommonClassDefinition(Class<?> target, byte[] class_file_bytes, byte[] dex_file_bytes) {
29 this.class_file_bytes = class_file_bytes;
65 class_files.add(d.class_file_bytes);
76 d.class_file_bytes,
  /art/test/ti-agent/
redefinition_helper.cc 108 jbyteArray* class_file_bytes,
112 jbyteArray desired_array = IsJVM() ? class_file_bytes[i] : dex_file_bytes[i];
127 jbyteArray class_file_bytes,
129 return DoMultiClassRedefine(jvmti_env, env, 1, &target, &class_file_bytes, &dex_file_bytes);
135 JNIEnv* env, jclass, jclass target, jbyteArray class_file_bytes, jbyteArray dex_file_bytes) {
136 DoClassRedefine(jvmti_env, env, target, class_file_bytes, dex_file_bytes);
146 jobjectArray class_file_bytes,
152 if (len != env->GetArrayLength(class_file_bytes) || len != env->GetArrayLength(dex_file_bytes)) {
160 class_files.push_back(static_cast<jbyteArray>(env->GetObjectArrayElement(class_file_bytes, i)));
  /art/test/921-hello-failure/src/
Main.java 43 return new Redefinition.CommonClassDefinition(d.target, d.class_file_bytes, d.dex_file_bytes);

Completed in 178 milliseconds

1 23