Home
last modified time | relevance | path

Searched refs:VerifyP2pPackError (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/tcp_direct/unittest/
H A Dtrans_tcp_direct_json_test.cpp67 char *ret = VerifyP2pPackError(code, errCode, NULL);
71 ret = VerifyP2pPackError(code, errCode, errDesc);
H A Dtrans_core_tcp_direct_test.cpp363 char* ret = VerifyP2pPackError(code, errCode, "OnVerifyP2pRequest unpack fail");
366 ret = VerifyP2pPackError(code, errCode, nullptr);
H A Dtrans_tcp_direct_p2p_mock_test.cpp410 EXPECT_CALL(TcpP2pDirectMock, VerifyP2pPackError).WillOnce(Return(data));
420 EXPECT_CALL(TcpP2pDirectMock, VerifyP2pPackError).WillOnce(Return(testData));
479 EXPECT_CALL(TcpP2pDirectMock, VerifyP2pPackError).WillOnce(Return(data));
/ohos5.0/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/tcp_direct/unittest/mock/
H A Dtrans_tcp_direct_p2p_test_mock.cpp104 char *VerifyP2pPackError(int32_t code, int32_t errCode, const char *errDesc) in VerifyP2pPackError() function
106 return GetTransTcpDirectP2pInterface()->VerifyP2pPackError(code, errCode, errDesc); in VerifyP2pPackError()
H A Dtrans_tcp_direct_p2p_test_mock.h47 virtual char *VerifyP2pPackError(int32_t code, int32_t errCode, const char *errDesc) = 0;
80 MOCK_METHOD3(VerifyP2pPackError, char *(int32_t code, int32_t errCode, const char *errDesc));
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/tcp_direct/include/
H A Dtrans_tcp_direct_json.h29 char *VerifyP2pPackError(int32_t code, int32_t errCode, const char *errDesc);
/ohos5.0/foundation/communication/dsoftbus/core/transmission/trans_channel/tcp_direct/src/
H A Dtrans_tcp_direct_json.c31 char *VerifyP2pPackError(int32_t code, int32_t errCode, const char *errDesc) in VerifyP2pPackError() function
H A Dtrans_tcp_direct_p2p.c510 char *reply = VerifyP2pPackError(code, errCode, errDesc); in SendVerifyP2pFailRsp()