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);
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0-beta-4584/
kotlin-runtime-1.0.0-beta-4584.jar 
  /prebuilts/tools/common/offline-m2/org/jetbrains/kotlin/kotlin-runtime/1.0.0-beta-4584/
kotlin-runtime-1.0.0-beta-4584.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.0-rc-1036/
kotlin-runtime-1.0.0-rc-1036.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/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-runtime/1.0.0-beta-1103/
kotlin-runtime-1.0.0-beta-1103.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.13.1513/
kotlin-runtime-0.13.1513.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.13.1514/
kotlin-runtime-0.13.1514.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/0.12.613/
kotlin-runtime-0.12.613.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...]
  /external/skia/platform_tools/android/apps/visualbench/src/main/jni/
main.cpp 75 JavaVM* jvm = state->activity->vm; local
77 jvm->AttachCurrentThread(&env, 0);
96 jvm->DetachCurrentThread();
  /frameworks/base/core/jni/android/graphics/
Bitmap.h 117 JavaVM* jvm; member in struct:android::Bitmap::__anon29391::__anon29394
  /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:__anon28204
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...]
  /art/test/004-JniTest/
jni_test.cc 28 static JavaVM* jvm = nullptr; member in namespace:art
32 CHECK(jvm == nullptr);
33 jvm = vm;
41 // Clear jvm for CHECK in test 004-JniTest.
42 jvm = nullptr;
46 CHECK(jvm != nullptr);
50 int attach_result = jvm->AttachCurrentThread(&env, &args);
57 int detach_result = jvm->DetachCurrentThread();
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jdepend.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
GenerateResults.java 215 String jvm = null; local
291 if (arg.equals("-jvm")) {
292 jvm = args[i + 1];
293 if (jvm.startsWith("-")) {
297 buffer.append(" ").append(arg).append(" = ").append(jvm).append('\n');
474 if (this.outputDir == null || this.configDescriptors == null || jvm == null) {
779 "-jvm\n" +
780 " Value specified in \"jvm\" key in eclipse.perf.config system property for current build.\n\n" +
    [all...]

Completed in 1461 milliseconds

1 2 3