Home
last modified time | relevance | path

Searched refs:refreshGatt (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/ble/
H A Dble_service_connection_test.cpp230 bool refreshGatt = 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_client_mock.cpp145 int32_t SoftbusBleGattcDisconnect(int32_t clientId, bool refreshGatt) in SoftbusBleGattcDisconnect() argument
147 return GetConnectionBleClientInterface()->SoftbusBleGattcDisconnect(clientId, refreshGatt); in SoftbusBleGattcDisconnect()
H A Dconnection_ble_client_mock.h43 virtual int32_t SoftbusBleGattcDisconnect(int32_t clientId, bool refreshGatt) = 0;
H A Dconnection_ble_manager_mock.h60 … int32_t ConnGattClientDisconnect(ConnBleConnection *connection, bool grace, bool refreshGatt) = 0;
/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/adapter/common/net/bluetooth/include/
H A Dsoftbus_adapter_ble_gatt_client.h77 int32_t SoftbusBleGattcDisconnect(int32_t clientId, bool refreshGatt);
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/ble/
H A Dsoftbus_adapter_ble_gatt_client.c339 int32_t SoftbusBleGattcDisconnect(int32_t clientId, bool refreshGatt) in SoftbusBleGattcDisconnect() argument
341 (void)refreshGatt; in SoftbusBleGattcDisconnect()
/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
674 status = SoftbusBleGattcDisconnect(underlayerHandle, refreshGatt); in ConnGattClientDisconnect()
686 connection->connectionId, underlayerHandle, grace, refreshGatt, status); in ConnGattClientDisconnect()
H A Dsoftbus_conn_ble_connection.c288 bool refreshGatt = ShoudRefreshGatt(reason); in ConnBleDisconnectNow() local
289 return interface->bleClientDisconnect(connection, grace, refreshGatt); in ConnBleDisconnectNow()