Home
last modified time | relevance | path

Searched refs:libraries (Results 1 – 18 of 18) sorted by relevance

/art/tools/
Dbuildbot-sync.sh33 adb push ${ANDROID_BUILD_TOP}/art/tools/public.libraries.buildbot.txt \
34 ${ART_TEST_CHROOT}/system/etc/public.libraries.txt
/art/build/apex/
DAndroid.bp14 // - Base requirements (libraries).
17 // the Runtime APEX, meaning that copies of some of these libraries have to be
20 // Buildbot and Golem (see `art/Android.mk`). If you add libraries to this list,
34 // TODO(b/124476339): Clean up the following libraries once "required"
35 // dependencies work with APEX libraries.
74 // - Debug variants (libraries).
128 // Core Java libraries.
137 // Native libraries that support the core Java libraries.
140 // the Runtime APEX, meaning that copies of some of these libraries have to be
143 // Buildbot and Golem (see `art/Android.mk`). If you add libraries to this list,
[all …]
Dld.config.txt15 # Visible because some libraries are dlopen'ed, e.g. libopenjdk is dlopen'ed by
57 # the runtime Java code and binaries do not explicitly load native libraries
63 # This namespace is for libraries within the conscrypt APEX.
/art/test/688-shared-library/
Dinfo.txt1 Tests on BaseDexClassLoader shared libraries and their class
/art/test/121-modifiers/
Dinfo.txt5 To reproduce, compile the source files. Asm.java needs the ASM libraries (core and tree). Then
7 into the classes directory (this assumes the ASM libraries are names asm.jar and asm-tree.jar).
/art/tools/jvmti-agents/wrapagentproperties/
DREADME.md10 The libraries will be built for 32-bit, 64-bit, host and target. Below examples
/art/tools/jvmti-agents/dump-jvmti-state/
DREADME.md11 The libraries will be built for 32-bit, 64-bit, host and target. Below examples
/art/
DAndroid.mk598 $(TARGET_OUT)/etc/public.libraries.txt \
609 sed -i '/libartd.so/d' $(TARGET_OUT)/etc/public.libraries.txt
610 sed -i '/libdexfiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
611 sed -i '/libprofiled.so/d' $(TARGET_OUT)/etc/public.libraries.txt
612 sed -i '/libartbased.so/d' $(TARGET_OUT)/etc/public.libraries.txt
/art/tools/jvmti-agents/jit-load/
DREADME.md10 The libraries will be built for 32-bit, 64-bit, host and target. Below examples assume you want to …
/art/tools/jvmti-agents/simple-force-redefine/
DREADME.md12 The libraries will be built for 32-bit, 64-bit, host and target. Below examples
/art/oatdump/
DAndroid.bp99 // correctly. Multiple source libraries depend on it.
/art/tools/jvmti-agents/field-null-percent/
DREADME.md12 The libraries will be built for 32-bit, 64-bit, host and target. Below examples
/art/tools/jvmti-agents/breakpoint-logger/
DREADME.md10 The libraries will be built for 32-bit, 64-bit, host and target. Below examples
/art/tools/jvmti-agents/ti-fast/
DREADME.md11 The libraries will be built for 32-bit, 64-bit, host and target. Below examples
/art/tools/jvmti-agents/titrace/
DREADME.md9 The libraries will be built for 32-bit, 64-bit, host and target. Below examples assume you want to …
/art/runtime/
Dclass_loader_context.cc718 MutableHandle<mirror::ObjectArray<mirror::ClassLoader>> libraries( in CreateClassLoaderInternal() local
722 libraries.Assign(mirror::ObjectArray<mirror::ClassLoader>::Alloc( in CreateClassLoaderInternal()
728 libraries->Set(i, in CreateClassLoaderInternal()
772 libraries); in CreateClassLoaderInternal()
Dclass_loader_context_test.cc1414 Handle<mirror::ObjectArray<mirror::ClassLoader>> libraries = hs.NewHandle( in TEST_F() local
1419 libraries->Set(0, soa.Decode<mirror::ClassLoader>(class_loader_a)); in TEST_F()
1422 "ForClassLoaderB", nullptr, soa.AddLocalReference<jobject>(libraries.Get())); in TEST_F()
/art/runtime/jni/
Djava_vm_ext.cc362 static void UnloadLibraries(JavaVM* vm, const std::vector<SharedLibrary*>& libraries) { in UnloadLibraries() argument
364 for (SharedLibrary* library : libraries) { in UnloadLibraries()