Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/ble/mock/
H A Dconnection_ble_client_mock.h33 virtual int32_t SoftbusGattcSetFastestConn(int32_t clientId) = 0;
58 MOCK_METHOD(int32_t, SoftbusGattcSetFastestConn, (int32_t), (override));
H A Dconnection_ble_client_mock.cpp102 int32_t SoftbusGattcSetFastestConn(int32_t clientId) in SoftbusGattcSetFastestConn() function
104 return GetConnectionBleClientInterface()->SoftbusGattcSetFastestConn(clientId); in SoftbusGattcSetFastestConn()
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/include/
H A Dsoftbus_adapter_ble_gatt_client.h86 int32_t SoftbusGattcSetFastestConn(int32_t clientId);
/ohos5.0/foundation/communication/dsoftbus/tests/adapter/bluetooth/
H A Dsoftbus_adapter_ble_gatt_client_test.cpp435 ASSERT_EQ(SoftbusGattcSetFastestConn(-1), SOFTBUS_INVALID_PARAM);
440 ASSERT_EQ(SoftbusGattcSetFastestConn(1), SOFTBUS_CONN_BLE_UNDERLAY_CLIENT_SET_FASTEST_ERR);
441 ASSERT_EQ(SoftbusGattcSetFastestConn(1), SOFTBUS_OK);
/ohos5.0/foundation/communication/dsoftbus/tests/core/connection/ble/
H A Dconnection_ble_client_test.cpp242 EXPECT_CALL(bleMock, SoftbusGattcSetFastestConn).WillRepeatedly(Return(SOFTBUS_OK));
247 EXPECT_CALL(bleMock, SoftbusGattcSetFastestConn).WillRepeatedly(Return(
/ohos5.0/foundation/communication/dsoftbus/adapter/common/net/bluetooth/ble/
H A Dsoftbus_adapter_ble_gatt_client.c465 int32_t SoftbusGattcSetFastestConn(int32_t clientId) in SoftbusGattcSetFastestConn() function
/ohos5.0/foundation/communication/dsoftbus/core/connection/ble/src/
H A Dsoftbus_conn_ble_client.c145 …if (connection->fastestConnectEnable && SoftbusGattcSetFastestConn(underlayerHandle) != SOFTBUS_OK… in ConnGattClientConnect()