Home
last modified time | relevance | path

Searched refs:server_id (Results 1 – 4 of 4) sorted by relevance

/system/bt/service/ipc/binder/
Dbluetooth_gatt_server_binder_server.cpp44 void BluetoothGattServerBinderServer::UnregisterServer(int server_id) { in UnregisterServer() argument
46 UnregisterInstanceBase(server_id); in UnregisterServer()
55 int server_id, bool is_primary, const bluetooth::UUID& uuid, in BeginServiceDeclaration() argument
61 auto gatt_server = GetGattServer(server_id); in BeginServiceDeclaration()
63 LOG(ERROR) << "Unknown server_id: " << server_id; in BeginServiceDeclaration()
70 << server_id << " UUID: " << uuid.ToString(); in BeginServiceDeclaration()
80 int server_id, const bluetooth::UUID& uuid, in AddCharacteristic() argument
87 auto gatt_server = GetGattServer(server_id); in AddCharacteristic()
89 LOG(ERROR) << "Unknown server_id: " << server_id; in AddCharacteristic()
96 << server_id << " UUID: " << uuid.ToString(); in AddCharacteristic()
[all …]
Dbluetooth_gatt_server_binder_server.h44 void UnregisterServer(int server_id) override;
47 int server_id, bool is_primary, const bluetooth::UUID& uuid,
50 int server_id, const bluetooth::UUID& uuid,
54 int server_id, const bluetooth::UUID& uuid, int permissions,
56 bool EndServiceDeclaration(int server_id) override;
57 bool SendResponse(int server_id, const std::string& device_address,
61 int server_id,
100 GetGattServerCallback(int server_id);
104 std::shared_ptr<bluetooth::GattServer> GetGattServer(int server_id);
/system/bt/service/
Dgatt_server.h247 GattServer(const UUID& uuid, int server_id);
259 int conn_id, int server_id,
264 int status, int server_id,
269 int status, int server_id,
275 int status, int server_id,
281 int status, int server_id,
285 int status, int server_id,
380 int status, int server_id,
Dgatt_server.cpp43 GattServer::GattServer(const UUID& uuid, int server_id) in GattServer() argument
45 server_id_(server_id), in GattServer()
450 int conn_id, int server_id, in ConnectionCallback() argument
455 if (server_id != server_id_) in ConnectionCallback()
499 int status, int server_id, in ServiceAddedCallback() argument
504 if (server_id != server_id_) in ServiceAddedCallback()
515 << " server_id: " << server_id in ServiceAddedCallback()
534 int status, int server_id, in CharacteristicAddedCallback() argument
540 if (server_id != server_id_) in CharacteristicAddedCallback()
550 << " server_id: " << server_id in CharacteristicAddedCallback()
[all …]