/external/kotlinc/lib/ |
D | kotlin-reflect-sources.jar | ... kotlin/
kotlin/reflect/
kotlin/reflect/jvm/
kotlin/reflect/jvm/internal/
kotlin ... |
D | kotlin-reflect.jar | ... 1$1$1$1 extends kotlin.jvm.internal.Lambda implements kotlin.jvm.functions ... |
D | kotlin-stdlib-sources.jar | ... kt
kotlin/jvm/KotlinReflectionNotSupportedError.kt
kotlin/jvm/PurelyImplements.kt
kotlin/jvm/annotations/ ... |
D | kotlin-scripting-jvm.jar | ... script/experimental/
kotlin/script/experimental/jvm/
kotlin/script/experimental/jvm/util ... |
D | kotlin-annotations-jvm.jar | ... kotlin/
kotlin/annotations/
kotlin/annotations/jvm/
kotlin/annotations/jvm/ReadOnly.class ... |
D | jvm-abi-gen.jar | ... jetbrains/kotlin/
org/jetbrains/kotlin/jvm/
org/jetbrains/kotlin/jvm/abi ... |
D | kotlin-stdlib.jar | ... -INF/MANIFEST.MF
kotlin/
kotlin/jvm/
kotlin/jvm/internal/
kotlin/jvm ... |
D | kotlin-test.jar | ... test.Asserter$assertSame$1 extends kotlin.jvm.internal.Lambda implements kotlin.jvm.functions ... |
D | kotlin-annotations-android.jar | ... kotlin/
kotlin/annotations/
kotlin/annotations/jvm/
kotlin/annotations/jvm/internal/
kotlin ... |
D | kotlin-stdlib-jdk7.jar | ... use (java.lang.AutoCloseable, kotlin.jvm.functions.Function1)
Throwable e
Throwable exception
AutoCloseable ... |
D | kotlin-scripting-common.jar | ... experimental.util.PropertiesCollection$Builder, kotlin.jvm.functions.Function1)
kotlin.script.experimental ... |
D | kotlinx-serialization-compiler-plugin.jar | ... KSerializerDescriptorResolver$generateSerializerMethods$isDescriptorGetter$2 extends kotlin.jvm.internal.Lambda implements kotlin.jvm.functions ... |
D | kotlin-scripting-compiler.jar | ... discoverScriptTemplatesInClasspath$1$loader$1 extends kotlin.jvm.internal.Lambda implements kotlin.jvm.functions ... |
D | kotlin-daemon-client.jar | ... common.messages.MessageCollector messageCollector
private final kotlin.jvm.functions.Function2 outputsCollector
public void report (int |
D | kotlin-runner.jar | ... runner.Main$run$1 extends kotlin.jvm.internal.Lambda implements kotlin.jvm.functions ... |
/external/webrtc/webrtc/modules/utility/source/ |
D | jvm_android.cc | 17 #define TAG "JVM" 23 JVM* g_jvm; 72 JavaVM* jvm = JVM::GetInstance()->jvm(); in AttachCurrentThreadIfNeeded() local 73 RTC_CHECK(jvm); in AttachCurrentThreadIfNeeded() 74 JNIEnv* jni = GetEnv(jvm); in AttachCurrentThreadIfNeeded() 76 ALOGD("Attaching thread to JVM"); in AttachCurrentThreadIfNeeded() 78 jint ret = jvm->AttachCurrentThread(&env, nullptr); in AttachCurrentThreadIfNeeded() 87 ALOGD("Detaching thread from JVM"); in ~AttachCurrentThreadIfNeeded() 88 jint res = JVM::GetInstance()->jvm()->DetachCurrentThread(); in ~AttachCurrentThreadIfNeeded() 208 void JVM::Initialize(JavaVM* jvm, jobject context) { in Initialize() argument [all …]
|
D | helpers_android.cc | 25 JNIEnv* GetEnv(JavaVM* jvm) { in GetEnv() argument 27 jint status = jvm->GetEnv(&env, JNI_VERSION_1_6); in GetEnv() 98 AttachThreadScoped::AttachThreadScoped(JavaVM* jvm) in AttachThreadScoped() argument 99 : attached_(false), jvm_(jvm), env_(NULL) { in AttachThreadScoped() 100 env_ = GetEnv(jvm); in AttachThreadScoped() 105 ALOGD("Attaching thread to JVM%s", GetThreadInfo().c_str()); in AttachThreadScoped() 106 jint res = jvm->AttachCurrentThread(&env_, NULL); in AttachThreadScoped() 114 ALOGD("Detaching thread from JVM%s", GetThreadInfo().c_str()); in ~AttachThreadScoped()
|
/external/webrtc/webrtc/modules/utility/include/ |
D | 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. 130 // env = JVM::GetInstance()->environment(); [all …]
|
/external/libtextclassifier/utils/java/ |
D | jni-cache.cc | 23 JniCache::JniCache(JavaVM* jvm) in JniCache() argument 24 : jvm(jvm), in JniCache() 25 string_class(nullptr, jvm), in JniCache() 26 string_utf8(nullptr, jvm), in JniCache() 27 pattern_class(nullptr, jvm), in JniCache() 28 matcher_class(nullptr, jvm), in JniCache() 29 locale_class(nullptr, jvm), in JniCache() 30 locale_us(nullptr, jvm), in JniCache() 31 breakiterator_class(nullptr, jvm), in JniCache() 32 integer_class(nullptr, jvm), in JniCache() [all …]
|
/external/objenesis/main/src/main/java/org/objenesis/strategy/ |
D | PlatformDescription.java | 59 /** JVM version */ 62 /** JVM version */ 71 /** JVM name */ 92 + "JVM name=\"" + JVM_NAME + "\", " in describePlatform() 93 + "JVM version=" + VM_VERSION + ", " in describePlatform() 94 + "JVM info=" + VM_INFO; in describePlatform() 107 * Check if the current JVM is of the type passed in parameter. Normally, this will be a constant 111 * @param name jvm name we are looking for 112 * @return if it's the requested JVM 119 * Check if this JVM is an Android JVM based on OpenJDK. [all …]
|
/external/webrtc/webrtc/modules/video_render/android/ |
D | video_render_android_native_opengl2.cc | 40 "RendererAndroid():UseOpenGL No JVM set."); in UseOpenGL2() 47 // Attach this thread to JVM in UseOpenGL2() 56 "RendererAndroid(): Could not attach thread to JVM (%d, %p)", in UseOpenGL2() 89 "%s: Could not detach thread from JVM", __FUNCTION__); in UseOpenGL2() 104 // Attach this thread to JVM in ~AndroidNativeOpenGl2Renderer() 110 "%s: Could not attach thread to JVM (%d, %p)", in ~AndroidNativeOpenGl2Renderer() 125 "%s: Could not detach thread from JVM", in ~AndroidNativeOpenGl2Renderer() 150 // Attach this thread to JVM in Init() 156 "%s: Could not attach thread to JVM (%d, %p)", in Init() 203 "%s: Could not detach thread from JVM", __FUNCTION__); in Init() [all …]
|
D | video_render_android_surface_view.cc | 47 // Attach this thread to JVM in ~AndroidSurfaceViewRenderer() 55 "%s: Could not attach thread to JVM (%d, %p)", in ~AndroidSurfaceViewRenderer() 73 "%s: Could not detach thread from JVM", in ~AndroidSurfaceViewRenderer() 104 // Attach this thread to JVM in Init() 112 "%s: Could not attach thread to JVM (%d, %p)", in Init() 193 "%s: Could not detach thread from JVM", __FUNCTION__); in Init() 227 JavaVM* jvm, in AndroidSurfaceViewChannel() argument 233 _jvm(jvm), in AndroidSurfaceViewChannel() 255 // Attach this thread to JVM in ~AndroidSurfaceViewChannel() 263 "%s: Could not attach thread to JVM (%d, %p)", in ~AndroidSurfaceViewChannel() [all …]
|
/external/caliper/caliper/src/test/java/com/google/caliper/runner/ |
D | FakeWorkers.java | 23 import com.google.caliper.platform.jvm.JvmPlatform; 45 private static VirtualMachine jvm; field in FakeWorkers 48 * Try to find the currently executing jvm binary, N.B. This isn't guaranteed to be cross 52 if (jvm == null) { in init() 55 jvm = new VirtualMachine("default", in init() 61 return jvm; in init() 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(); in createProcessBuilder() local 72 args = WorkerProcess.getJvmArgs(jvm, BenchmarkClass.forClass(mainClass)); in createProcessBuilder()
|
/external/caliper/caliper/src/main/java/com/google/caliper/platform/jvm/ |
D | JvmPlatform.java | 17 package com.google.caliper.platform.jvm; 45 * Some default JVM args to keep worker VMs somewhat predictable. 76 super(Type.JVM); in JvmPlatform() 86 File jvm = new File(bin, "java"); in vmExecutable() local 87 if (!jvm.exists() || jvm.isDirectory()) { in vmExecutable() 88 jvm = new File(bin, "java.exe"); in vmExecutable() 89 if (!jvm.exists() || jvm.isDirectory()) { in vmExecutable() 95 return jvm; in vmExecutable()
|
/external/grpc-grpc-java/benchmarks/ |
D | README.md | 24 ## JVM Options 26 … often useful to adjust some JVM options to improve performance and to gain some insights into wha… 27 …upper bound. If your program uses more than what's specified in `-Xmx` the JVM will exit with an `… 30 …- `-XX:-HeapDumpOnOutOfMemoryError` and `-XX:HeapDumpPath=path` when you are pushing the JVM hard … 33 …Ms on the machine, which you can then pass to `jstack` and it will print a thread dump of this JVM. 34 …JVM is similarly straightforward. First get the process id with `jps` and then use `jmap` to take …
|