summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Salyzyn2016-10-11 09:34:52 -0500
committerMark Salyzyn2016-10-24 13:03:49 -0500
commit749a298dfd6791644cc2815989248984bf7ab2c2 (patch)
tree9baa789d4aec742aea1831aa243c1a1419d964de /liblog/liblog.map.txt
parent8cf0bd75f79ed641b5841dea1d34af18c6b4d40d (diff)
downloadplatform-system-core-749a298dfd6791644cc2815989248984bf7ab2c2.tar.gz
platform-system-core-749a298dfd6791644cc2815989248984bf7ab2c2.tar.xz
platform-system-core-749a298dfd6791644cc2815989248984bf7ab2c2.zip
liblog: restructure log/log.h and android/log.h
We went too far, so this is a partial revert, part deux. Keep general purpose logging macros in android/log.h for the NDK. More internal features like Radio, System and Events logging are moved back to log/log.h. Correct liblog ndk symbols. Correct for some Android Coding standards. Test: compile Bug: 31992412 Change-Id: Id3731496fa226e8c170305d0d2a1859e8cf67e14
Diffstat (limited to 'liblog/liblog.map.txt')
-rw-r--r--liblog/liblog.map.txt15
1 files changed, 10 insertions, 5 deletions
diff --git a/liblog/liblog.map.txt b/liblog/liblog.map.txt
index 5f19cc15a..599dc9092 100644
--- a/liblog/liblog.map.txt
+++ b/liblog/liblog.map.txt
@@ -1,14 +1,19 @@
1LIBLOG { 1LIBLOG {
2 global: 2 global:
3 __android_log_assert; 3 __android_log_assert;
4 __android_log_btwrite;
5 __android_log_buf_print; # introduced-arm=21 introduced-arm64=21 introduced-mips=9 introduced-mips64=21 introduced-x86=9 introduced-x86_64=21
6 __android_log_buf_write; # introduced-arm=21 introduced-arm64=21 introduced-mips=9 introduced-mips64=21 introduced-x86=9 introduced-x86_64=21
7 __android_log_bwrite;
8 __android_log_dev_available;
9 __android_log_print; 4 __android_log_print;
10 __android_log_vprint; 5 __android_log_vprint;
11 __android_log_write; 6 __android_log_write;
12 local: 7 local:
13 *; 8 *;
14}; 9};
10
11LIBLOG_M {
12 global:
13 __android_log_is_loggable;
14};
15
16LIBLOG_O {
17 global:
18 __android_log_is_loggable_len;
19};