Home
last modified time | relevance | path

Searched refs:AuthGetVersion (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_builder/src/
H A Dlnn_auth_mock.cpp45 int32_t AuthGetVersion(int64_t authId, SoftBusVersion *version) in AuthGetVersion() function
47 return GetAuthInterface()->AuthGetVersion(authId, version); in AuthGetVersion()
H A Dlnn_connection_fsm_mock_test.cpp216 …EXPECT_CALL(authtMock, AuthGetVersion).WillOnce(Return(SOFTBUS_ERR)).WillRepeatedly(Return(SOFTBUS…
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_builder/include/
H A Dlnn_auth_mock.h31 virtual int32_t AuthGetVersion(int64_t authId, SoftBusVersion *version) = 0;
41 MOCK_METHOD2(AuthGetVersion, int32_t (int64_t, SoftBusVersion *));
/ohos5.0/foundation/communication/dsoftbus/tests/core/bus_center/lnn/net_builder/mock/
H A Dauth_mock.cpp55 int32_t AuthGetVersion(int64_t authId, SoftBusVersion *version) in AuthGetVersion() function
57 return GetAuthInterface()->AuthGetVersion(authId, version); in AuthGetVersion()
H A Dauth_mock.h33 virtual int32_t AuthGetVersion(int64_t authId, SoftBusVersion *version) = 0;
50 MOCK_METHOD(int32_t, AuthGetVersion, (int64_t, SoftBusVersion *), (override));
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/common/mock/src/
H A Dtrans_auth_mock.cpp179 int32_t AuthGetVersion(int64_t authId, SoftBusVersion *version) in AuthGetVersion() function
181 return GetTransAuthInterface()->AuthGetVersion(authId, version); in AuthGetVersion()
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/common/mock/include/
H A Dtrans_auth_mock.h67 virtual int32_t AuthGetVersion(int64_t authId, SoftBusVersion *version) = 0;
130 MOCK_METHOD2(AuthGetVersion, int32_t (int64_t, SoftBusVersion *));
/ohos5.0/foundation/communication/dsoftbus/core/authentication/src/virtual/
H A Dauth_interface_virtual.c227 int32_t AuthGetVersion(int64_t authId, SoftBusVersion *version) in AuthGetVersion() function
/ohos5.0/foundation/communication/dsoftbus/core/authentication/interface/
H A Dauth_interface.h208 int32_t AuthGetVersion(int64_t authId, SoftBusVersion *version);
/ohos5.0/foundation/communication/dsoftbus/core/authentication/src/
H A Dauth_interface.c593 int32_t AuthGetVersion(int64_t authId, SoftBusVersion *version) in AuthGetVersion() function
/ohos5.0/foundation/communication/dsoftbus/tests/core/authentication/unittest/
H A Dauth_test.cpp1372 ret = AuthGetVersion(authId, nullptr);
1374 ret = AuthGetVersion(authId, &version);
/ohos5.0/foundation/communication/dsoftbus/core/bus_center/lnn/net_builder/src/
H A Dlnn_connection_fsm.c1155 if (AuthGetVersion(connInfo->authHandle.authId, &version) != SOFTBUS_OK) { in LnnFillConnInfo()