├── CleanSpec.mk ├── android ├── Android.mk ├── NOTICE ├── OldPhoneNumberUtils.cpp ├── PhoneNumberUtils.cpp ├── PhoneNumberUtils.h ├── PhoneNumberUtilsTest.cpp ├── sqlite3_android.cpp └── sqlite3_android.h └── dist ├── Android.mk ├── Android.patch ├── MODULE_LICENSE_PUBLIC_DOMAIN ├── NOTICE ├── README-Android ├── orig ├── shell.c ├── sqlite3.c ├── sqlite3.h └── sqlite3ext.h ├── shell.c ├── sqlite3.c ├── sqlite3.h ├── sqlite3ext.h └── version /CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/CleanSpec.mk -------------------------------------------------------------------------------- /android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/android/Android.mk -------------------------------------------------------------------------------- /android/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/android/NOTICE -------------------------------------------------------------------------------- /android/OldPhoneNumberUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/android/OldPhoneNumberUtils.cpp -------------------------------------------------------------------------------- /android/PhoneNumberUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/android/PhoneNumberUtils.cpp -------------------------------------------------------------------------------- /android/PhoneNumberUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/android/PhoneNumberUtils.h -------------------------------------------------------------------------------- /android/PhoneNumberUtilsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/android/PhoneNumberUtilsTest.cpp -------------------------------------------------------------------------------- /android/sqlite3_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/android/sqlite3_android.cpp -------------------------------------------------------------------------------- /android/sqlite3_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/android/sqlite3_android.h -------------------------------------------------------------------------------- /dist/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/Android.mk -------------------------------------------------------------------------------- /dist/Android.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/Android.patch -------------------------------------------------------------------------------- /dist/MODULE_LICENSE_PUBLIC_DOMAIN: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/NOTICE -------------------------------------------------------------------------------- /dist/README-Android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/README-Android -------------------------------------------------------------------------------- /dist/orig/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/orig/shell.c -------------------------------------------------------------------------------- /dist/orig/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/orig/sqlite3.c -------------------------------------------------------------------------------- /dist/orig/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/orig/sqlite3.h -------------------------------------------------------------------------------- /dist/orig/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/orig/sqlite3ext.h -------------------------------------------------------------------------------- /dist/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/shell.c -------------------------------------------------------------------------------- /dist/sqlite3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/sqlite3.c -------------------------------------------------------------------------------- /dist/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/sqlite3.h -------------------------------------------------------------------------------- /dist/sqlite3ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/sqlite3ext.h -------------------------------------------------------------------------------- /dist/version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_sqlite/HEAD/dist/version --------------------------------------------------------------------------------