/system/bt/service/hal/ |
D | bluetooth_gatt_interface.h | 56 BluetoothGattInterface* gatt_iface, const RawAddress& bda, int rssi, 68 virtual void RegisterClientCallback(BluetoothGattInterface* gatt_iface, 72 virtual void ConnectCallback(BluetoothGattInterface* gatt_iface, 76 virtual void DisconnectCallback(BluetoothGattInterface* gatt_iface, 80 virtual void SearchCompleteCallback(BluetoothGattInterface* gatt_iface, 84 BluetoothGattInterface* gatt_iface, int conn_id, int registered, 87 virtual void NotifyCallback(BluetoothGattInterface* gatt_iface, int conn_id, 90 virtual void WriteCharacteristicCallback(BluetoothGattInterface* gatt_iface, 94 virtual void WriteDescriptorCallback(BluetoothGattInterface* gatt_iface, 98 virtual void MtuChangedCallback(BluetoothGattInterface* gatt_iface, [all …]
|
D | bluetooth_gatt_interface.cc | 491 const btgatt_interface_t* gatt_iface = in Initialize() local 494 if (!gatt_iface) { in Initialize() 499 bt_status_t status = gatt_iface->init(&gatt_callbacks); in Initialize() 505 hal_iface_ = gatt_iface; in Initialize()
|
/system/bt/service/ |
D | gatt_server.h | 195 void ConnectionCallback(hal::BluetoothGattInterface* gatt_iface, int conn_id, 198 void ServiceAddedCallback(hal::BluetoothGattInterface* gatt_iface, int status, 201 void ServiceStoppedCallback(hal::BluetoothGattInterface* gatt_iface, 205 hal::BluetoothGattInterface* gatt_iface, int conn_id, int trans_id, 208 void RequestReadDescriptorCallback(hal::BluetoothGattInterface* gatt_iface, 214 hal::BluetoothGattInterface* gatt_iface, int conn_id, int trans_id, 217 void RequestWriteDescriptorCallback(hal::BluetoothGattInterface* gatt_iface, 222 void RequestExecWriteCallback(hal::BluetoothGattInterface* gatt_iface, 225 void IndicationSentCallback(hal::BluetoothGattInterface* gatt_iface, 232 void HandleNextEntry(hal::BluetoothGattInterface* gatt_iface); [all …]
|
D | low_energy_client.h | 105 void ConnectCallback(hal::BluetoothGattInterface* gatt_iface, int conn_id, 108 void DisconnectCallback(hal::BluetoothGattInterface* gatt_iface, int conn_id, 111 void MtuChangedCallback(hal::BluetoothGattInterface* gatt_iface, int conn_id, 161 void RegisterClientCallback(hal::BluetoothGattInterface* gatt_iface,
|
D | low_energy_client.cc | 138 void LowEnergyClient::ConnectCallback(hal::BluetoothGattInterface* gatt_iface, in ConnectCallback() argument 159 hal::BluetoothGattInterface* gatt_iface, int conn_id, int status, in DisconnectCallback() argument 177 hal::BluetoothGattInterface* gatt_iface, int conn_id, int status, int mtu) { in MtuChangedCallback() argument 233 hal::BluetoothGattInterface* gatt_iface, int status, int client_id, in RegisterClientCallback() argument 252 gatt_iface->AddClientObserver(client.get()); in RegisterClientCallback()
|
D | gatt_client.h | 72 void RegisterClientCallback(hal::BluetoothGattInterface* gatt_iface,
|
D | low_energy_scanner.h | 87 void ScanResultCallback(hal::BluetoothGattInterface* gatt_iface,
|
D | gatt_server.cc | 295 void GattServer::ServiceAddedCallback(hal::BluetoothGattInterface* gatt_iface, in ServiceAddedCallback() argument 602 hal::BluetoothGattInterface* gatt_iface, int status, int server_id, in RegisterServerCallback() argument 621 gatt_iface->AddServerObserver(server.get()); in RegisterServerCallback()
|
D | low_energy_scanner.cc | 142 hal::BluetoothGattInterface* gatt_iface, const RawAddress& bda, int rssi, in ScanResultCallback() argument
|
/system/bt/service/client/ |
D | main.cc | 594 sp<IBluetoothGattClient> gatt_iface; in HandleRegisterGATT() local 595 bt_iface->GetGattClientInterface(&gatt_iface); in HandleRegisterGATT() 596 if (!gatt_iface.get()) { in HandleRegisterGATT() 602 gatt_iface->RegisterClient(new CLIGattClientCallback(), &status); in HandleRegisterGATT() 615 sp<IBluetoothGattClient> gatt_iface; in HandleUnregisterGATT() local 616 bt_iface->GetGattClientInterface(&gatt_iface); in HandleUnregisterGATT() 617 if (!gatt_iface.get()) { in HandleUnregisterGATT() 622 gatt_iface->UnregisterClient(gatt_client_id.load()); in HandleUnregisterGATT()
|