Home
last modified time | relevance | path

Searched refs:so (Results 1 – 25 of 354) sorted by relevance

12345678910>>...15

/frameworks/av/apex/
Dld.config.txt36so:libGLESv1_CM.so:libGLESv2.so:libGLESv3.so:libRS.so:libandroid_net.so:libc.so:libcgrouprc.so:lib…
57 # /system/lib/libc.so, etc are symlinks to /apex/com.android.lib/lib/bionic/libc.so, etc.
62 # is after /system/lib, then /apex/... is never tried because libc.so
78 # These are dlopen'ed by libvndksupport.so.
112 # This is exceptionally required since android.hidl.memory@1.0-impl.so is here
141so:libGLESv1_CM.so:libGLESv2.so:libGLESv3.so:libRS.so:libandroid_net.so:libc.so:libcgrouprc.so:lib…
143 # Add a link for libz.so which is llndk on devices where VNDK is not enforced.
144 namespace.sphal.link.platform.shared_libs += libz.so
/frameworks/av/
DCleanSpec.mk47 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/lib/libmedia_native.so)
48 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/symbols/system/lib/libmedia_native.so)
49 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libmedia_native.so)
51 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libaudioflinger.so)
53 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libaudiopolicy.so)
55 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libaudiopolicy.so)
58 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libaudiopolicyservice.so)
59 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/libaudiopolicymanager.so)
62 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib/liboboe.so)
63 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/lib64/liboboe.so)
[all …]
DMainlineFiles.cfg9 # (so OWNERS, not frameworks/av/OWNERS)
18 # so 'foo/' and 'EXCLUDE foo/nope'
23 # so 'foo' will match 'foo', 'foo.c', 'foo/bar/baz'
/frameworks/native/opengl/libs/EGL/
Degl_angle_platform.cpp109 void* so = nullptr; in initializeAnglePlatform() local
117 so = android_dlopen_ext(kAngleEs2Lib, kAngleDlFlags, &dlextinfo); in initializeAnglePlatform()
118 if (so) { in initializeAnglePlatform()
119 ALOGD("dlopen_ext from APK (%s) success at %p", kAngleEs2Lib, so); in initializeAnglePlatform()
134 so = android_load_sphal_library(angleEs2LibName.c_str(), kAngleDlFlags); in initializeAnglePlatform()
135 if (so) { in initializeAnglePlatform()
136 ALOGD("dlopen (%s) success at %p", angleEs2LibName.c_str(), so); in initializeAnglePlatform()
144 reinterpret_cast<GetDisplayPlatformFunc>(dlsym(so, "ANGLEGetDisplayPlatform")); in initializeAnglePlatform()
152 reinterpret_cast<ResetDisplayPlatformFunc>(dlsym(so, "ANGLEResetDisplayPlatform")); in initializeAnglePlatform()
DLoader.cpp126 void* so = do_dlopen(path, RTLD_NOW | RTLD_LOCAL); in load_wrapper() local
127 ALOGE_IF(!so, "dlopen(\"%s\") failed: %s", path, dlerror()); in load_wrapper()
128 return so; in load_wrapper()
488 void* so = do_android_dlopen_ext(name.c_str(), RTLD_LOCAL | RTLD_NOW, &dlextinfo); in load_angle() local
490 if (so) { in load_angle()
491 ALOGD("dlopen_ext from APK (%s) success at %p", name.c_str(), so); in load_angle()
492 return so; in load_angle()
506 void* so = nullptr; in load_updated_driver() local
513 so = do_android_dlopen_ext(name.c_str(), RTLD_LOCAL | RTLD_NOW, &dlextinfo); in load_updated_driver()
514 if (so) { in load_updated_driver()
[all …]
DGLES_layers.md8 The layers will be traversed in the order they are specified, so the first layer will be directly b…
14 …point that can be called to look up functions below the layer. The entrypoint can be used like so:
43 adb push <layer>.so /data/local/debug/gles/
49 adb push libGLTrace.so /data/local/tmp
50 adb shell run-as com.android.gl2jni cp /data/local/tmp/libGLTrace.so .
52 libGLTrace.so
106 …till respond to `AndroidGLESLayer_GetProcAddress` requests from the loader so the platform knows w…
242 - This feature is backed by Android CTS, so you can run `atest CtsGpuToolsHostTestCases`
246 # Q is the first that will support this, so look for `Q` or 10 for release
/frameworks/av/media/libeffects/data/
Daudio_effects.conf27 path /vendor/lib/soundfx/libbundlewrapper.so
30 path /vendor/lib/soundfx/libreverbwrapper.so
33 path /vendor/lib/soundfx/libvisualizer.so
36 path /vendor/lib/soundfx/libdownmix.so
39 path /vendor/lib/soundfx/libldnhncr.so
42 path /vendor/lib/soundfx/libdynproc.so
/frameworks/libs/native_bridge_support/libmediandk/
DAndroid.bp35 // libbinder.so — greylisted, not included.
37 // libgui.so — greylisted, not included.
39 // libmedia.so — greylisted, not included.
41 // libstagefright.so — greylisted, not included.
42 // libui.so — greylisted, not included.
/frameworks/base/core/tests/overlaytests/device/src/com/android/overlaytest/
DOverlayBaseTest.java97 private boolean getExpected(boolean no, boolean so, boolean mo) { in getExpected() argument
102 return so; in getExpected()
111 private String getExpected(String no, String so, String mo) { in getExpected() argument
116 return so; in getExpected()
125 private int getExpected(int no, int so, int mo) { in getExpected() argument
130 return so; in getExpected()
139 private int[] getExpected(int[] no, int[] so, int[] mo) { in getExpected() argument
144 return so; in getExpected()
153 private void assertResource(int resId, boolean no, boolean so, boolean mo) throws Throwable { in assertResource() argument
154 boolean expected = getExpected(no, so, mo); in assertResource()
[all …]
/frameworks/compile/slang/tests/F_reduce_general_bad_result/
Dreduce_general_bad_result.rscript8 // NOTE: union and bitfield errors are only emitted once per type, so
25 // problem is result type, not accumulator type, so outconverter can fix this
30 // problem is result type, not accumulator type, so outconverter can break this
58 // problem is result type, not accumulator type, so outconverter can fix this
65 // problem is result type, not accumulator type, so outconverter can break this
97 // problem is result type, not accumulator type, so outconverter can fix this
105 // problem is result type, not accumulator type, so outconverter can break this
132 // problem is result type, not accumulator type, so outconverter can fix this
139 // problem is result type, not accumulator type, so outconverter can break this
168 // problem is result type, not accumulator type, so outconverter can fix this
[all …]
/frameworks/libs/native_bridge_support/libandroid/
DAndroid.bp36 // libbinder.so — greylisted, not included.
38 // libgui.so — greylisted, not included.
40 // libui.so — greylisted, not included.
/frameworks/ex/
DCleanSpec.mk52 $(call add-clean-step, rm -f $(PRODUCT_OUT)/system/lib/libframesequence.so)
53 $(call add-clean-step, rm -f $(PRODUCT_OUT)/system/lib64/libframesequence.so)
/frameworks/libs/net/common/native/
DREADME.md5 Fully-qualified name of java class needs to be hard-coded into the JNI .so, because JNI_OnLoad
6 does not take any parameters. This means that there needs to be a different .so target for each
7 post-jarjared package, so for each module.
27 library (`.so`) file, and different versions of the library loaded in the same process by
/frameworks/av/media/libaudioprocessing/tests/
Dbuild_and_run_all_unit_tests.sh17 adb push $OUT/system/lib/libaudioprocessing.so /system/lib
18 adb push $OUT/system/lib64/libaudioprocessing.so /system/lib64
Dmixer_to_wav_tests.sh49 adb push $OUT/system/lib/libaudioprocessing.so /system/lib
50 adb push $OUT/system/lib64/libaudioprocessing.so /system/lib64
/frameworks/libs/native_bridge_support/libc/
DAndroid.bp17 // We introduce this namespace so that native bridge guest libraries are built
84 // For backwards-compatibility, some arm32 builtins are exported from libc.so.
89 // so keep the .debug_frame which is relatively small and does
101 // Leave the symbols in the shared library so that stack unwinders can produce
/frameworks/base/native/
Dcopy-to-ndk.sh12 local SRC_LIB_ANDROID=$ANDROID_PRODUCT_OUT/system/lib/libandroid.so
13 local DST_LIB_ANDROID=$NDK_PLATFORMS/$CURR_PLATFORM/arch-arm/lib/libandroid.so
/frameworks/base/tools/dump-coverage/
DREADME.md3 libdumpcoverage.so is a JVMTI agent designed to dump coverage information for a process, where the …
19 adb shell 'am attach-agent com.android.deskclock /system/lib/libdumpcoverage.so=dump:/data/data/com…
25 adb shell 'am attach-agent com.android.deskclock /system/lib/libdumpcoverage.so=reset'
/frameworks/base/
DCleanSpec.mk57 $(call add-clean-step, rm -f $(PRODUCT_OUT)/obj/lib/libequalizer.so)
58 $(call add-clean-step, rm -f $(PRODUCT_OUT)/obj/lib/libequalizertest.so)
59 $(call add-clean-step, rm -f $(PRODUCT_OUT)/obj/lib/libreverb.so)
60 $(call add-clean-step, rm -f $(PRODUCT_OUT)/obj/lib/libreverbtest.so)
61 $(call add-clean-step, rm -f $(PRODUCT_OUT)/symbols/system/lib/libequalizer.so)
62 $(call add-clean-step, rm -f $(PRODUCT_OUT)/symbols/system/lib/libequalizertest.so)
63 $(call add-clean-step, rm -f $(PRODUCT_OUT)/symbols/system/lib/libreverb.so)
64 $(call add-clean-step, rm -f $(PRODUCT_OUT)/symbols/system/lib/libreverbtest.so)
72 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/lib/libandroid_runtime.so)
73 $(call add-clean-step, rm -rf $(PRODUCT_OUT)/symbols/system/lib/libandroid_runtime.so)
[all …]
/frameworks/libs/native_bridge_support/libvulkan/
DAndroid.bp35 // libbinder.so — greylisted, not included.
39 // libui.so — greylisted, not included.
/frameworks/libs/native_bridge_support/libneuralnetworks/
DAndroid.bp35 // libbinder.so — greylisted, not included.
39 // libui.so — greylisted, not included.
/frameworks/libs/native_bridge_support/libcamera2ndk/
DAndroid.bp36 // libbinder.so — greylisted, not included.
38 // libgui.so — greylisted, not included.
/frameworks/libs/net/common/netd/libnetdutils/
DStatusTest.cpp89 StatusOr<int> so(11); in TEST() local
91 ss << so; in TEST()
/frameworks/native/opengl/tests/testPauseResume/
DREADME5 The program does not draw anything to the screen, it just prints to the log, so use adb logcat to w…
16 and so on.
/frameworks/av/media/libnbaio/
DREADME.txt13 no mutexes, so safe to use between SCHED_NORMAL and SCHED_FIFO threads
29 no mutexes, so safe to use between SCHED_NORMAL and SCHED_FIFO threads

12345678910>>...15