Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/ble/
H A Dble_service_connection_test.cpp233 ret = ConnGattClientDisconnect(NULL, grace, refreshGatt);
239 ret = ConnGattClientDisconnect(&connection, grace, refreshGatt);
246 ret = ConnGattClientDisconnect(&connection, grace, refreshGatt);
253 ret = ConnGattClientDisconnect(&connection, grace, refreshGatt);
301 int32_t ret = ConnGattClientDisconnect(&bleConnection, false, false);
316 ret = ConnGattClientDisconnect(connection, false, false);
352 ret = ConnGattClientDisconnect(connection, false, false);
357 ret = ConnGattClientDisconnect(connection, false, false);
362 ret = ConnGattClientDisconnect(connection, true, false);
367 ret = ConnGattClientDisconnect(connection, true, false);
[all …]
H A Dconnection_ble_manager_test.cpp187 EXPECT_CALL(bleMock, ConnGattClientDisconnect).WillRepeatedly(Return(SOFTBUS_OK));
295 EXPECT_CALL(bleMock, ConnGattClientDisconnect).WillRepeatedly(Return(SOFTBUS_OK));
308 EXPECT_CALL(bleMock, ConnGattClientDisconnect).WillRepeatedly(Return(SOFTBUS_OK));
405 EXPECT_CALL(bleMock, ConnGattClientDisconnect).WillRepeatedly(Return(SOFTBUS_OK));
/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/ble/mock/
H A Dconnection_ble_manager_mock.cpp150 int32_t ConnGattClientDisconnect(ConnBleConnection *connection, bool grace, bool refreshGatt) in ConnGattClientDisconnect() function
152 return GetConnectionBleInterface()->ConnGattClientDisconnect(connection, grace, refreshGatt); in ConnGattClientDisconnect()
H A Dconnection_ble_manager_mock.h60 …virtual int32_t ConnGattClientDisconnect(ConnBleConnection *connection, bool grace, bool refreshGa…
108 MOCK_METHOD(int32_t, ConnGattClientDisconnect, (ConnBleConnection *, bool, bool), (override));
/ohos5.0/foundation/communication/dsoftbus/core/connection/ble/include/
H A Dsoftbus_conn_ble_client.h32 int32_t ConnGattClientDisconnect(ConnBleConnection *connection, bool grace, bool refreshGatt);
/ohos5.0/foundation/communication/dsoftbus/core/connection/ble/src/
H A Dble_protocol_interface_factory.c26 .bleClientDisconnect = ConnGattClientDisconnect,
H A Dsoftbus_conn_ble_client.c655 int32_t ConnGattClientDisconnect(ConnBleConnection *connection, bool grace, bool refreshGatt) in ConnGattClientDisconnect() function