HomeSort by relevance Sort by last modified time
    Searched defs:jvm (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/caliper/caliper/src/main/java/com/google/caliper/platform/jvm/
JvmModule.java 17 package com.google.caliper.platform.jvm;
JvmPlatform.java 17 package com.google.caliper.platform.jvm;
45 * Some default JVM args to keep worker VMs somewhat predictable.
76 super(Type.JVM);
86 File jvm = new File(bin, "java"); local
87 if (!jvm.exists() || jvm.isDirectory()) {
88 jvm = new File(bin, "java.exe");
89 if (!jvm.exists() || jvm.isDirectory()) {
95 return jvm;
    [all...]
EffectiveClassPath.java 17 package com.google.caliper.platform.jvm;
  /external/webrtc/talk/app/webrtc/test/
androidtestinitializer.cc 57 JavaVM* jvm = NULL; local
58 RTC_CHECK_EQ(0, jni->GetJavaVM(&jvm));
61 RTC_CHECK_GE(webrtc_jni::InitGlobalJniVariables(jvm), 0);
65 webrtc::VoiceEngine::SetAndroidObjects(jvm, context);
  /external/webrtc/webrtc/modules/audio_device/android/
ensure_initialized.cc 32 JavaVM* jvm = NULL; local
33 RTC_CHECK_EQ(0, jni->GetJavaVM(&jvm));
37 webrtc::JVM::Initialize(jvm, context);
  /art/test/905-object-free/
tracking_free.cc 61 JavaVM* jvm = nullptr; local
62 env->GetJavaVM(&jvm);
63 CHECK_EQ(jvm->GetEnv(reinterpret_cast<void**>(&jvmti_env2), JVMTI_VERSION_1_2), 0);
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-runtime/1.0.5/
kotlin-runtime-1.0.5.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0/
kotlin-runtime-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.2/
kotlin-runtime-1.0.2.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.5/
kotlin-runtime-1.0.5.jar 
kotlin-reflect.jar 
kotlin-runtime.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.6/
kotlin-runtime-1.0.6.jar 
  /prebuilts/tools/common/offline-m2/org/jetbrains/kotlin/kotlin-runtime/1.0.0/
kotlin-runtime-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-reflect/1.1.3/
kotlin-reflect-1.1.3.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-reflect/1.1.3-2/
kotlin-reflect-1.1.3-2.jar 
  /external/webrtc/webrtc/modules/utility/include/
jvm_android.h 40 // C++ in to Java. See example in JVM for more details.
73 // See example in JVM for more details on how to use it.
86 // This class is created by the JVM class and is used to expose methods that
89 // methods. See example in JVM for more details.
115 // // At initialization (e.g. in JNI_OnLoad), call JVM::Initialize.
117 // JavaVM* jvm = NULL;
118 // jni->GetJavaVM(&jvm);
120 // webrtc::JVM::Initialize(jvm, context);
129 // // Calling thread must be attached to the JVM
168 JavaVM* jvm() const { return jvm_; } function in class:webrtc::JVM
    [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-reflect/1.0.6/
kotlin-reflect-1.0.6.jar 
  /art/test/903-hello-tagging/
tagging.cc 109 JavaVM* jvm; local
110 CHECK_EQ(0, env->GetJavaVM(&jvm));
113 CHECK_EQ(0, jvm->GetEnv(reinterpret_cast<void**>(&new_jvmti_env), JVMTI_VERSION_1_0));
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
FakeWorkers.java 23 import com.google.caliper.platform.jvm.JvmPlatform;
45 private static VirtualMachine jvm; field in class:FakeWorkers
48 * Try to find the currently executing jvm binary, N.B. This isn't guaranteed to be cross
52 if (jvm == null) {
55 jvm = new VirtualMachine("default",
61 return jvm;
65 * Returns a ProcessBuilder that attempts to invoke the given class as main in a JVM configured
66 * with a classpath equivalent to the currently executing JVM.
69 VirtualMachine jvm = init(); local
72 args = WorkerProcess.getJvmArgs(jvm, BenchmarkClass.forClass(mainClass))
    [all...]
  /external/javassist/src/main/javassist/util/
HotSwapper.java 39 * <p>To use this class, the JVM must be launched with the following
51 * launch another JVM for running a target application, this port number
77 private VirtualMachine jvm; field in class:HotSwapper
87 * Connects to the JVM.
89 * @param port the port number used for the connection to the JVM.
98 * Connects to the JVM.
100 * @param port the port number used for the connection to the JVM.
105 jvm = null;
115 jvm = connector.attach(arguments);
116 EventRequestManager manager = jvm.eventRequestManager()
    [all...]
  /external/webrtc/webrtc/modules/utility/source/
jvm_android.cc 17 #define TAG "JVM"
23 JVM* g_jvm;
72 JavaVM* jvm = JVM::GetInstance()->jvm(); local
73 RTC_CHECK(jvm);
74 JNIEnv* jni = GetEnv(jvm);
76 ALOGD("Attaching thread to JVM");
78 jint ret = jvm->AttachCurrentThread(&env, nullptr);
87 ALOGD("Detaching thread from JVM");
    [all...]
  /external/webrtc/webrtc/voice_engine/test/android/android_test/jni/
android_test.cc 131 JavaVM* jvm; member in struct:__anon39308
201 // Attach this thread to JVM
203 jint res = veData1.jvm->AttachCurrentThread(&env, NULL);
266 //res = veData1.jvm->DetachCurrentThread();
350 // Store the JVM
351 veData1.jvm = vm;
352 veData2.jvm = vm;
405 VoiceEngine::SetAndroidObjects(veData1.jvm, env, context);
408 // TODO(leozwang) add autotest setAndroidObjects(veData1.jvm, context);
437 VoiceEngine::SetAndroidObjects(veData1.jvm, env, context)
    [all...]
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.2-4/
kotlin-stdlib-1.1.2-4.jar 
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/
kotlin-stdlib-1.1.3.jar 

Completed in 282 milliseconds

1 2 3