diff options
author | RGIB <gibellini.roberto@gmail.com> | 2016-05-24 23:28:42 +0200 |
---|---|---|
committer | Roberto Gibellini <gibellini.roberto@gmail.com> | 2016-05-24 14:34:52 -0700 |
commit | 9ce240a0d9c09ddee9a2871b31420f7eae47b4c6 (patch) | |
tree | 92b2a102836ea96dc32874f0e1989590c0d56f80 | |
parent | 14a533a1460733427d8f96f153182f09c7839c36 (diff) | |
download | device_samsung_n5100-9ce240a0d9c09ddee9a2871b31420f7eae47b4c6.zip device_samsung_n5100-9ce240a0d9c09ddee9a2871b31420f7eae47b4c6.tar.gz device_samsung_n5100-9ce240a0d9c09ddee9a2871b31420f7eae47b4c6.tar.bz2 |
n5100 : move common symbols pkg to kona
Change-Id: I5e4991fa9c9f57574cb6a2348cd7fe293e7baa9f
-rwxr-xr-x | samsung_symbols/Android.mk | 28 | ||||
-rwxr-xr-x | samsung_symbols/symbols.cpp | 47 |
2 files changed, 0 insertions, 75 deletions
diff --git a/samsung_symbols/Android.mk b/samsung_symbols/Android.mk deleted file mode 100755 index 4c58d80..0000000 --- a/samsung_symbols/Android.mk +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright (C) 2016 The CyanogenMod Project -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -LOCAL_PATH := $(call my-dir) - -include $(CLEAR_VARS) - -LOCAL_SRC_FILES := symbols.cpp - -LOCAL_SHARED_LIBRARIES := libbinder libgui - -LOCAL_MODULE := libsamsung_symbols -LOCAL_MODULE_TAGS := optional -LOCAL_MODULE_CLASS := SHARED_LIBRARIES - -include $(BUILD_SHARED_LIBRARY) - diff --git a/samsung_symbols/symbols.cpp b/samsung_symbols/symbols.cpp deleted file mode 100755 index 65e5c98..0000000 --- a/samsung_symbols/symbols.cpp +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (C) 2016 The CyanogenMod Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include <stdlib.h> -#include <malloc.h> - -extern "C" int _ZN7android6Parcel13writeString16EPKDsj(); -extern "C" int _ZN7android6Parcel13writeString16EPKtj(){ - return _ZN7android6Parcel13writeString16EPKDsj(); -} - -extern "C" int _ZN7android13SensorManager5sLockE; -extern "C" int _ZN7android9SingletonINS_13SensorManagerEE5sLockE = _ZN7android13SensorManager5sLockE; - -extern "C" int _ZN7android13SensorManager17sPackageInstancesE; -extern "C" int _ZN7android9SingletonINS_13SensorManagerEE9sInstanceE = _ZN7android13SensorManager17sPackageInstancesE; - -extern "C" int _ZN7android13SensorManagerD1Ev(); -extern "C" int _ZN7android13SensorManagerC1Ev(){ - return _ZN7android13SensorManagerD1Ev(); -} - -extern "C" int _ZN7android13SensorManager16createEventQueueENS_7String8Ei(); -extern "C" int _ZN7android13SensorManager16createEventQueueEv(){ - return _ZN7android13SensorManager16createEventQueueENS_7String8Ei(); -} - -extern "C" void *CRYPTO_malloc(int num, const char *file, int line); -extern "C" void *CRYPTO_malloc(int num, const char *file, int line){ - if (num <= 0) - return NULL; - else - return malloc(num); -} |