1# 2# Copyright (C) 2015 The Android Open Source Project 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16 17LIBC { 18 global: 19 android_dlopen_ext; # introduced=21 20 dl_iterate_phdr; # introduced-arm=21 21 dladdr; 22 dlclose; 23 dlerror; 24 dlopen; 25 dlsym; 26 local: 27 *; 28}; 29 30LIBC_N { 31 global: 32 android_get_application_target_sdk_version; # introduced=24 versioned=29 33 dlvsym; # introduced=24 34} LIBC; 35 36LIBC_OMR1 { # introduced=27 37 global: 38 __cfi_shadow_size; 39 __cfi_slowpath; 40 __cfi_slowpath_diag; 41} LIBC_N; 42 43LIBC_PLATFORM { 44 global: 45 android_get_LD_LIBRARY_PATH; 46 __cfi_init; 47 android_handle_signal; 48} LIBC_OMR1; 49