Lines Matching refs:clientId

130     int32_t clientId, BtGattClientCallbacks *func, const BdAddr *bdAddr, bool isAutoConnect, BtTransportType transport)
132 return MockBluetooth::GetMocker()->BleGattcConnect(clientId, func, bdAddr, isAutoConnect, transport);
135 int32_t BleGattcDisconnect(int32_t clientId)
137 return MockBluetooth::GetMocker()->BleGattcDisconnect(clientId);
140 int32_t BleGattcSearchServices(int32_t clientId)
142 return MockBluetooth::GetMocker()->BleGattcSearchServices(clientId);
145 bool BleGattcGetService(int32_t clientId, BtUuid serviceUuid)
147 return MockBluetooth::GetMocker()->BleGattcGetService(clientId, serviceUuid);
150 int32_t BleGattcRegisterNotification(int32_t clientId, BtGattCharacteristic characteristic, bool enable)
152 return MockBluetooth::GetMocker()->BleGattcRegisterNotification(clientId, characteristic, enable);
155 int32_t BleGattcConfigureMtuSize(int32_t clientId, int32_t mtuSize)
157 return MockBluetooth::GetMocker()->BleGattcConfigureMtuSize(clientId, mtuSize);
161 int32_t clientId, BtGattCharacteristic characteristic, BtGattWriteType writeType, int32_t len, const char *value)
163 return MockBluetooth::GetMocker()->BleGattcWriteCharacteristic(clientId, characteristic, writeType, len, value);
166 int32_t BleGattcUnRegister(int32_t clientId)
168 return MockBluetooth::GetMocker()->BleGattcUnRegister(clientId);
171 int32_t BleGattcSetFastestConn(int32_t clientId, bool fastestConnFlag)
173 return MockBluetooth::GetMocker()->BleGattcSetFastestConn(clientId, fastestConnFlag);
176 int32_t BleGattcSetPriority(int32_t clientId, const BdAddr *bdAddr, BtGattPriority priority)
178 return MockBluetooth::GetMocker()->BleGattcSetPriority(clientId, bdAddr, priority);