/aosp12/art/test/1963-add-to-dex-classloader-in-memory/ |
H A D | Android.bp | 3 // Build rules for ART run-test `1963-add-to-dex-classloader-in-memory`. 16 name: "art-run-test-1963-add-to-dex-classloader-in-memory", 21 ":art-run-test-1963-add-to-dex-classloader-in-memory-expected-stdout", 22 ":art-run-test-1963-add-to-dex-classloader-in-memory-expected-stderr", 28 name: "art-run-test-1963-add-to-dex-classloader-in-memory-expected-stdout", 29 out: ["art-run-test-1963-add-to-dex-classloader-in-memory-expected-stdout.txt"], 36 name: "art-run-test-1963-add-to-dex-classloader-in-memory-expected-stderr", 37 out: ["art-run-test-1963-add-to-dex-classloader-in-memory-expected-stderr.txt"],
|
H A D | info.txt | 1 Tests we can add dex-file buffers to an existing classloader and the old classes can see them.
|
H A D | expected-stdout.txt | 5 -- Adding NewClass to classloader!
|
/aosp12/art/openjdkjvmti/ |
H A D | ti_search.cc | 259 jobject classloader, in AddToDexClassLoaderInMemory() argument 266 } else if (classloader == nullptr) { in AddToDexClassLoaderInMemory() 310 jvmtiError result = AddToDexClassLoader(jvmti_env, classloader, seg.c_str()); in AddToDexClassLoaderInMemory() 321 jobject classloader, in AddToDexClassLoader() argument 327 } else if (classloader == nullptr) { in AddToDexClassLoader() 347 if (!env->IsInstanceOf(classloader, art::WellKnownClasses::dalvik_system_BaseDexClassLoader)) { in AddToDexClassLoader() 364 env->CallVoidMethod(classloader, add_dex_path_id, dex_path.get()); in AddToDexClassLoader()
|
H A D | ti_search.h | 50 static jvmtiError AddToDexClassLoader(jvmtiEnv* env, jobject classloader, const char* segment); 52 jobject classloader,
|
/aosp12/art/test/936-search-onload/ |
H A D | expected-stdout.txt | 1 B was loaded with boot classloader 2 A was loaded with system classloader
|
/aosp12/art/test/597-app-images-same-classloader/ |
H A D | info.txt | 1 Tests that loading an app image into an already existent classloader works if 2 the classloader context is correct.
|
/aosp12/art/libnativeloader/ |
H A D | README.md | 13 along with the reference to the classloader where the call was made. Then this 14 library finds the linker namespace (named `classloader-namespace`) that is 15 associated with the given classloader, and tries to load the requested library 20 associated with the classloader that loaded the APK. The linker namespace is 74 classloader.
|
/aosp12/frameworks/base/core/java/android/app/ |
H A D | ApplicationLoaders.java | 123 ClassLoader classloader = ClassLoaderFactory.createClassLoader( in getClassLoader() local 132 classloader, librarySearchPath, libraryPermittedPath); in getClassLoader() 136 mLoaders.put(cacheKey, classloader); in getClassLoader() 138 return classloader; in getClassLoader()
|
/aosp12/system/tools/aidl/ |
H A D | aidl_to_java.cpp | 510 const string classloader = EnsureAndGetClassloader(const_cast<CodeGeneratorContext&>(c)); in CreateFromParcelFor() local 511 c.writer << c.var << " = " << c.parcel << ".readArrayList(" << classloader << ");\n"; in CreateFromParcelFor() 546 const string classloader = EnsureAndGetClassloader(const_cast<CodeGeneratorContext&>(c)); in CreateFromParcelFor() local 547 c.writer << c.var << " = " << c.parcel << ".readHashMap(" << classloader << ");\n"; in CreateFromParcelFor() 696 const string classloader = EnsureAndGetClassloader(const_cast<CodeGeneratorContext&>(c)); in ReadFromParcelFor() local 697 c.writer << c.parcel << ".readList(" << c.var << ", " << classloader << ");\n"; in ReadFromParcelFor() 728 const string classloader = EnsureAndGetClassloader(const_cast<CodeGeneratorContext&>(c)); in ReadFromParcelFor() local 729 c.writer << c.var << " = " << c.parcel << ".readHashMap(" << classloader << ");\n"; in ReadFromParcelFor()
|
/aosp12/frameworks/base/media/lib/remotedisplay/ |
H A D | README.txt | 7 At runtime, the shared library is added to the classloader of the app via the 9 parent classloader, regardless of whether the stub library is linked to the
|
/aosp12/art/test/1964-add-to-dex-classloader-file/ |
H A D | info.txt | 1 Tests we can add dex-file buffers to an existing classloader and the old classes can see them.
|
H A D | expected-stdout.txt | 5 -- Adding NewClass to classloader!
|
/aosp12/frameworks/base/media/lib/signer/ |
H A D | README.txt | 9 At runtime, the shared library is added to the classloader of the app via the 11 parent classloader, regardless of whether the stub library is linked to the
|
/aosp12/art/test/944-transform-classloaders/ |
H A D | info.txt | 1 Tests that redefined dex files are stored in the appropriate classloader.
|
/aosp12/frameworks/multidex/instrumentation/ |
H A D | README | 4 This can be used by an Android test project to set up the classloader
|
/aosp12/frameworks/multidex/library/ |
H A D | README | 4 in the classloader of an application running on API 4+.
|
/aosp12/art/test/912-classes/ |
H A D | classes.cc | 179 jobject classloader; in Java_art_Test912_getClassLoader() local 180 jvmtiError result = jvmti_env->GetClassLoader(klass, &classloader); in Java_art_Test912_getClassLoader() 182 return classloader; in Java_art_Test912_getClassLoader()
|
/aosp12/art/sigchainlib/ |
H A D | Android.bp | 34 // is loaded in a classloader linker namespace looks for
|
/aosp12/art/tools/jvmti-agents/breakpoint-logger/ |
H A D | README.md | 29 that cannot be found using standard or bootstrap classloader at startup.
|
/aosp12/frameworks/base/cmds/app_process/ |
H A D | Android.bp | 33 // linker namespace, including an app's classloader namespace. Provide this
|
/aosp12/art/runtime/native/ |
H A D | dalvik_system_VMDebug.cc | 435 static void VMDebug_nativeAttachAgent(JNIEnv* env, jclass, jstring agent, jobject classloader) { in VMDebug_nativeAttachAgent() argument 457 Runtime::Current()->AttachAgent(env, filename, classloader); in VMDebug_nativeAttachAgent()
|
/aosp12/frameworks/base/packages/SystemUI/docs/ |
H A D | plugins.md | 218 …sLoader that points at the plugin APK. The parent of the classloader is a special classloader bas… 222 The class filtering in the parent classloader allows plugins to include any classes they want witho…
|
/aosp12/art/test/ |
H A D | Android.bp | 653 "1963-add-to-dex-classloader-in-memory/add_to_loader.cc", 694 "1964-add-to-dex-classloader-file/add_to_loader.cc", 695 "1963-add-to-dex-classloader-in-memory/check_memfd_create.cc", 1043 "1963-add-to-dex-classloader-in-memory/src/art/Test1963.java", 1183 "1963-add-to-dex-classloader-in-memory/expected-stdout.txt",
|
/aosp12/packages/apps/TV/libs/m2/ |
H A D | guava-28.0-android.jar | META-INF/MANIFEST.MF
META-INF/
META-INF/maven/
META- ... |