Home
last modified time | relevance | path

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

/ohos5.0/foundation/communication/dsoftbus/tests/core/frame/unittest/mock/
H A Dsoftbus_server_stub_test_mock.cpp60 int32_t TransGetAndComparePid(pid_t pid, int32_t channelId, int32_t channelType) in TransGetAndComparePid() function
62 return GetSoftbusServerStubTestInterface()->TransGetAndComparePid(pid, channelId, channelType); in TransGetAndComparePid()
H A Dsoftbus_server_stub_test_mock.h42 virtual int32_t TransGetAndComparePid(pid_t pid, int32_t channelId, int32_t channelType) = 0;
66 … MOCK_METHOD3(TransGetAndComparePid, int32_t (pid_t pid, int32_t channelId, int32_t channelType));
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/manager/include/
H A Dtrans_channel_manager.h61 int32_t TransGetAndComparePid(pid_t pid, int32_t channelId, int32_t channelType);
/ohos5.0/foundation/communication/dsoftbus/core/frame/standard/init/src/
H A Dsoftbus_server_stub.cpp665 int32_t ret = TransGetAndComparePid(callingPid, channelId, channelType); in NotifyAuthSuccessInner()
688 int32_t ret = TransGetAndComparePid(callingPid, channelId, CHANNEL_TYPE_UDP); in ReleaseResourcesInner()
733 int32_t ret = TransGetAndComparePid(callingPid, channelId, channelType); in CloseChannelInner()
813 if (TransGetAndComparePid(callingPid, channelId, channelType) != SOFTBUS_OK) { in SendMessageInner()
1231 int32_t ret = TransGetAndComparePid(callingPid, channelId, channelType); in QosReportInner()
1264 int32_t ret = TransGetAndComparePid(callingPid, channelId, channelType); in StreamStatsInner()
1297 int32_t ret = TransGetAndComparePid(callingPid, channelId, channelType); in RippleStatsInner()
/ohos5.0/foundation/communication/dsoftbus/tests/core/frame/unittest/
H A Dsoftbus_server_stub_test.cpp441 EXPECT_CALL(softbusServerStubMock, TransGetAndComparePid).WillRepeatedly(Return(SOFTBUS_OK));
474 … EXPECT_CALL(softbusServerStubMock, TransGetAndComparePid).WillRepeatedly(Return(SOFTBUS_NO_INIT));
479 EXPECT_CALL(softbusServerStubMock, TransGetAndComparePid).WillRepeatedly(Return(SOFTBUS_OK));
529 … EXPECT_CALL(softbusServerStubMock, TransGetAndComparePid).WillRepeatedly(Return(SOFTBUS_NO_INIT));
536 EXPECT_CALL(softbusServerStubMock, TransGetAndComparePid).WillRepeatedly(Return(SOFTBUS_OK));
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/manager/trans_channel_manager_test/
H A Dtrans_channel_manager_test.cpp790 int32_t ret = TransGetAndComparePid(TRANS_TEST_PID, 1, CHANNEL_TYPE_TCP_DIRECT);
792 ret = TransGetAndComparePid(TRANS_TEST_PID, 1, CHANNEL_TYPE_AUTH);
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/manager/src/
H A Dtrans_channel_manager.c672 int32_t TransGetAndComparePid(pid_t pid, int32_t channelId, int32_t channelType) in TransGetAndComparePid() function