Home
last modified time | relevance | path

Searched refs:SetMtu (Results 1 – 7 of 7) sorted by relevance

/system/bt/service/common/bluetooth/binder/
DIBluetoothLowEnergy.h79 virtual bool SetMtu(int client_id, const char* address, int mtu) = 0;
132 bool SetMtu(int client_id, const char* address, int mtu) override;
DIBluetoothLowEnergy.cpp92 bool result = SetMtu(client_id, address, mtu); in onTransact()
222 bool BpBluetoothLowEnergy::SetMtu(int client_id, const char* address, int mtu) { in SetMtu() function in ipc::binder::BpBluetoothLowEnergy
/system/bt/service/ipc/binder/
Dbluetooth_low_energy_binder_server.h52 bool SetMtu(int client_id, const char* address, int mtu) override;
Dbluetooth_low_energy_binder_server.cpp89 bool BluetoothLowEnergyBinderServer::SetMtu(int client_id, in SetMtu() function in ipc::binder::BluetoothLowEnergyBinderServer
103 return client->SetMtu(address, mtu); in SetMtu()
/system/bt/service/
Dlow_energy_client.h98 bool SetMtu(std::string address, int mtu);
Dlow_energy_client.cpp380 bool LowEnergyClient::SetMtu(std::string address, int mtu) { in SetMtu() function in bluetooth::LowEnergyClient
/system/bt/service/client/
Dmain.cpp650 bool status = ble_iface->SetMtu(ble_client_id.load(), address.c_str(), mtu); in HandleSetMtu()