Lines Matching refs:clientId
181 int32_t clientId, BtGattClientCallbacks *func, const BdAddr *bdAddr, bool isAutoConnect, BtTransportType transport)
183 return MockBluetooth::GetMocker()->BleGattcConnect(clientId, func, bdAddr, isAutoConnect, transport);
186 int32_t BleGattcDisconnect(int32_t clientId)
188 return MockBluetooth::GetMocker()->BleGattcDisconnect(clientId);
191 int32_t BleGattcSearchServices(int32_t clientId)
193 return MockBluetooth::GetMocker()->BleGattcSearchServices(clientId);
196 bool BleGattcGetService(int32_t clientId, BtUuid serviceUuid)
198 return MockBluetooth::GetMocker()->BleGattcGetService(clientId, serviceUuid);
201 int32_t BleGattcRegisterNotification(int32_t clientId, BtGattCharacteristic characteristic, bool enable)
203 return MockBluetooth::GetMocker()->BleGattcRegisterNotification(clientId, characteristic, enable);
206 int32_t BleGattcConfigureMtuSize(int32_t clientId, int32_t mtuSize)
208 return MockBluetooth::GetMocker()->BleGattcConfigureMtuSize(clientId, mtuSize);
212 int32_t clientId, BtGattCharacteristic characteristic, BtGattWriteType writeType, int32_t len, const char *value)
214 return MockBluetooth::GetMocker()->BleGattcWriteCharacteristic(clientId, characteristic, writeType, len, value);
217 int32_t BleGattcUnRegister(int32_t clientId)
219 return MockBluetooth::GetMocker()->BleGattcUnRegister(clientId);
222 int32_t BleGattcSetFastestConn(int32_t clientId, bool fastestConnFlag)
224 return MockBluetooth::GetMocker()->BleGattcSetFastestConn(clientId, fastestConnFlag);
227 int32_t BleGattcSetPriority(int32_t clientId, const BdAddr *bdAddr, BtGattPriority priority)
229 return MockBluetooth::GetMocker()->BleGattcSetPriority(clientId, bdAddr, priority);