├── Android.mk ├── CleanSpec.mk ├── bluedroid ├── Android.mk ├── bluetooth.c └── include │ └── bluedroid │ └── bluetooth.h ├── bluez-clean-headers └── bluetooth │ ├── bluetooth.h │ ├── hci.h │ ├── hci_lib.h │ ├── l2cap.h │ ├── rfcomm.h │ └── sco.h ├── brcm_patchram_plus ├── Android.mk └── brcm_patchram_plus.c ├── brfpatch ├── Android.mk └── brfpatch.c ├── data ├── audio.conf ├── auto_pairing.conf ├── blacklist.conf ├── input.conf ├── main.conf ├── main.le.conf ├── main.nonsmartphone.conf ├── main.nonsmartphone.le.conf └── network.conf └── tools ├── Android.mk ├── asocket_test.c ├── bttest.c ├── pipetest.c ├── sock_shutdown_bug_l2cap.c ├── sock_shutdown_bug_rfcomm.c ├── sock_shutdown_bug_tcp.c ├── sock_shutdown_test.c └── socktest.c /Android.mk: -------------------------------------------------------------------------------- 1 | ifeq ($(BOARD_HAVE_BLUETOOTH),true) 2 | include $(all-subdir-makefiles) 3 | endif 4 | -------------------------------------------------------------------------------- /CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/CleanSpec.mk -------------------------------------------------------------------------------- /bluedroid/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/bluedroid/Android.mk -------------------------------------------------------------------------------- /bluedroid/bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/bluedroid/bluetooth.c -------------------------------------------------------------------------------- /bluedroid/include/bluedroid/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/bluedroid/include/bluedroid/bluetooth.h -------------------------------------------------------------------------------- /bluez-clean-headers/bluetooth/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/bluez-clean-headers/bluetooth/bluetooth.h -------------------------------------------------------------------------------- /bluez-clean-headers/bluetooth/hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/bluez-clean-headers/bluetooth/hci.h -------------------------------------------------------------------------------- /bluez-clean-headers/bluetooth/hci_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/bluez-clean-headers/bluetooth/hci_lib.h -------------------------------------------------------------------------------- /bluez-clean-headers/bluetooth/l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/bluez-clean-headers/bluetooth/l2cap.h -------------------------------------------------------------------------------- /bluez-clean-headers/bluetooth/rfcomm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/bluez-clean-headers/bluetooth/rfcomm.h -------------------------------------------------------------------------------- /bluez-clean-headers/bluetooth/sco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/bluez-clean-headers/bluetooth/sco.h -------------------------------------------------------------------------------- /brcm_patchram_plus/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/brcm_patchram_plus/Android.mk -------------------------------------------------------------------------------- /brcm_patchram_plus/brcm_patchram_plus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/brcm_patchram_plus/brcm_patchram_plus.c -------------------------------------------------------------------------------- /brfpatch/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/brfpatch/Android.mk -------------------------------------------------------------------------------- /brfpatch/brfpatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/brfpatch/brfpatch.c -------------------------------------------------------------------------------- /data/audio.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/data/audio.conf -------------------------------------------------------------------------------- /data/auto_pairing.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/data/auto_pairing.conf -------------------------------------------------------------------------------- /data/blacklist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/data/blacklist.conf -------------------------------------------------------------------------------- /data/input.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/data/input.conf -------------------------------------------------------------------------------- /data/main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/data/main.conf -------------------------------------------------------------------------------- /data/main.le.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/data/main.le.conf -------------------------------------------------------------------------------- /data/main.nonsmartphone.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/data/main.nonsmartphone.conf -------------------------------------------------------------------------------- /data/main.nonsmartphone.le.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/data/main.nonsmartphone.le.conf -------------------------------------------------------------------------------- /data/network.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/data/network.conf -------------------------------------------------------------------------------- /tools/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/tools/Android.mk -------------------------------------------------------------------------------- /tools/asocket_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/tools/asocket_test.c -------------------------------------------------------------------------------- /tools/bttest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/tools/bttest.c -------------------------------------------------------------------------------- /tools/pipetest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/tools/pipetest.c -------------------------------------------------------------------------------- /tools/sock_shutdown_bug_l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/tools/sock_shutdown_bug_l2cap.c -------------------------------------------------------------------------------- /tools/sock_shutdown_bug_rfcomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/tools/sock_shutdown_bug_rfcomm.c -------------------------------------------------------------------------------- /tools/sock_shutdown_bug_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/tools/sock_shutdown_bug_tcp.c -------------------------------------------------------------------------------- /tools/sock_shutdown_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/tools/sock_shutdown_test.c -------------------------------------------------------------------------------- /tools/socktest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_system_bluetooth/HEAD/tools/socktest.c --------------------------------------------------------------------------------