Home
last modified time | relevance | path

Searched refs:gatt_iface (Results 1 – 10 of 10) sorted by relevance

/system/bt/service/hal/
Dbluetooth_gatt_interface.h56 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 …]
Dbluetooth_gatt_interface.cc491 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/
Dgatt_server.h195 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 …]
Dlow_energy_client.h105 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,
Dlow_energy_client.cc138 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()
Dgatt_client.h72 void RegisterClientCallback(hal::BluetoothGattInterface* gatt_iface,
Dlow_energy_scanner.h87 void ScanResultCallback(hal::BluetoothGattInterface* gatt_iface,
Dgatt_server.cc295 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()
Dlow_energy_scanner.cc142 hal::BluetoothGattInterface* gatt_iface, const RawAddress& bda, int rssi, in ScanResultCallback() argument
/system/bt/service/client/
Dmain.cc594 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()