Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/tests/core/common/security/permission/standard/unittest/
H A Dsoftbus_permission_test.cpp89 ret = CheckTransSecLevel(nullptr, g_sessionName);
92 ret = CheckTransSecLevel(g_sessionName, nullptr);
95 ret = CheckTransSecLevel(g_sessionName, g_sessionName);
/ohos5.0/foundation/communication/dsoftbus/tests/core/frame/unittest/mock/
H A Dsoftbus_server_stub_test_mock.cpp46 int32_t CheckTransSecLevel(const char *mySessionName, const char *peerSessionName) in CheckTransSecLevel() function
48 return GetSoftbusServerStubTestInterface()->CheckTransSecLevel(mySessionName, peerSessionName); in CheckTransSecLevel()
H A Dsoftbus_server_stub_test_mock.h38 virtual int32_t CheckTransSecLevel(const char *mySessionName, const char *peerSessionName) = 0;
62 …MOCK_METHOD2(CheckTransSecLevel, int32_t (const char *mySessionName, const char *peerSessionName));
/ohos5.0/foundation/communication/dsoftbus/core/common/security/permission/mini/
H A Dsoftbus_permission.c39 int32_t CheckTransSecLevel(const char *mySessionName, const char *peerSessionName) in CheckTransSecLevel() function
/ohos5.0/foundation/communication/dsoftbus/core/common/include/
H A Dsoftbus_permission.h44 int32_t CheckTransSecLevel(const char *mySessionName, const char *peerSessionName);
/ohos5.0/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/permission/
H A Dtrans_dynamic_permission_test.cpp186 ret = CheckTransSecLevel(sessionName.c_str(), sessionName.c_str());
225 ret = CheckTransSecLevel(sessionName.c_str(), sessionName.c_str());
/ohos5.0/foundation/communication/dsoftbus/core/common/security/permission/small/
H A Dsoftbus_permission.c93 int32_t CheckTransSecLevel(const char *mySessionName, const char *peerSessionName) in CheckTransSecLevel() function
/ohos5.0/foundation/communication/dsoftbus/core/common/security/permission/standard/
H A Dsoftbus_permission.cpp106 int32_t CheckTransSecLevel(const char *mySessionName, const char *peerSessionName) in CheckTransSecLevel() function
/ohos5.0/foundation/communication/dsoftbus/core/frame/small/init/src/
H A Dtrans_server_stub.c108 if (CheckTransSecLevel(sessionName, peerSessionName) != SOFTBUS_OK) { in CheckOpenSessionPremission()
/ohos5.0/foundation/communication/dsoftbus/tests/core/frame/unittest/
H A Dsoftbus_server_stub_test.cpp166 EXPECT_CALL(softbusServerStubMock, CheckTransSecLevel).WillRepeatedly(Return(SOFTBUS_OK));
180 …EXPECT_CALL(softbusServerStubMock, CheckTransSecLevel).WillRepeatedly(Return(SOFTBUS_PERMISSION_DE…
/ohos5.0/foundation/communication/dsoftbus/core/frame/standard/init/src/
H A Dsoftbus_server_stub.cpp80 if (CheckTransSecLevel(param->sessionName, param->peerSessionName) != SOFTBUS_OK) { in CheckOpenSessionPermission()