Home
last modified time | relevance | path

Searched refs:TransSrvAddDataBufNode (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/tcp_direct/unittest/mock/
H A Dtrans_tcp_direct_wifi_test_mock.cpp59 int32_t TransSrvAddDataBufNode(int32_t channelId, int32_t fd) in TransSrvAddDataBufNode() function
61 return GetTransTcpDirectWifiInterface()->TransSrvAddDataBufNode(channelId, fd); in TransSrvAddDataBufNode()
H A Dtrans_tcp_direct_wifi_test_mock.h35 virtual int32_t TransSrvAddDataBufNode(int32_t channelId, int32_t fd) = 0;
50 MOCK_METHOD2(TransSrvAddDataBufNode, int32_t (int32_t channelId, int32_t fd));
H A Dtrans_tcp_direct_p2p_test_mock.cpp125 int32_t TransSrvAddDataBufNode(int32_t channelId, int32_t fd) in TransSrvAddDataBufNode() function
127 return GetTransTcpDirectP2pInterface()->TransSrvAddDataBufNode(channelId, fd); in TransSrvAddDataBufNode()
H A Dtrans_tcp_direct_p2p_test_mock.h52 virtual int32_t TransSrvAddDataBufNode(int32_t channelId, int32_t fd) = 0;
85 MOCK_METHOD2(TransSrvAddDataBufNode, int32_t (int32_t channelId, int32_t fd));
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/tcp_direct/include/
H A Dtrans_tcp_direct_message.h34 int32_t TransSrvAddDataBufNode(int32_t channelId, int32_t fd);
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/tcp_direct/unittest/
H A Dtrans_core_tcp_direct_test.cpp281 ret = TransSrvAddDataBufNode(channeId, fd);
302 ret = TransSrvAddDataBufNode(channeId, fd);
512 ret = TransSrvAddDataBufNode(channelId, fd);
H A Dtrans_tcp_direct_message_append_test.cpp230 int32_t ret = TransSrvAddDataBufNode(channelId, fd);
415 ret = TransSrvAddDataBufNode(channelId, fd);
476 int32_t ret = TransSrvAddDataBufNode(channelId, fd);
498 int32_t ret = TransSrvAddDataBufNode(channelId, fd);
521 int32_t ret = TransSrvAddDataBufNode(channelId, fd);
544 int32_t ret = TransSrvAddDataBufNode(channelId, fd);
H A Dtrans_tcp_direct_wifi_test.cpp291 EXPECT_CALL(TcpWifiMock, TransSrvAddDataBufNode).WillRepeatedly(Return(SOFTBUS_NO_INIT));
H A Dtrans_tcp_direct_p2p_mock_test.cpp591 EXPECT_CALL(TcpP2pDirectMock, TransSrvAddDataBufNode).WillOnce(Return(SOFTBUS_NO_INIT));
628 EXPECT_CALL(TcpP2pDirectMock, TransSrvAddDataBufNode).WillRepeatedly(Return(SOFTBUS_OK));
H A Dtrans_server_tcp_direct_test.cpp497 int32_t ret = TransSrvAddDataBufNode(channelId, fd);
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/tcp_direct/src/
H A Dtrans_tcp_direct_wifi.c44 if (TransSrvAddDataBufNode(newchannelId, fd) != SOFTBUS_OK) { in AddTcpConnAndSessionInfo()
H A Dtrans_tcp_direct_listener.c235 ret = TransSrvAddDataBufNode(channelId, cfd); // fd != channelId in TdcOnConnectEvent()
H A Dtrans_tcp_direct_p2p.c779 if (TransSrvAddDataBufNode(channelId, fd) != SOFTBUS_OK) { in OnVerifyP2pReply()
H A Dtrans_tcp_direct_message.c135 int32_t TransSrvAddDataBufNode(int32_t channelId, int32_t fd) in TransSrvAddDataBufNode() function