/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/ble/ |
H A D | ble_service_connection_test.cpp | 230 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 D | connection_ble_manager_mock.cpp | 150 int32_t ConnGattClientDisconnect(ConnBleConnection *connection, bool grace, bool refreshGatt) in ConnGattClientDisconnect() argument 152 return GetConnectionBleInterface()->ConnGattClientDisconnect(connection, grace, refreshGatt); in ConnGattClientDisconnect()
|
H A D | connection_ble_client_mock.cpp | 145 int32_t SoftbusBleGattcDisconnect(int32_t clientId, bool refreshGatt) in SoftbusBleGattcDisconnect() argument 147 return GetConnectionBleClientInterface()->SoftbusBleGattcDisconnect(clientId, refreshGatt); in SoftbusBleGattcDisconnect()
|
H A D | connection_ble_client_mock.h | 43 virtual int32_t SoftbusBleGattcDisconnect(int32_t clientId, bool refreshGatt) = 0;
|
H A D | connection_ble_manager_mock.h | 60 … int32_t ConnGattClientDisconnect(ConnBleConnection *connection, bool grace, bool refreshGatt) = 0;
|
/ohos5.0/foundation/communication/dsoftbus/core/connection/ble/include/ |
H A D | softbus_conn_ble_client.h | 32 int32_t ConnGattClientDisconnect(ConnBleConnection *connection, bool grace, bool refreshGatt);
|
H A D | softbus_conn_ble_connection.h | 168 int32_t (*bleClientDisconnect)(ConnBleConnection *connection, bool grace, bool refreshGatt);
|
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/include/ |
H A D | softbus_adapter_ble_gatt_client.h | 77 int32_t SoftbusBleGattcDisconnect(int32_t clientId, bool refreshGatt);
|
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/ble/ |
H A D | softbus_adapter_ble_gatt_client.c | 339 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 D | softbus_conn_ble_client.c | 655 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 D | softbus_conn_ble_connection.c | 288 bool refreshGatt = ShoudRefreshGatt(reason); in ConnBleDisconnectNow() local 289 return interface->bleClientDisconnect(connection, grace, refreshGatt); in ConnBleDisconnectNow()
|