├── Android.mk ├── CleanSpec.mk ├── audio_a2dp_hw ├── Android.mk ├── audio_a2dp_hw.c └── audio_a2dp_hw.h ├── bta ├── Android.mk ├── ag │ ├── bta_ag_act.c │ ├── bta_ag_api.c │ ├── bta_ag_at.c │ ├── bta_ag_at.h │ ├── bta_ag_cfg.c │ ├── bta_ag_ci.c │ ├── bta_ag_cmd.c │ ├── bta_ag_int.h │ ├── bta_ag_main.c │ ├── bta_ag_rfc.c │ ├── bta_ag_sco.c │ └── bta_ag_sdp.c ├── ar │ ├── bta_ar.c │ └── bta_ar_int.h ├── av │ ├── bta_av_aact.c │ ├── bta_av_act.c │ ├── bta_av_api.c │ ├── bta_av_cfg.c │ ├── bta_av_ci.c │ ├── bta_av_int.h │ ├── bta_av_main.c │ ├── bta_av_sbc.c │ └── bta_av_ssm.c ├── dm │ ├── bta_dm_act.c │ ├── bta_dm_api.c │ ├── bta_dm_cfg.c │ ├── bta_dm_ci.c │ ├── bta_dm_int.h │ ├── bta_dm_main.c │ ├── bta_dm_pm.c │ └── bta_dm_sco.c ├── fs │ ├── bta_fs_cfg.c │ └── bta_fs_ci.c ├── gatt │ ├── bta_gattc_act.c │ ├── bta_gattc_api.c │ ├── bta_gattc_cache.c │ ├── bta_gattc_ci.c │ ├── bta_gattc_int.h │ ├── bta_gattc_main.c │ ├── bta_gattc_utils.c │ ├── bta_gatts_act.c │ ├── bta_gatts_api.c │ ├── bta_gatts_int.h │ ├── bta_gatts_main.c │ └── bta_gatts_utils.c ├── hd │ ├── bta_hd_act.c │ ├── bta_hd_api.c │ ├── bta_hd_int.h │ └── bta_hd_main.c ├── hf_client │ ├── bta_hf_client_act.c │ ├── bta_hf_client_api.c │ ├── bta_hf_client_at.c │ ├── bta_hf_client_at.h │ ├── bta_hf_client_cmd.c │ ├── bta_hf_client_int.h │ ├── bta_hf_client_main.c │ ├── bta_hf_client_rfc.c │ ├── bta_hf_client_sco.c │ └── bta_hf_client_sdp.c ├── hh │ ├── bta_hh_act.c │ ├── bta_hh_api.c │ ├── bta_hh_cfg.c │ ├── bta_hh_int.h │ ├── bta_hh_le.c │ ├── bta_hh_main.c │ └── bta_hh_utils.c ├── hl │ ├── bta_hl_act.c │ ├── bta_hl_api.c │ ├── bta_hl_ci.c │ ├── bta_hl_int.h │ ├── bta_hl_main.c │ ├── bta_hl_sdp.c │ └── bta_hl_utils.c ├── include │ ├── bd.h │ ├── bta_ag_api.h │ ├── bta_ag_ci.h │ ├── bta_ag_co.h │ ├── bta_api.h │ ├── bta_ar_api.h │ ├── bta_av_api.h │ ├── bta_av_ci.h │ ├── bta_av_co.h │ ├── bta_av_sbc.h │ ├── bta_dm_ci.h │ ├── bta_dm_co.h │ ├── bta_fs_api.h │ ├── bta_fs_ci.h │ ├── bta_fs_co.h │ ├── bta_gatt_api.h │ ├── bta_gattc_ci.h │ ├── bta_gattc_co.h │ ├── bta_gatts_co.h │ ├── bta_hd_api.h │ ├── bta_hf_client_api.h │ ├── bta_hh_api.h │ ├── bta_hh_co.h │ ├── bta_hl_api.h │ ├── bta_hl_ci.h │ ├── bta_hl_co.h │ ├── bta_jv_api.h │ ├── bta_jv_co.h │ ├── bta_mce_api.h │ ├── bta_op_api.h │ ├── bta_pan_api.h │ ├── bta_pan_ci.h │ ├── bta_pan_co.h │ ├── bta_pbs_api.h │ ├── bta_sys_ci.h │ ├── bta_sys_co.h │ ├── ptim.h │ └── utl.h ├── jv │ ├── bta_jv_act.c │ ├── bta_jv_api.c │ ├── bta_jv_cfg.c │ ├── bta_jv_int.h │ └── bta_jv_main.c ├── mce │ ├── bta_mce_act.c │ ├── bta_mce_api.c │ ├── bta_mce_cfg.c │ ├── bta_mce_int.h │ └── bta_mce_main.c ├── pan │ ├── bta_pan_act.c │ ├── bta_pan_api.c │ ├── bta_pan_ci.c │ ├── bta_pan_int.h │ └── bta_pan_main.c ├── pb │ ├── bta_pbs_cfg.c │ └── bta_pbs_int.h └── sys │ ├── bd.c │ ├── bta_sys.h │ ├── bta_sys_cfg.c │ ├── bta_sys_ci.c │ ├── bta_sys_conn.c │ ├── bta_sys_int.h │ ├── bta_sys_main.c │ ├── ptim.c │ └── utl.c ├── btif ├── co │ ├── bta_ag_co.c │ ├── bta_av_co.c │ ├── bta_dm_co.c │ ├── bta_fs_co.c │ ├── bta_gattc_co.c │ ├── bta_gatts_co.c │ ├── bta_hh_co.c │ ├── bta_hl_co.c │ ├── bta_pan_co.c │ └── bta_sys_co.c ├── include │ ├── bluetoothTrack.h │ ├── btif_api.h │ ├── btif_av.h │ ├── btif_av_api.h │ ├── btif_av_co.h │ ├── btif_common.h │ ├── btif_config.h │ ├── btif_config_util.h │ ├── btif_dm.h │ ├── btif_gatt.h │ ├── btif_gatt_multi_adv_util.h │ ├── btif_gatt_util.h │ ├── btif_hd.h │ ├── btif_hh.h │ ├── btif_hl.h │ ├── btif_mce.h │ ├── btif_media.h │ ├── btif_pan.h │ ├── btif_pan_internal.h │ ├── btif_profile_queue.h │ ├── btif_sm.h │ ├── btif_sock.h │ ├── btif_sock_l2cap.h │ ├── btif_sock_rfc.h │ ├── btif_sock_sdp.h │ ├── btif_sock_thread.h │ ├── btif_sock_util.h │ ├── btif_storage.h │ ├── btif_util.h │ └── uinput.h └── src │ ├── bluetooth.c │ ├── bluetoothTrack.cpp │ ├── btif_av.c │ ├── btif_config.c │ ├── btif_config_util.cpp │ ├── btif_core.c │ ├── btif_dm.c │ ├── btif_gap.c │ ├── btif_gatt.c │ ├── btif_gatt_client.c │ ├── btif_gatt_multi_adv_util.c │ ├── btif_gatt_qual.c │ ├── btif_gatt_server.c │ ├── btif_gatt_test.c │ ├── btif_gatt_util.c │ ├── btif_hd.c │ ├── btif_hf.c │ ├── btif_hf_client.c │ ├── btif_hh.c │ ├── btif_hl.c │ ├── btif_l2cap.c │ ├── btif_mce.c │ ├── btif_media_task.c │ ├── btif_pan.c │ ├── btif_profile_queue.c │ ├── btif_rc.c │ ├── btif_rfcomm.c │ ├── btif_sdp.c │ ├── btif_sm.c │ ├── btif_smp.c │ ├── btif_sock.c │ ├── btif_sock_l2cap.c │ ├── btif_sock_rfc.c │ ├── btif_sock_sdp.c │ ├── btif_sock_thread.c │ ├── btif_sock_util.c │ ├── btif_storage.c │ └── btif_util.c ├── conf ├── Android.mk ├── auto_pair_devlist.conf ├── bt_did.conf └── bt_stack.conf ├── doc ├── btsnoop_net.md └── properties.md ├── embdrv ├── Android.mk └── sbc │ ├── Android.mk │ ├── decoder │ ├── Android.mk │ ├── include │ │ ├── oi_assert.h │ │ ├── oi_bitstream.h │ │ ├── oi_bt_spec.h │ │ ├── oi_codec_sbc.h │ │ ├── oi_codec_sbc_private.h │ │ ├── oi_common.h │ │ ├── oi_cpu_dep.h │ │ ├── oi_modules.h │ │ ├── oi_osinterface.h │ │ ├── oi_status.h │ │ ├── oi_stddefs.h │ │ ├── oi_string.h │ │ ├── oi_time.h │ │ └── oi_utils.h │ └── srce │ │ ├── alloc.c │ │ ├── bitalloc-sbc.c │ │ ├── bitalloc.c │ │ ├── bitstream-decode.c │ │ ├── decoder-oina.c │ │ ├── decoder-private.c │ │ ├── decoder-sbc.c │ │ ├── dequant.c │ │ ├── framing-sbc.c │ │ ├── framing.c │ │ ├── oi_codec_version.c │ │ ├── readsamplesjoint.inc │ │ ├── synthesis-8-generated.c │ │ ├── synthesis-dct8.c │ │ └── synthesis-sbc.c │ └── encoder │ ├── include │ ├── sbc_dct.h │ ├── sbc_enc_func_declare.h │ ├── sbc_encoder.h │ ├── sbc_if.h │ └── sbc_types.h │ └── srce │ ├── sbc_analysis.c │ ├── sbc_dct.c │ ├── sbc_dct_coeffs.c │ ├── sbc_enc_bit_alloc_mono.c │ ├── sbc_enc_bit_alloc_ste.c │ ├── sbc_enc_coeffs.c │ ├── sbc_encoder.c │ └── sbc_packing.c ├── gki ├── Android.mk ├── common │ ├── gki.h │ ├── gki_buffer.c │ ├── gki_common.h │ ├── gki_debug.c │ └── gki_time.c └── ulinux │ ├── data_types.h │ ├── gki_int.h │ └── gki_ulinux.c ├── hci ├── Android.mk ├── include │ ├── bt_hci_bdroid.h │ ├── bt_hci_lib.h │ ├── bt_vendor_lib.h │ ├── btsnoop.h │ ├── hci.h │ ├── userial.h │ ├── utils.h │ └── vendor.h └── src │ ├── bt_hci_bdroid.c │ ├── btsnoop.c │ ├── btsnoop_net.c │ ├── hci_h4.c │ ├── hci_mct.c │ ├── lpm.c │ ├── userial.c │ ├── userial_mct.c │ ├── utils.c │ └── vendor.c ├── include ├── bt_target.h ├── bt_testapp.h ├── bt_trace.h ├── bte.h ├── bte_appl.h └── gki_target.h ├── main ├── Android.mk ├── bte_conf.c ├── bte_init.c ├── bte_logmsg.c └── bte_main.c ├── osi ├── Android.mk ├── include │ ├── alarm.h │ ├── config.h │ ├── fixed_queue.h │ ├── list.h │ ├── osi.h │ ├── reactor.h │ ├── semaphore.h │ └── thread.h ├── src │ ├── alarm.c │ ├── config.c │ ├── fixed_queue.c │ ├── list.c │ ├── reactor.c │ ├── semaphore.c │ └── thread.c └── test │ ├── alarm_test.cpp │ ├── config_test.cpp │ ├── list_test.cpp │ ├── reactor_test.cpp │ └── thread_test.cpp ├── stack ├── Android.mk ├── a2dp │ ├── a2d_api.c │ ├── a2d_int.h │ └── a2d_sbc.c ├── avct │ ├── avct_api.c │ ├── avct_ccb.c │ ├── avct_defs.h │ ├── avct_int.h │ ├── avct_l2c.c │ ├── avct_lcb.c │ └── avct_lcb_act.c ├── avdt │ ├── avdt_ad.c │ ├── avdt_api.c │ ├── avdt_ccb.c │ ├── avdt_ccb_act.c │ ├── avdt_defs.h │ ├── avdt_int.h │ ├── avdt_l2c.c │ ├── avdt_msg.c │ ├── avdt_scb.c │ └── avdt_scb_act.c ├── avrc │ ├── avrc_api.c │ ├── avrc_bld_ct.c │ ├── avrc_bld_tg.c │ ├── avrc_int.h │ ├── avrc_opt.c │ ├── avrc_pars_ct.c │ ├── avrc_pars_tg.c │ ├── avrc_sdp.c │ └── avrc_utils.c ├── bnep │ ├── bnep_api.c │ ├── bnep_int.h │ ├── bnep_main.c │ └── bnep_utils.c ├── btm │ ├── btm_acl.c │ ├── btm_ble.c │ ├── btm_ble_addr.c │ ├── btm_ble_adv_filter.c │ ├── btm_ble_batchscan.c │ ├── btm_ble_bgconn.c │ ├── btm_ble_cont_energy.c │ ├── btm_ble_gap.c │ ├── btm_ble_int.h │ ├── btm_ble_multi_adv.c │ ├── btm_dev.c │ ├── btm_devctl.c │ ├── btm_inq.c │ ├── btm_int.h │ ├── btm_main.c │ ├── btm_pm.c │ ├── btm_sco.c │ └── btm_sec.c ├── btu │ ├── btu_hcif.c │ ├── btu_init.c │ └── btu_task.c ├── gap │ ├── gap_api.c │ ├── gap_ble.c │ ├── gap_conn.c │ ├── gap_int.h │ └── gap_utils.c ├── gatt │ ├── att_protocol.c │ ├── gatt_api.c │ ├── gatt_attr.c │ ├── gatt_auth.c │ ├── gatt_cl.c │ ├── gatt_db.c │ ├── gatt_int.h │ ├── gatt_main.c │ ├── gatt_sr.c │ └── gatt_utils.c ├── hcic │ ├── hciblecmds.c │ └── hcicmds.c ├── hid │ ├── hid_conn.h │ ├── hidd_api.c │ ├── hidd_conn.c │ ├── hidd_int.h │ ├── hidh_api.c │ ├── hidh_conn.c │ └── hidh_int.h ├── include │ ├── a2d_api.h │ ├── a2d_sbc.h │ ├── avct_api.h │ ├── avdt_api.h │ ├── avdtc_api.h │ ├── avrc_api.h │ ├── avrc_defs.h │ ├── bnep_api.h │ ├── bt_types.h │ ├── btm_api.h │ ├── btm_ble_api.h │ ├── btu.h │ ├── dyn_mem.h │ ├── gap_api.h │ ├── gatt_api.h │ ├── gattdefs.h │ ├── goep_fs.h │ ├── hcidefs.h │ ├── hcimsgs.h │ ├── hidd_api.h │ ├── hiddefs.h │ ├── hidh_api.h │ ├── l2c_api.h │ ├── l2c_sock_api.h │ ├── l2cdefs.h │ ├── mca_api.h │ ├── mca_defs.h │ ├── obx_api.h │ ├── pan_api.h │ ├── port_api.h │ ├── port_ext.h │ ├── profiles_api.h │ ├── rfcdefs.h │ ├── sdp_api.h │ ├── sdpdefs.h │ ├── smp_api.h │ ├── srvc_api.h │ ├── uipc_msg.h │ ├── utfc.h │ ├── wbt_api.h │ └── wcassert.h ├── l2cap │ ├── l2c_api.c │ ├── l2c_ble.c │ ├── l2c_csm.c │ ├── l2c_fcr.c │ ├── l2c_int.h │ ├── l2c_link.c │ ├── l2c_main.c │ ├── l2c_sock_api.c │ ├── l2c_sock_fsm.c │ ├── l2c_sock_int.h │ ├── l2c_sock_l2cap_if.c │ ├── l2c_ucd.c │ └── l2c_utils.c ├── mcap │ ├── mca_api.c │ ├── mca_cact.c │ ├── mca_csm.c │ ├── mca_dact.c │ ├── mca_dsm.c │ ├── mca_int.h │ ├── mca_l2c.c │ └── mca_main.c ├── pan │ ├── pan_api.c │ ├── pan_int.h │ ├── pan_main.c │ └── pan_utils.c ├── rfcomm │ ├── port_api.c │ ├── port_int.h │ ├── port_rfc.c │ ├── port_utils.c │ ├── rfc_int.h │ ├── rfc_l2cap_if.c │ ├── rfc_mx_fsm.c │ ├── rfc_port_fsm.c │ ├── rfc_port_if.c │ ├── rfc_ts_frames.c │ └── rfc_utils.c ├── sdp │ ├── sdp_api.c │ ├── sdp_db.c │ ├── sdp_discovery.c │ ├── sdp_main.c │ ├── sdp_server.c │ ├── sdp_utils.c │ └── sdpint.h ├── smp │ ├── aes.c │ ├── aes.h │ ├── smp_act.c │ ├── smp_api.c │ ├── smp_cmac.c │ ├── smp_int.h │ ├── smp_keys.c │ ├── smp_l2c.c │ ├── smp_main.c │ └── smp_utils.c └── srvc │ ├── srvc_battery.c │ ├── srvc_battery_int.h │ ├── srvc_dis.c │ ├── srvc_dis_int.h │ ├── srvc_eng.c │ └── srvc_eng_int.h ├── test ├── Android.mk ├── blegatt_test │ ├── Android.mk │ ├── README.txt │ └── gatt_test.c ├── bluedroidtest │ ├── Android.mk │ ├── README.txt │ └── bluedroidtest.c ├── l2test_ertm │ ├── Android.mk │ ├── README.txt │ └── l2test_ertm.c ├── rfcommtest │ ├── Android.mk │ ├── README.txt │ └── rfcommtest.c ├── sdptest │ ├── Android.mk │ ├── README.txt │ └── sdptool.c └── suite │ ├── Android.mk │ ├── base.h │ ├── cases │ ├── adapter.c │ ├── cases.c │ ├── cases.h │ └── pan.c │ ├── main.c │ └── support │ ├── adapter.c │ ├── adapter.h │ ├── callbacks.c │ ├── callbacks.h │ ├── hal.c │ ├── hal.h │ ├── pan.c │ ├── pan.h │ ├── property.c │ └── property.h ├── tools └── gen-buildcfg.sh ├── udrv ├── include │ └── uipc.h └── ulinux │ ├── uipc.c │ └── uipc_linux.h ├── utils ├── Android.mk ├── include │ └── bt_utils.h └── src │ └── bt_utils.c ├── vnd ├── ble │ ├── vendor_ble.c │ └── vendor_hcidefs.h └── include │ ├── vendor_api.h │ └── vendor_ble.h └── wipowerif ├── include └── wipower_const.h └── src └── wipower.c /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/Android.mk -------------------------------------------------------------------------------- /CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/CleanSpec.mk -------------------------------------------------------------------------------- /audio_a2dp_hw/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/audio_a2dp_hw/Android.mk -------------------------------------------------------------------------------- /audio_a2dp_hw/audio_a2dp_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/audio_a2dp_hw/audio_a2dp_hw.c -------------------------------------------------------------------------------- /audio_a2dp_hw/audio_a2dp_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/audio_a2dp_hw/audio_a2dp_hw.h -------------------------------------------------------------------------------- /bta/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/Android.mk -------------------------------------------------------------------------------- /bta/ag/bta_ag_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_act.c -------------------------------------------------------------------------------- /bta/ag/bta_ag_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_api.c -------------------------------------------------------------------------------- /bta/ag/bta_ag_at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_at.c -------------------------------------------------------------------------------- /bta/ag/bta_ag_at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_at.h -------------------------------------------------------------------------------- /bta/ag/bta_ag_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_cfg.c -------------------------------------------------------------------------------- /bta/ag/bta_ag_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_ci.c -------------------------------------------------------------------------------- /bta/ag/bta_ag_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_cmd.c -------------------------------------------------------------------------------- /bta/ag/bta_ag_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_int.h -------------------------------------------------------------------------------- /bta/ag/bta_ag_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_main.c -------------------------------------------------------------------------------- /bta/ag/bta_ag_rfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_rfc.c -------------------------------------------------------------------------------- /bta/ag/bta_ag_sco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_sco.c -------------------------------------------------------------------------------- /bta/ag/bta_ag_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ag/bta_ag_sdp.c -------------------------------------------------------------------------------- /bta/ar/bta_ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ar/bta_ar.c -------------------------------------------------------------------------------- /bta/ar/bta_ar_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/ar/bta_ar_int.h -------------------------------------------------------------------------------- /bta/av/bta_av_aact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/av/bta_av_aact.c -------------------------------------------------------------------------------- /bta/av/bta_av_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/av/bta_av_act.c -------------------------------------------------------------------------------- /bta/av/bta_av_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/av/bta_av_api.c -------------------------------------------------------------------------------- /bta/av/bta_av_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/av/bta_av_cfg.c -------------------------------------------------------------------------------- /bta/av/bta_av_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/av/bta_av_ci.c -------------------------------------------------------------------------------- /bta/av/bta_av_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/av/bta_av_int.h -------------------------------------------------------------------------------- /bta/av/bta_av_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/av/bta_av_main.c -------------------------------------------------------------------------------- /bta/av/bta_av_sbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/av/bta_av_sbc.c -------------------------------------------------------------------------------- /bta/av/bta_av_ssm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/av/bta_av_ssm.c -------------------------------------------------------------------------------- /bta/dm/bta_dm_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/dm/bta_dm_act.c -------------------------------------------------------------------------------- /bta/dm/bta_dm_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/dm/bta_dm_api.c -------------------------------------------------------------------------------- /bta/dm/bta_dm_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/dm/bta_dm_cfg.c -------------------------------------------------------------------------------- /bta/dm/bta_dm_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/dm/bta_dm_ci.c -------------------------------------------------------------------------------- /bta/dm/bta_dm_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/dm/bta_dm_int.h -------------------------------------------------------------------------------- /bta/dm/bta_dm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/dm/bta_dm_main.c -------------------------------------------------------------------------------- /bta/dm/bta_dm_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/dm/bta_dm_pm.c -------------------------------------------------------------------------------- /bta/dm/bta_dm_sco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/dm/bta_dm_sco.c -------------------------------------------------------------------------------- /bta/fs/bta_fs_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/fs/bta_fs_cfg.c -------------------------------------------------------------------------------- /bta/fs/bta_fs_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/fs/bta_fs_ci.c -------------------------------------------------------------------------------- /bta/gatt/bta_gattc_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gattc_act.c -------------------------------------------------------------------------------- /bta/gatt/bta_gattc_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gattc_api.c -------------------------------------------------------------------------------- /bta/gatt/bta_gattc_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gattc_cache.c -------------------------------------------------------------------------------- /bta/gatt/bta_gattc_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gattc_ci.c -------------------------------------------------------------------------------- /bta/gatt/bta_gattc_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gattc_int.h -------------------------------------------------------------------------------- /bta/gatt/bta_gattc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gattc_main.c -------------------------------------------------------------------------------- /bta/gatt/bta_gattc_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gattc_utils.c -------------------------------------------------------------------------------- /bta/gatt/bta_gatts_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gatts_act.c -------------------------------------------------------------------------------- /bta/gatt/bta_gatts_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gatts_api.c -------------------------------------------------------------------------------- /bta/gatt/bta_gatts_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gatts_int.h -------------------------------------------------------------------------------- /bta/gatt/bta_gatts_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gatts_main.c -------------------------------------------------------------------------------- /bta/gatt/bta_gatts_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/gatt/bta_gatts_utils.c -------------------------------------------------------------------------------- /bta/hd/bta_hd_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hd/bta_hd_act.c -------------------------------------------------------------------------------- /bta/hd/bta_hd_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hd/bta_hd_api.c -------------------------------------------------------------------------------- /bta/hd/bta_hd_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hd/bta_hd_int.h -------------------------------------------------------------------------------- /bta/hd/bta_hd_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hd/bta_hd_main.c -------------------------------------------------------------------------------- /bta/hf_client/bta_hf_client_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hf_client/bta_hf_client_act.c -------------------------------------------------------------------------------- /bta/hf_client/bta_hf_client_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hf_client/bta_hf_client_api.c -------------------------------------------------------------------------------- /bta/hf_client/bta_hf_client_at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hf_client/bta_hf_client_at.c -------------------------------------------------------------------------------- /bta/hf_client/bta_hf_client_at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hf_client/bta_hf_client_at.h -------------------------------------------------------------------------------- /bta/hf_client/bta_hf_client_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hf_client/bta_hf_client_cmd.c -------------------------------------------------------------------------------- /bta/hf_client/bta_hf_client_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hf_client/bta_hf_client_int.h -------------------------------------------------------------------------------- /bta/hf_client/bta_hf_client_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hf_client/bta_hf_client_main.c -------------------------------------------------------------------------------- /bta/hf_client/bta_hf_client_rfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hf_client/bta_hf_client_rfc.c -------------------------------------------------------------------------------- /bta/hf_client/bta_hf_client_sco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hf_client/bta_hf_client_sco.c -------------------------------------------------------------------------------- /bta/hf_client/bta_hf_client_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hf_client/bta_hf_client_sdp.c -------------------------------------------------------------------------------- /bta/hh/bta_hh_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hh/bta_hh_act.c -------------------------------------------------------------------------------- /bta/hh/bta_hh_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hh/bta_hh_api.c -------------------------------------------------------------------------------- /bta/hh/bta_hh_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hh/bta_hh_cfg.c -------------------------------------------------------------------------------- /bta/hh/bta_hh_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hh/bta_hh_int.h -------------------------------------------------------------------------------- /bta/hh/bta_hh_le.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hh/bta_hh_le.c -------------------------------------------------------------------------------- /bta/hh/bta_hh_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hh/bta_hh_main.c -------------------------------------------------------------------------------- /bta/hh/bta_hh_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hh/bta_hh_utils.c -------------------------------------------------------------------------------- /bta/hl/bta_hl_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hl/bta_hl_act.c -------------------------------------------------------------------------------- /bta/hl/bta_hl_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hl/bta_hl_api.c -------------------------------------------------------------------------------- /bta/hl/bta_hl_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hl/bta_hl_ci.c -------------------------------------------------------------------------------- /bta/hl/bta_hl_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hl/bta_hl_int.h -------------------------------------------------------------------------------- /bta/hl/bta_hl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hl/bta_hl_main.c -------------------------------------------------------------------------------- /bta/hl/bta_hl_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hl/bta_hl_sdp.c -------------------------------------------------------------------------------- /bta/hl/bta_hl_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/hl/bta_hl_utils.c -------------------------------------------------------------------------------- /bta/include/bd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bd.h -------------------------------------------------------------------------------- /bta/include/bta_ag_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_ag_api.h -------------------------------------------------------------------------------- /bta/include/bta_ag_ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_ag_ci.h -------------------------------------------------------------------------------- /bta/include/bta_ag_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_ag_co.h -------------------------------------------------------------------------------- /bta/include/bta_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_api.h -------------------------------------------------------------------------------- /bta/include/bta_ar_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_ar_api.h -------------------------------------------------------------------------------- /bta/include/bta_av_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_av_api.h -------------------------------------------------------------------------------- /bta/include/bta_av_ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_av_ci.h -------------------------------------------------------------------------------- /bta/include/bta_av_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_av_co.h -------------------------------------------------------------------------------- /bta/include/bta_av_sbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_av_sbc.h -------------------------------------------------------------------------------- /bta/include/bta_dm_ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_dm_ci.h -------------------------------------------------------------------------------- /bta/include/bta_dm_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_dm_co.h -------------------------------------------------------------------------------- /bta/include/bta_fs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_fs_api.h -------------------------------------------------------------------------------- /bta/include/bta_fs_ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_fs_ci.h -------------------------------------------------------------------------------- /bta/include/bta_fs_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_fs_co.h -------------------------------------------------------------------------------- /bta/include/bta_gatt_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_gatt_api.h -------------------------------------------------------------------------------- /bta/include/bta_gattc_ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_gattc_ci.h -------------------------------------------------------------------------------- /bta/include/bta_gattc_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_gattc_co.h -------------------------------------------------------------------------------- /bta/include/bta_gatts_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_gatts_co.h -------------------------------------------------------------------------------- /bta/include/bta_hd_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_hd_api.h -------------------------------------------------------------------------------- /bta/include/bta_hf_client_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_hf_client_api.h -------------------------------------------------------------------------------- /bta/include/bta_hh_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_hh_api.h -------------------------------------------------------------------------------- /bta/include/bta_hh_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_hh_co.h -------------------------------------------------------------------------------- /bta/include/bta_hl_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_hl_api.h -------------------------------------------------------------------------------- /bta/include/bta_hl_ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_hl_ci.h -------------------------------------------------------------------------------- /bta/include/bta_hl_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_hl_co.h -------------------------------------------------------------------------------- /bta/include/bta_jv_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_jv_api.h -------------------------------------------------------------------------------- /bta/include/bta_jv_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_jv_co.h -------------------------------------------------------------------------------- /bta/include/bta_mce_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_mce_api.h -------------------------------------------------------------------------------- /bta/include/bta_op_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_op_api.h -------------------------------------------------------------------------------- /bta/include/bta_pan_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_pan_api.h -------------------------------------------------------------------------------- /bta/include/bta_pan_ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_pan_ci.h -------------------------------------------------------------------------------- /bta/include/bta_pan_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_pan_co.h -------------------------------------------------------------------------------- /bta/include/bta_pbs_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_pbs_api.h -------------------------------------------------------------------------------- /bta/include/bta_sys_ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_sys_ci.h -------------------------------------------------------------------------------- /bta/include/bta_sys_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/bta_sys_co.h -------------------------------------------------------------------------------- /bta/include/ptim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/ptim.h -------------------------------------------------------------------------------- /bta/include/utl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/include/utl.h -------------------------------------------------------------------------------- /bta/jv/bta_jv_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/jv/bta_jv_act.c -------------------------------------------------------------------------------- /bta/jv/bta_jv_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/jv/bta_jv_api.c -------------------------------------------------------------------------------- /bta/jv/bta_jv_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/jv/bta_jv_cfg.c -------------------------------------------------------------------------------- /bta/jv/bta_jv_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/jv/bta_jv_int.h -------------------------------------------------------------------------------- /bta/jv/bta_jv_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/jv/bta_jv_main.c -------------------------------------------------------------------------------- /bta/mce/bta_mce_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/mce/bta_mce_act.c -------------------------------------------------------------------------------- /bta/mce/bta_mce_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/mce/bta_mce_api.c -------------------------------------------------------------------------------- /bta/mce/bta_mce_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/mce/bta_mce_cfg.c -------------------------------------------------------------------------------- /bta/mce/bta_mce_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/mce/bta_mce_int.h -------------------------------------------------------------------------------- /bta/mce/bta_mce_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/mce/bta_mce_main.c -------------------------------------------------------------------------------- /bta/pan/bta_pan_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/pan/bta_pan_act.c -------------------------------------------------------------------------------- /bta/pan/bta_pan_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/pan/bta_pan_api.c -------------------------------------------------------------------------------- /bta/pan/bta_pan_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/pan/bta_pan_ci.c -------------------------------------------------------------------------------- /bta/pan/bta_pan_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/pan/bta_pan_int.h -------------------------------------------------------------------------------- /bta/pan/bta_pan_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/pan/bta_pan_main.c -------------------------------------------------------------------------------- /bta/pb/bta_pbs_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/pb/bta_pbs_cfg.c -------------------------------------------------------------------------------- /bta/pb/bta_pbs_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/pb/bta_pbs_int.h -------------------------------------------------------------------------------- /bta/sys/bd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/sys/bd.c -------------------------------------------------------------------------------- /bta/sys/bta_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/sys/bta_sys.h -------------------------------------------------------------------------------- /bta/sys/bta_sys_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/sys/bta_sys_cfg.c -------------------------------------------------------------------------------- /bta/sys/bta_sys_ci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/sys/bta_sys_ci.c -------------------------------------------------------------------------------- /bta/sys/bta_sys_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/sys/bta_sys_conn.c -------------------------------------------------------------------------------- /bta/sys/bta_sys_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/sys/bta_sys_int.h -------------------------------------------------------------------------------- /bta/sys/bta_sys_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/sys/bta_sys_main.c -------------------------------------------------------------------------------- /bta/sys/ptim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/sys/ptim.c -------------------------------------------------------------------------------- /bta/sys/utl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/bta/sys/utl.c -------------------------------------------------------------------------------- /btif/co/bta_ag_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/co/bta_ag_co.c -------------------------------------------------------------------------------- /btif/co/bta_av_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/co/bta_av_co.c -------------------------------------------------------------------------------- /btif/co/bta_dm_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/co/bta_dm_co.c -------------------------------------------------------------------------------- /btif/co/bta_fs_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/co/bta_fs_co.c -------------------------------------------------------------------------------- /btif/co/bta_gattc_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/co/bta_gattc_co.c -------------------------------------------------------------------------------- /btif/co/bta_gatts_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/co/bta_gatts_co.c -------------------------------------------------------------------------------- /btif/co/bta_hh_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/co/bta_hh_co.c -------------------------------------------------------------------------------- /btif/co/bta_hl_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/co/bta_hl_co.c -------------------------------------------------------------------------------- /btif/co/bta_pan_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/co/bta_pan_co.c -------------------------------------------------------------------------------- /btif/co/bta_sys_co.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/co/bta_sys_co.c -------------------------------------------------------------------------------- /btif/include/bluetoothTrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/bluetoothTrack.h -------------------------------------------------------------------------------- /btif/include/btif_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_api.h -------------------------------------------------------------------------------- /btif/include/btif_av.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_av.h -------------------------------------------------------------------------------- /btif/include/btif_av_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_av_api.h -------------------------------------------------------------------------------- /btif/include/btif_av_co.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_av_co.h -------------------------------------------------------------------------------- /btif/include/btif_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_common.h -------------------------------------------------------------------------------- /btif/include/btif_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_config.h -------------------------------------------------------------------------------- /btif/include/btif_config_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_config_util.h -------------------------------------------------------------------------------- /btif/include/btif_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_dm.h -------------------------------------------------------------------------------- /btif/include/btif_gatt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_gatt.h -------------------------------------------------------------------------------- /btif/include/btif_gatt_multi_adv_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_gatt_multi_adv_util.h -------------------------------------------------------------------------------- /btif/include/btif_gatt_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_gatt_util.h -------------------------------------------------------------------------------- /btif/include/btif_hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_hd.h -------------------------------------------------------------------------------- /btif/include/btif_hh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_hh.h -------------------------------------------------------------------------------- /btif/include/btif_hl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_hl.h -------------------------------------------------------------------------------- /btif/include/btif_mce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_mce.h -------------------------------------------------------------------------------- /btif/include/btif_media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_media.h -------------------------------------------------------------------------------- /btif/include/btif_pan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_pan.h -------------------------------------------------------------------------------- /btif/include/btif_pan_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_pan_internal.h -------------------------------------------------------------------------------- /btif/include/btif_profile_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_profile_queue.h -------------------------------------------------------------------------------- /btif/include/btif_sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_sm.h -------------------------------------------------------------------------------- /btif/include/btif_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_sock.h -------------------------------------------------------------------------------- /btif/include/btif_sock_l2cap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_sock_l2cap.h -------------------------------------------------------------------------------- /btif/include/btif_sock_rfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_sock_rfc.h -------------------------------------------------------------------------------- /btif/include/btif_sock_sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_sock_sdp.h -------------------------------------------------------------------------------- /btif/include/btif_sock_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_sock_thread.h -------------------------------------------------------------------------------- /btif/include/btif_sock_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_sock_util.h -------------------------------------------------------------------------------- /btif/include/btif_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_storage.h -------------------------------------------------------------------------------- /btif/include/btif_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/btif_util.h -------------------------------------------------------------------------------- /btif/include/uinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/include/uinput.h -------------------------------------------------------------------------------- /btif/src/bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/bluetooth.c -------------------------------------------------------------------------------- /btif/src/bluetoothTrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/bluetoothTrack.cpp -------------------------------------------------------------------------------- /btif/src/btif_av.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_av.c -------------------------------------------------------------------------------- /btif/src/btif_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_config.c -------------------------------------------------------------------------------- /btif/src/btif_config_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_config_util.cpp -------------------------------------------------------------------------------- /btif/src/btif_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_core.c -------------------------------------------------------------------------------- /btif/src/btif_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_dm.c -------------------------------------------------------------------------------- /btif/src/btif_gap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_gap.c -------------------------------------------------------------------------------- /btif/src/btif_gatt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_gatt.c -------------------------------------------------------------------------------- /btif/src/btif_gatt_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_gatt_client.c -------------------------------------------------------------------------------- /btif/src/btif_gatt_multi_adv_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_gatt_multi_adv_util.c -------------------------------------------------------------------------------- /btif/src/btif_gatt_qual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_gatt_qual.c -------------------------------------------------------------------------------- /btif/src/btif_gatt_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_gatt_server.c -------------------------------------------------------------------------------- /btif/src/btif_gatt_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_gatt_test.c -------------------------------------------------------------------------------- /btif/src/btif_gatt_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_gatt_util.c -------------------------------------------------------------------------------- /btif/src/btif_hd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_hd.c -------------------------------------------------------------------------------- /btif/src/btif_hf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_hf.c -------------------------------------------------------------------------------- /btif/src/btif_hf_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_hf_client.c -------------------------------------------------------------------------------- /btif/src/btif_hh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_hh.c -------------------------------------------------------------------------------- /btif/src/btif_hl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_hl.c -------------------------------------------------------------------------------- /btif/src/btif_l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_l2cap.c -------------------------------------------------------------------------------- /btif/src/btif_mce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_mce.c -------------------------------------------------------------------------------- /btif/src/btif_media_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_media_task.c -------------------------------------------------------------------------------- /btif/src/btif_pan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_pan.c -------------------------------------------------------------------------------- /btif/src/btif_profile_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_profile_queue.c -------------------------------------------------------------------------------- /btif/src/btif_rc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_rc.c -------------------------------------------------------------------------------- /btif/src/btif_rfcomm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_rfcomm.c -------------------------------------------------------------------------------- /btif/src/btif_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_sdp.c -------------------------------------------------------------------------------- /btif/src/btif_sm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_sm.c -------------------------------------------------------------------------------- /btif/src/btif_smp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_smp.c -------------------------------------------------------------------------------- /btif/src/btif_sock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_sock.c -------------------------------------------------------------------------------- /btif/src/btif_sock_l2cap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_sock_l2cap.c -------------------------------------------------------------------------------- /btif/src/btif_sock_rfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_sock_rfc.c -------------------------------------------------------------------------------- /btif/src/btif_sock_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_sock_sdp.c -------------------------------------------------------------------------------- /btif/src/btif_sock_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_sock_thread.c -------------------------------------------------------------------------------- /btif/src/btif_sock_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_sock_util.c -------------------------------------------------------------------------------- /btif/src/btif_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_storage.c -------------------------------------------------------------------------------- /btif/src/btif_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/btif/src/btif_util.c -------------------------------------------------------------------------------- /conf/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/conf/Android.mk -------------------------------------------------------------------------------- /conf/auto_pair_devlist.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/conf/auto_pair_devlist.conf -------------------------------------------------------------------------------- /conf/bt_did.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/conf/bt_did.conf -------------------------------------------------------------------------------- /conf/bt_stack.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/conf/bt_stack.conf -------------------------------------------------------------------------------- /doc/btsnoop_net.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/doc/btsnoop_net.md -------------------------------------------------------------------------------- /doc/properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/doc/properties.md -------------------------------------------------------------------------------- /embdrv/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/Android.mk -------------------------------------------------------------------------------- /embdrv/sbc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/Android.mk -------------------------------------------------------------------------------- /embdrv/sbc/decoder/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/Android.mk -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_assert.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_bitstream.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_bt_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_bt_spec.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_codec_sbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_codec_sbc.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_codec_sbc_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_codec_sbc_private.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_common.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_cpu_dep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_cpu_dep.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_modules.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_osinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_osinterface.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_status.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_stddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_stddefs.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_string.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_time.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/include/oi_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/include/oi_utils.h -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/alloc.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/bitalloc-sbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/bitalloc-sbc.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/bitalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/bitalloc.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/bitstream-decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/bitstream-decode.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/decoder-oina.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/decoder-oina.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/decoder-private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/decoder-private.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/decoder-sbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/decoder-sbc.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/dequant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/dequant.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/framing-sbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/framing-sbc.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/framing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/framing.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/oi_codec_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/oi_codec_version.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/readsamplesjoint.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/readsamplesjoint.inc -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/synthesis-8-generated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/synthesis-8-generated.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/synthesis-dct8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/synthesis-dct8.c -------------------------------------------------------------------------------- /embdrv/sbc/decoder/srce/synthesis-sbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/decoder/srce/synthesis-sbc.c -------------------------------------------------------------------------------- /embdrv/sbc/encoder/include/sbc_dct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/include/sbc_dct.h -------------------------------------------------------------------------------- /embdrv/sbc/encoder/include/sbc_enc_func_declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/include/sbc_enc_func_declare.h -------------------------------------------------------------------------------- /embdrv/sbc/encoder/include/sbc_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/include/sbc_encoder.h -------------------------------------------------------------------------------- /embdrv/sbc/encoder/include/sbc_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/include/sbc_if.h -------------------------------------------------------------------------------- /embdrv/sbc/encoder/include/sbc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/include/sbc_types.h -------------------------------------------------------------------------------- /embdrv/sbc/encoder/srce/sbc_analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/srce/sbc_analysis.c -------------------------------------------------------------------------------- /embdrv/sbc/encoder/srce/sbc_dct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/srce/sbc_dct.c -------------------------------------------------------------------------------- /embdrv/sbc/encoder/srce/sbc_dct_coeffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/srce/sbc_dct_coeffs.c -------------------------------------------------------------------------------- /embdrv/sbc/encoder/srce/sbc_enc_bit_alloc_mono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/srce/sbc_enc_bit_alloc_mono.c -------------------------------------------------------------------------------- /embdrv/sbc/encoder/srce/sbc_enc_bit_alloc_ste.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/srce/sbc_enc_bit_alloc_ste.c -------------------------------------------------------------------------------- /embdrv/sbc/encoder/srce/sbc_enc_coeffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/srce/sbc_enc_coeffs.c -------------------------------------------------------------------------------- /embdrv/sbc/encoder/srce/sbc_encoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/srce/sbc_encoder.c -------------------------------------------------------------------------------- /embdrv/sbc/encoder/srce/sbc_packing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/embdrv/sbc/encoder/srce/sbc_packing.c -------------------------------------------------------------------------------- /gki/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/gki/Android.mk -------------------------------------------------------------------------------- /gki/common/gki.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/gki/common/gki.h -------------------------------------------------------------------------------- /gki/common/gki_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/gki/common/gki_buffer.c -------------------------------------------------------------------------------- /gki/common/gki_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/gki/common/gki_common.h -------------------------------------------------------------------------------- /gki/common/gki_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/gki/common/gki_debug.c -------------------------------------------------------------------------------- /gki/common/gki_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/gki/common/gki_time.c -------------------------------------------------------------------------------- /gki/ulinux/data_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/gki/ulinux/data_types.h -------------------------------------------------------------------------------- /gki/ulinux/gki_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/gki/ulinux/gki_int.h -------------------------------------------------------------------------------- /gki/ulinux/gki_ulinux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/gki/ulinux/gki_ulinux.c -------------------------------------------------------------------------------- /hci/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/Android.mk -------------------------------------------------------------------------------- /hci/include/bt_hci_bdroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/include/bt_hci_bdroid.h -------------------------------------------------------------------------------- /hci/include/bt_hci_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/include/bt_hci_lib.h -------------------------------------------------------------------------------- /hci/include/bt_vendor_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/include/bt_vendor_lib.h -------------------------------------------------------------------------------- /hci/include/btsnoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/include/btsnoop.h -------------------------------------------------------------------------------- /hci/include/hci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/include/hci.h -------------------------------------------------------------------------------- /hci/include/userial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/include/userial.h -------------------------------------------------------------------------------- /hci/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/include/utils.h -------------------------------------------------------------------------------- /hci/include/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/include/vendor.h -------------------------------------------------------------------------------- /hci/src/bt_hci_bdroid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/src/bt_hci_bdroid.c -------------------------------------------------------------------------------- /hci/src/btsnoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/src/btsnoop.c -------------------------------------------------------------------------------- /hci/src/btsnoop_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/src/btsnoop_net.c -------------------------------------------------------------------------------- /hci/src/hci_h4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/src/hci_h4.c -------------------------------------------------------------------------------- /hci/src/hci_mct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/src/hci_mct.c -------------------------------------------------------------------------------- /hci/src/lpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/src/lpm.c -------------------------------------------------------------------------------- /hci/src/userial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/src/userial.c -------------------------------------------------------------------------------- /hci/src/userial_mct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/src/userial_mct.c -------------------------------------------------------------------------------- /hci/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/src/utils.c -------------------------------------------------------------------------------- /hci/src/vendor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/hci/src/vendor.c -------------------------------------------------------------------------------- /include/bt_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/include/bt_target.h -------------------------------------------------------------------------------- /include/bt_testapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/include/bt_testapp.h -------------------------------------------------------------------------------- /include/bt_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/include/bt_trace.h -------------------------------------------------------------------------------- /include/bte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/include/bte.h -------------------------------------------------------------------------------- /include/bte_appl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/include/bte_appl.h -------------------------------------------------------------------------------- /include/gki_target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/include/gki_target.h -------------------------------------------------------------------------------- /main/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/main/Android.mk -------------------------------------------------------------------------------- /main/bte_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/main/bte_conf.c -------------------------------------------------------------------------------- /main/bte_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/main/bte_init.c -------------------------------------------------------------------------------- /main/bte_logmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/main/bte_logmsg.c -------------------------------------------------------------------------------- /main/bte_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/main/bte_main.c -------------------------------------------------------------------------------- /osi/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/Android.mk -------------------------------------------------------------------------------- /osi/include/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/include/alarm.h -------------------------------------------------------------------------------- /osi/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/include/config.h -------------------------------------------------------------------------------- /osi/include/fixed_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/include/fixed_queue.h -------------------------------------------------------------------------------- /osi/include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/include/list.h -------------------------------------------------------------------------------- /osi/include/osi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/include/osi.h -------------------------------------------------------------------------------- /osi/include/reactor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/include/reactor.h -------------------------------------------------------------------------------- /osi/include/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/include/semaphore.h -------------------------------------------------------------------------------- /osi/include/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/include/thread.h -------------------------------------------------------------------------------- /osi/src/alarm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/src/alarm.c -------------------------------------------------------------------------------- /osi/src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/src/config.c -------------------------------------------------------------------------------- /osi/src/fixed_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/src/fixed_queue.c -------------------------------------------------------------------------------- /osi/src/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/src/list.c -------------------------------------------------------------------------------- /osi/src/reactor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/src/reactor.c -------------------------------------------------------------------------------- /osi/src/semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/src/semaphore.c -------------------------------------------------------------------------------- /osi/src/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/src/thread.c -------------------------------------------------------------------------------- /osi/test/alarm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/test/alarm_test.cpp -------------------------------------------------------------------------------- /osi/test/config_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/test/config_test.cpp -------------------------------------------------------------------------------- /osi/test/list_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/test/list_test.cpp -------------------------------------------------------------------------------- /osi/test/reactor_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/test/reactor_test.cpp -------------------------------------------------------------------------------- /osi/test/thread_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/osi/test/thread_test.cpp -------------------------------------------------------------------------------- /stack/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/Android.mk -------------------------------------------------------------------------------- /stack/a2dp/a2d_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/a2dp/a2d_api.c -------------------------------------------------------------------------------- /stack/a2dp/a2d_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/a2dp/a2d_int.h -------------------------------------------------------------------------------- /stack/a2dp/a2d_sbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/a2dp/a2d_sbc.c -------------------------------------------------------------------------------- /stack/avct/avct_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avct/avct_api.c -------------------------------------------------------------------------------- /stack/avct/avct_ccb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avct/avct_ccb.c -------------------------------------------------------------------------------- /stack/avct/avct_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avct/avct_defs.h -------------------------------------------------------------------------------- /stack/avct/avct_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avct/avct_int.h -------------------------------------------------------------------------------- /stack/avct/avct_l2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avct/avct_l2c.c -------------------------------------------------------------------------------- /stack/avct/avct_lcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avct/avct_lcb.c -------------------------------------------------------------------------------- /stack/avct/avct_lcb_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avct/avct_lcb_act.c -------------------------------------------------------------------------------- /stack/avdt/avdt_ad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avdt/avdt_ad.c -------------------------------------------------------------------------------- /stack/avdt/avdt_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avdt/avdt_api.c -------------------------------------------------------------------------------- /stack/avdt/avdt_ccb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avdt/avdt_ccb.c -------------------------------------------------------------------------------- /stack/avdt/avdt_ccb_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avdt/avdt_ccb_act.c -------------------------------------------------------------------------------- /stack/avdt/avdt_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avdt/avdt_defs.h -------------------------------------------------------------------------------- /stack/avdt/avdt_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avdt/avdt_int.h -------------------------------------------------------------------------------- /stack/avdt/avdt_l2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avdt/avdt_l2c.c -------------------------------------------------------------------------------- /stack/avdt/avdt_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avdt/avdt_msg.c -------------------------------------------------------------------------------- /stack/avdt/avdt_scb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avdt/avdt_scb.c -------------------------------------------------------------------------------- /stack/avdt/avdt_scb_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avdt/avdt_scb_act.c -------------------------------------------------------------------------------- /stack/avrc/avrc_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avrc/avrc_api.c -------------------------------------------------------------------------------- /stack/avrc/avrc_bld_ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avrc/avrc_bld_ct.c -------------------------------------------------------------------------------- /stack/avrc/avrc_bld_tg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avrc/avrc_bld_tg.c -------------------------------------------------------------------------------- /stack/avrc/avrc_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avrc/avrc_int.h -------------------------------------------------------------------------------- /stack/avrc/avrc_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avrc/avrc_opt.c -------------------------------------------------------------------------------- /stack/avrc/avrc_pars_ct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avrc/avrc_pars_ct.c -------------------------------------------------------------------------------- /stack/avrc/avrc_pars_tg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avrc/avrc_pars_tg.c -------------------------------------------------------------------------------- /stack/avrc/avrc_sdp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avrc/avrc_sdp.c -------------------------------------------------------------------------------- /stack/avrc/avrc_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/avrc/avrc_utils.c -------------------------------------------------------------------------------- /stack/bnep/bnep_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/bnep/bnep_api.c -------------------------------------------------------------------------------- /stack/bnep/bnep_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/bnep/bnep_int.h -------------------------------------------------------------------------------- /stack/bnep/bnep_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/bnep/bnep_main.c -------------------------------------------------------------------------------- /stack/bnep/bnep_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/bnep/bnep_utils.c -------------------------------------------------------------------------------- /stack/btm/btm_acl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_acl.c -------------------------------------------------------------------------------- /stack/btm/btm_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_ble.c -------------------------------------------------------------------------------- /stack/btm/btm_ble_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_ble_addr.c -------------------------------------------------------------------------------- /stack/btm/btm_ble_adv_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_ble_adv_filter.c -------------------------------------------------------------------------------- /stack/btm/btm_ble_batchscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_ble_batchscan.c -------------------------------------------------------------------------------- /stack/btm/btm_ble_bgconn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_ble_bgconn.c -------------------------------------------------------------------------------- /stack/btm/btm_ble_cont_energy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_ble_cont_energy.c -------------------------------------------------------------------------------- /stack/btm/btm_ble_gap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_ble_gap.c -------------------------------------------------------------------------------- /stack/btm/btm_ble_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_ble_int.h -------------------------------------------------------------------------------- /stack/btm/btm_ble_multi_adv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_ble_multi_adv.c -------------------------------------------------------------------------------- /stack/btm/btm_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_dev.c -------------------------------------------------------------------------------- /stack/btm/btm_devctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_devctl.c -------------------------------------------------------------------------------- /stack/btm/btm_inq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_inq.c -------------------------------------------------------------------------------- /stack/btm/btm_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_int.h -------------------------------------------------------------------------------- /stack/btm/btm_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_main.c -------------------------------------------------------------------------------- /stack/btm/btm_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_pm.c -------------------------------------------------------------------------------- /stack/btm/btm_sco.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_sco.c -------------------------------------------------------------------------------- /stack/btm/btm_sec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btm/btm_sec.c -------------------------------------------------------------------------------- /stack/btu/btu_hcif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btu/btu_hcif.c -------------------------------------------------------------------------------- /stack/btu/btu_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btu/btu_init.c -------------------------------------------------------------------------------- /stack/btu/btu_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/btu/btu_task.c -------------------------------------------------------------------------------- /stack/gap/gap_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gap/gap_api.c -------------------------------------------------------------------------------- /stack/gap/gap_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gap/gap_ble.c -------------------------------------------------------------------------------- /stack/gap/gap_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gap/gap_conn.c -------------------------------------------------------------------------------- /stack/gap/gap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gap/gap_int.h -------------------------------------------------------------------------------- /stack/gap/gap_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gap/gap_utils.c -------------------------------------------------------------------------------- /stack/gatt/att_protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gatt/att_protocol.c -------------------------------------------------------------------------------- /stack/gatt/gatt_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gatt/gatt_api.c -------------------------------------------------------------------------------- /stack/gatt/gatt_attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gatt/gatt_attr.c -------------------------------------------------------------------------------- /stack/gatt/gatt_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gatt/gatt_auth.c -------------------------------------------------------------------------------- /stack/gatt/gatt_cl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gatt/gatt_cl.c -------------------------------------------------------------------------------- /stack/gatt/gatt_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gatt/gatt_db.c -------------------------------------------------------------------------------- /stack/gatt/gatt_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gatt/gatt_int.h -------------------------------------------------------------------------------- /stack/gatt/gatt_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gatt/gatt_main.c -------------------------------------------------------------------------------- /stack/gatt/gatt_sr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gatt/gatt_sr.c -------------------------------------------------------------------------------- /stack/gatt/gatt_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/gatt/gatt_utils.c -------------------------------------------------------------------------------- /stack/hcic/hciblecmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/hcic/hciblecmds.c -------------------------------------------------------------------------------- /stack/hcic/hcicmds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/hcic/hcicmds.c -------------------------------------------------------------------------------- /stack/hid/hid_conn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/hid/hid_conn.h -------------------------------------------------------------------------------- /stack/hid/hidd_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/hid/hidd_api.c -------------------------------------------------------------------------------- /stack/hid/hidd_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/hid/hidd_conn.c -------------------------------------------------------------------------------- /stack/hid/hidd_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/hid/hidd_int.h -------------------------------------------------------------------------------- /stack/hid/hidh_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/hid/hidh_api.c -------------------------------------------------------------------------------- /stack/hid/hidh_conn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/hid/hidh_conn.c -------------------------------------------------------------------------------- /stack/hid/hidh_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/hid/hidh_int.h -------------------------------------------------------------------------------- /stack/include/a2d_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/a2d_api.h -------------------------------------------------------------------------------- /stack/include/a2d_sbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/a2d_sbc.h -------------------------------------------------------------------------------- /stack/include/avct_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/avct_api.h -------------------------------------------------------------------------------- /stack/include/avdt_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/avdt_api.h -------------------------------------------------------------------------------- /stack/include/avdtc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/avdtc_api.h -------------------------------------------------------------------------------- /stack/include/avrc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/avrc_api.h -------------------------------------------------------------------------------- /stack/include/avrc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/avrc_defs.h -------------------------------------------------------------------------------- /stack/include/bnep_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/bnep_api.h -------------------------------------------------------------------------------- /stack/include/bt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/bt_types.h -------------------------------------------------------------------------------- /stack/include/btm_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/btm_api.h -------------------------------------------------------------------------------- /stack/include/btm_ble_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/btm_ble_api.h -------------------------------------------------------------------------------- /stack/include/btu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/btu.h -------------------------------------------------------------------------------- /stack/include/dyn_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/dyn_mem.h -------------------------------------------------------------------------------- /stack/include/gap_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/gap_api.h -------------------------------------------------------------------------------- /stack/include/gatt_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/gatt_api.h -------------------------------------------------------------------------------- /stack/include/gattdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/gattdefs.h -------------------------------------------------------------------------------- /stack/include/goep_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/goep_fs.h -------------------------------------------------------------------------------- /stack/include/hcidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/hcidefs.h -------------------------------------------------------------------------------- /stack/include/hcimsgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/hcimsgs.h -------------------------------------------------------------------------------- /stack/include/hidd_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/hidd_api.h -------------------------------------------------------------------------------- /stack/include/hiddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/hiddefs.h -------------------------------------------------------------------------------- /stack/include/hidh_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/hidh_api.h -------------------------------------------------------------------------------- /stack/include/l2c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/l2c_api.h -------------------------------------------------------------------------------- /stack/include/l2c_sock_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/l2c_sock_api.h -------------------------------------------------------------------------------- /stack/include/l2cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/l2cdefs.h -------------------------------------------------------------------------------- /stack/include/mca_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/mca_api.h -------------------------------------------------------------------------------- /stack/include/mca_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/mca_defs.h -------------------------------------------------------------------------------- /stack/include/obx_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/obx_api.h -------------------------------------------------------------------------------- /stack/include/pan_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/pan_api.h -------------------------------------------------------------------------------- /stack/include/port_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/port_api.h -------------------------------------------------------------------------------- /stack/include/port_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/port_ext.h -------------------------------------------------------------------------------- /stack/include/profiles_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/profiles_api.h -------------------------------------------------------------------------------- /stack/include/rfcdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/rfcdefs.h -------------------------------------------------------------------------------- /stack/include/sdp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/sdp_api.h -------------------------------------------------------------------------------- /stack/include/sdpdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/sdpdefs.h -------------------------------------------------------------------------------- /stack/include/smp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/smp_api.h -------------------------------------------------------------------------------- /stack/include/srvc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/srvc_api.h -------------------------------------------------------------------------------- /stack/include/uipc_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/uipc_msg.h -------------------------------------------------------------------------------- /stack/include/utfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/utfc.h -------------------------------------------------------------------------------- /stack/include/wbt_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/wbt_api.h -------------------------------------------------------------------------------- /stack/include/wcassert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/include/wcassert.h -------------------------------------------------------------------------------- /stack/l2cap/l2c_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_api.c -------------------------------------------------------------------------------- /stack/l2cap/l2c_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_ble.c -------------------------------------------------------------------------------- /stack/l2cap/l2c_csm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_csm.c -------------------------------------------------------------------------------- /stack/l2cap/l2c_fcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_fcr.c -------------------------------------------------------------------------------- /stack/l2cap/l2c_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_int.h -------------------------------------------------------------------------------- /stack/l2cap/l2c_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_link.c -------------------------------------------------------------------------------- /stack/l2cap/l2c_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_main.c -------------------------------------------------------------------------------- /stack/l2cap/l2c_sock_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_sock_api.c -------------------------------------------------------------------------------- /stack/l2cap/l2c_sock_fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_sock_fsm.c -------------------------------------------------------------------------------- /stack/l2cap/l2c_sock_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_sock_int.h -------------------------------------------------------------------------------- /stack/l2cap/l2c_sock_l2cap_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_sock_l2cap_if.c -------------------------------------------------------------------------------- /stack/l2cap/l2c_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_ucd.c -------------------------------------------------------------------------------- /stack/l2cap/l2c_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/l2cap/l2c_utils.c -------------------------------------------------------------------------------- /stack/mcap/mca_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/mcap/mca_api.c -------------------------------------------------------------------------------- /stack/mcap/mca_cact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/mcap/mca_cact.c -------------------------------------------------------------------------------- /stack/mcap/mca_csm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/mcap/mca_csm.c -------------------------------------------------------------------------------- /stack/mcap/mca_dact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/mcap/mca_dact.c -------------------------------------------------------------------------------- /stack/mcap/mca_dsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/mcap/mca_dsm.c -------------------------------------------------------------------------------- /stack/mcap/mca_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/mcap/mca_int.h -------------------------------------------------------------------------------- /stack/mcap/mca_l2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/mcap/mca_l2c.c -------------------------------------------------------------------------------- /stack/mcap/mca_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/mcap/mca_main.c -------------------------------------------------------------------------------- /stack/pan/pan_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/pan/pan_api.c -------------------------------------------------------------------------------- /stack/pan/pan_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/pan/pan_int.h -------------------------------------------------------------------------------- /stack/pan/pan_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/pan/pan_main.c -------------------------------------------------------------------------------- /stack/pan/pan_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/pan/pan_utils.c -------------------------------------------------------------------------------- /stack/rfcomm/port_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/rfcomm/port_api.c -------------------------------------------------------------------------------- /stack/rfcomm/port_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/rfcomm/port_int.h -------------------------------------------------------------------------------- /stack/rfcomm/port_rfc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/rfcomm/port_rfc.c -------------------------------------------------------------------------------- /stack/rfcomm/port_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/rfcomm/port_utils.c -------------------------------------------------------------------------------- /stack/rfcomm/rfc_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/rfcomm/rfc_int.h -------------------------------------------------------------------------------- /stack/rfcomm/rfc_l2cap_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/rfcomm/rfc_l2cap_if.c -------------------------------------------------------------------------------- /stack/rfcomm/rfc_mx_fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/rfcomm/rfc_mx_fsm.c -------------------------------------------------------------------------------- /stack/rfcomm/rfc_port_fsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/rfcomm/rfc_port_fsm.c -------------------------------------------------------------------------------- /stack/rfcomm/rfc_port_if.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/rfcomm/rfc_port_if.c -------------------------------------------------------------------------------- /stack/rfcomm/rfc_ts_frames.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/rfcomm/rfc_ts_frames.c -------------------------------------------------------------------------------- /stack/rfcomm/rfc_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/rfcomm/rfc_utils.c -------------------------------------------------------------------------------- /stack/sdp/sdp_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/sdp/sdp_api.c -------------------------------------------------------------------------------- /stack/sdp/sdp_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/sdp/sdp_db.c -------------------------------------------------------------------------------- /stack/sdp/sdp_discovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/sdp/sdp_discovery.c -------------------------------------------------------------------------------- /stack/sdp/sdp_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/sdp/sdp_main.c -------------------------------------------------------------------------------- /stack/sdp/sdp_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/sdp/sdp_server.c -------------------------------------------------------------------------------- /stack/sdp/sdp_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/sdp/sdp_utils.c -------------------------------------------------------------------------------- /stack/sdp/sdpint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/sdp/sdpint.h -------------------------------------------------------------------------------- /stack/smp/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/smp/aes.c -------------------------------------------------------------------------------- /stack/smp/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/smp/aes.h -------------------------------------------------------------------------------- /stack/smp/smp_act.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/smp/smp_act.c -------------------------------------------------------------------------------- /stack/smp/smp_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/smp/smp_api.c -------------------------------------------------------------------------------- /stack/smp/smp_cmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/smp/smp_cmac.c -------------------------------------------------------------------------------- /stack/smp/smp_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/smp/smp_int.h -------------------------------------------------------------------------------- /stack/smp/smp_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/smp/smp_keys.c -------------------------------------------------------------------------------- /stack/smp/smp_l2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/smp/smp_l2c.c -------------------------------------------------------------------------------- /stack/smp/smp_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/smp/smp_main.c -------------------------------------------------------------------------------- /stack/smp/smp_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/smp/smp_utils.c -------------------------------------------------------------------------------- /stack/srvc/srvc_battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/srvc/srvc_battery.c -------------------------------------------------------------------------------- /stack/srvc/srvc_battery_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/srvc/srvc_battery_int.h -------------------------------------------------------------------------------- /stack/srvc/srvc_dis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/srvc/srvc_dis.c -------------------------------------------------------------------------------- /stack/srvc/srvc_dis_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/srvc/srvc_dis_int.h -------------------------------------------------------------------------------- /stack/srvc/srvc_eng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/srvc/srvc_eng.c -------------------------------------------------------------------------------- /stack/srvc/srvc_eng_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/stack/srvc/srvc_eng_int.h -------------------------------------------------------------------------------- /test/Android.mk: -------------------------------------------------------------------------------- 1 | include $(call all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /test/blegatt_test/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/blegatt_test/Android.mk -------------------------------------------------------------------------------- /test/blegatt_test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/blegatt_test/README.txt -------------------------------------------------------------------------------- /test/blegatt_test/gatt_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/blegatt_test/gatt_test.c -------------------------------------------------------------------------------- /test/bluedroidtest/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/bluedroidtest/Android.mk -------------------------------------------------------------------------------- /test/bluedroidtest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/bluedroidtest/README.txt -------------------------------------------------------------------------------- /test/bluedroidtest/bluedroidtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/bluedroidtest/bluedroidtest.c -------------------------------------------------------------------------------- /test/l2test_ertm/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/l2test_ertm/Android.mk -------------------------------------------------------------------------------- /test/l2test_ertm/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/l2test_ertm/README.txt -------------------------------------------------------------------------------- /test/l2test_ertm/l2test_ertm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/l2test_ertm/l2test_ertm.c -------------------------------------------------------------------------------- /test/rfcommtest/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/rfcommtest/Android.mk -------------------------------------------------------------------------------- /test/rfcommtest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/rfcommtest/README.txt -------------------------------------------------------------------------------- /test/rfcommtest/rfcommtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/rfcommtest/rfcommtest.c -------------------------------------------------------------------------------- /test/sdptest/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/sdptest/Android.mk -------------------------------------------------------------------------------- /test/sdptest/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/sdptest/README.txt -------------------------------------------------------------------------------- /test/sdptest/sdptool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/sdptest/sdptool.c -------------------------------------------------------------------------------- /test/suite/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/Android.mk -------------------------------------------------------------------------------- /test/suite/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/base.h -------------------------------------------------------------------------------- /test/suite/cases/adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/cases/adapter.c -------------------------------------------------------------------------------- /test/suite/cases/cases.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/cases/cases.c -------------------------------------------------------------------------------- /test/suite/cases/cases.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/cases/cases.h -------------------------------------------------------------------------------- /test/suite/cases/pan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/cases/pan.c -------------------------------------------------------------------------------- /test/suite/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/main.c -------------------------------------------------------------------------------- /test/suite/support/adapter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/support/adapter.c -------------------------------------------------------------------------------- /test/suite/support/adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/support/adapter.h -------------------------------------------------------------------------------- /test/suite/support/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/support/callbacks.c -------------------------------------------------------------------------------- /test/suite/support/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/support/callbacks.h -------------------------------------------------------------------------------- /test/suite/support/hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/support/hal.c -------------------------------------------------------------------------------- /test/suite/support/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/support/hal.h -------------------------------------------------------------------------------- /test/suite/support/pan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/support/pan.c -------------------------------------------------------------------------------- /test/suite/support/pan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/support/pan.h -------------------------------------------------------------------------------- /test/suite/support/property.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/support/property.c -------------------------------------------------------------------------------- /test/suite/support/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/test/suite/support/property.h -------------------------------------------------------------------------------- /tools/gen-buildcfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/tools/gen-buildcfg.sh -------------------------------------------------------------------------------- /udrv/include/uipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/udrv/include/uipc.h -------------------------------------------------------------------------------- /udrv/ulinux/uipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/udrv/ulinux/uipc.c -------------------------------------------------------------------------------- /udrv/ulinux/uipc_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/udrv/ulinux/uipc_linux.h -------------------------------------------------------------------------------- /utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/utils/Android.mk -------------------------------------------------------------------------------- /utils/include/bt_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/utils/include/bt_utils.h -------------------------------------------------------------------------------- /utils/src/bt_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/utils/src/bt_utils.c -------------------------------------------------------------------------------- /vnd/ble/vendor_ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/vnd/ble/vendor_ble.c -------------------------------------------------------------------------------- /vnd/ble/vendor_hcidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/vnd/ble/vendor_hcidefs.h -------------------------------------------------------------------------------- /vnd/include/vendor_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/vnd/include/vendor_api.h -------------------------------------------------------------------------------- /vnd/include/vendor_ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/vnd/include/vendor_ble.h -------------------------------------------------------------------------------- /wipowerif/include/wipower_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/wipowerif/include/wipower_const.h -------------------------------------------------------------------------------- /wipowerif/src/wipower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_external_bluetooth_bluedroid/HEAD/wipowerif/src/wipower.c --------------------------------------------------------------------------------