Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/ble/
H A Dble_service_connection_test.cpp229 bool grace = true; variable
233 ret = ConnGattClientDisconnect(NULL, grace, refreshGatt);
239 ret = ConnGattClientDisconnect(&connection, grace, refreshGatt);
246 ret = ConnGattClientDisconnect(&connection, grace, refreshGatt);
253 ret = ConnGattClientDisconnect(&connection, grace, refreshGatt);
/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() argument
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…
/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);
H A Dsoftbus_conn_ble_connection.h168 int32_t (*bleClientDisconnect)(ConnBleConnection *connection, bool grace, bool refreshGatt);
/ohos5.0/foundation/communication/dsoftbus/core/connection/ble/src/
H A Dsoftbus_conn_ble_client.c655 int32_t ConnGattClientDisconnect(ConnBleConnection *connection, bool grace, bool refreshGatt) in ConnGattClientDisconnect() argument
675 if (status != SOFTBUS_OK || !grace) { in ConnGattClientDisconnect()
686 connection->connectionId, underlayerHandle, grace, refreshGatt, status); in ConnGattClientDisconnect()
H A Dsoftbus_conn_ble_connection.c287 bool grace = ShouldGrace(reason); in ConnBleDisconnectNow() local
289 return interface->bleClientDisconnect(connection, grace, refreshGatt); in ConnBleDisconnectNow()