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 D | softbus_permission_test.cpp | 89 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 D | softbus_server_stub_test_mock.cpp | 46 int32_t CheckTransSecLevel(const char *mySessionName, const char *peerSessionName) in CheckTransSecLevel() function 48 return GetSoftbusServerStubTestInterface()->CheckTransSecLevel(mySessionName, peerSessionName); in CheckTransSecLevel()
|
H A D | softbus_server_stub_test_mock.h | 38 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 D | softbus_permission.c | 39 int32_t CheckTransSecLevel(const char *mySessionName, const char *peerSessionName) in CheckTransSecLevel() function
|
/ohos5.0/foundation/communication/dsoftbus/core/common/include/ |
H A D | softbus_permission.h | 44 int32_t CheckTransSecLevel(const char *mySessionName, const char *peerSessionName);
|
/ohos5.0/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/permission/ |
H A D | trans_dynamic_permission_test.cpp | 186 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 D | softbus_permission.c | 93 int32_t CheckTransSecLevel(const char *mySessionName, const char *peerSessionName) in CheckTransSecLevel() function
|
/ohos5.0/foundation/communication/dsoftbus/core/common/security/permission/standard/ |
H A D | softbus_permission.cpp | 106 int32_t CheckTransSecLevel(const char *mySessionName, const char *peerSessionName) in CheckTransSecLevel() function
|
/ohos5.0/foundation/communication/dsoftbus/core/frame/small/init/src/ |
H A D | trans_server_stub.c | 108 if (CheckTransSecLevel(sessionName, peerSessionName) != SOFTBUS_OK) { in CheckOpenSessionPremission()
|
/ohos5.0/foundation/communication/dsoftbus/tests/core/frame/unittest/ |
H A D | softbus_server_stub_test.cpp | 166 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 D | softbus_server_stub.cpp | 80 if (CheckTransSecLevel(param->sessionName, param->peerSessionName) != SOFTBUS_OK) { in CheckOpenSessionPermission()
|