Home
last modified time | relevance | path

Searched refs:tvList (Results 1 - 25 of 49) sorted by relevance

12

/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/qos/
H A Dtrans_qos_stat_server_test.cpp75 static void OnQosEvent(int32_t sessionId, int32_t eventId, int32_t tvCount, const QosTv *tvList) in OnQosEvent() argument
78 printf("pktNum:%u\n", tvList->info.appStatistics.pktNum); in OnQosEvent()
79 printf("periodRecvPkts:%u\n", tvList->info.appStatistics.periodRecvPkts); in OnQosEvent()
80 printf("periodRecvPktLoss:%u\n", tvList->info.appStatistics.periodRecvPktLoss); in OnQosEvent()
81 printf("periodRecvRate:%u\n", tvList->info.appStatistics.periodRecvRate); in OnQosEvent()
82 printf("periodRecvRateBps:%" PRIu64 "\n", tvList->info.appStatistics.periodRecvRateBps); in OnQosEvent()
83 printf("periodRtt:%u\n", tvList->info.appStatistics.periodRtt); in OnQosEvent()
84 printf("periodRecvPktLossHighPrecision:%u\n", tvList->info.appStatistics.periodRecvPktLossHighPrecision); in OnQosEvent()
85 printf("periodSendLostPkts:%u\n", tvList->info.appStatistics.periodSendLostPkts); in OnQosEvent()
86 printf("periodSendPkts:%u\n", tvList in OnQosEvent()
[all...]
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/udp/stream/
H A Dclient_trans_stream_test.cpp112 QosTv *tvList = (QosTv*)SoftBusMalloc(sizeof(QosTv)); in HWTEST_F() local
113 ASSERT_TRUE(tvList != nullptr); in HWTEST_F()
114 (void)memset_s(tvList, sizeof(QosTv), 0, sizeof(QosTv)); in HWTEST_F()
119 OnQosEvent(channelId, eventId, tvCount, tvList); in HWTEST_F()
124 OnQosEvent(channelId, eventId, tvCount, tvList); in HWTEST_F()
127 if (tvList != nullptr) { in HWTEST_F()
128 SoftBusFree(tvList); in HWTEST_F()
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/common/src/
H A Dclient_trans_udp_virtual.c89 int32_t TransOnUdpChannelQosEvent(int32_t channelId, int32_t eventId, int32_t tvCount, const QosTv *tvList) in TransOnUdpChannelQosEvent() argument
94 (void)tvList; in TransOnUdpChannelQosEvent()
/foundation/communication/dsoftbus/tests/sdk/transmission/fuzztest/clienttranschannelcallback_fuzzer/
H A Dclienttranschannelcallback_fuzzer.cpp86 QosTv tvList = {}; in ClientTransChannelCallbackTest() local
100 TransOnChannelQosEvent(channelId, channelType, eventId, tvCount, &tvList); in ClientTransChannelCallbackTest()
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/manager/src/
H A Dclient_trans_channel_callback.c166 int32_t tvCount, const QosTv *tvList) in TransOnChannelQosEvent()
168 if (tvList == NULL) { in TransOnChannelQosEvent()
177 return TransOnUdpChannelQosEvent(channelId, eventId, tvCount, tvList); in TransOnChannelQosEvent()
165 TransOnChannelQosEvent(int32_t channelId, int32_t channelType, int32_t eventId, int32_t tvCount, const QosTv *tvList) TransOnChannelQosEvent() argument
/foundation/communication/dsoftbus/tests/sdk/transmission/integration_test/
H A Dtest_suite.h36 inline void EsOnQosEvent(int32_t sessionId, int32_t eventId, int32_t tvCount, const QosTv *tvList) in EsOnQosEvent() argument
/foundation/communication/dsoftbus/tests/sdk/transmission/session/
H A Dclient_trans_session_callback_test.cpp125 static void OnQosEvent(int32_t sessionId, int32_t eventId, int32_t tvCount, const QosTv *tvList) in OnQosEvent() argument
542 QosTv *tvList = (QosTv*)SoftBusCalloc(sizeof(QosTv)); in HWTEST_F() local
543 ASSERT_TRUE(tvList != NULL); in HWTEST_F()
545 TRANS_TEST_TV_COUNT, tvList); in HWTEST_F()
556 ret = TransOnQosEvent(TRANS_TEST_CHANNEL_ID, CHANNEL_TYPE_BUTT, TRANS_TEST_EVENT_ID, TRANS_TEST_TV_COUNT, tvList); in HWTEST_F()
561 SoftBusFree(tvList); in HWTEST_F()
572 QosTv *tvList = (QosTv*)SoftBusCalloc(sizeof(QosTv)); in HWTEST_F() local
573 ASSERT_TRUE(tvList != NULL); in HWTEST_F()
591 ret = TransOnQosEvent(TRANS_TEST_CHANNEL_ID, CHANNEL_TYPE_BUTT, TRANS_TEST_EVENT_ID, TRANS_TEST_TV_COUNT, tvList); in HWTEST_F()
596 SoftBusFree(tvList); in HWTEST_F()
[all...]
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/common/include/
H A Dclient_trans_udp_manager.h36 void (*OnQosEvent)(int channelId, int eventId, int tvCount, const QosTv *tvList);
71 int32_t TransOnUdpChannelQosEvent(int32_t channelId, int32_t eventId, int32_t tvCount, const QosTv *tvList);
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/
H A Dstream_manager.h58 void OnQosEvent(int32_t eventId, int32_t tvCount, const QosTv *tvList) const override
60 listener_->OnQosEvent(eventId, tvCount, tvList);
/foundation/communication/dsoftbus/tests/sdk/transmission/fuzztest/clienttransudpmanager_fuzzer/
H A Dclienttransudpmanager_fuzzer.cpp60 QosTv tvList; in TransOnUdpChannelQosEventTest() local
61 TransOnUdpChannelQosEvent((int32_t)size, (int32_t)size, (int32_t)size, &tvList); in TransOnUdpChannelQosEventTest()
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/adaptor/include/
H A Dstream_adaptor_listener.h43 outFrameInfo->tvList = nullptr; in ConvertStreamFrameInfo()
93 void OnQosEvent(int32_t eventId, int32_t tvCount, const QosTv *tvList) override
97 adaptor_->GetListenerCallback()->OnQosEvent(adaptor_->GetChannelId(), eventId, tvCount, tvList);
H A Dclient_trans_udp_stream_interface.h49 void (*OnQosEvent)(int32_t channelId, int32_t eventId, int32_t tvCount, const QosTv *tvList);
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/udp/common/
H A Dclient_trans_udp_manager_static_test.cpp119 QosTv tvList; in HWTEST_F() local
127 OnQosEvent(TEST_CHANNELID, TEST_EVENT_ID, TEST_COUNT, &tvList); in HWTEST_F()
155 QosTv tvList; in HWTEST_F() local
180 OnQosEvent(TEST_CHANNELID, TEST_EVENT_ID, TEST_COUNT, &tvList); in HWTEST_F()
H A Dclient_trans_udp_manager_test.cpp193 QosTv tvList; in HWTEST_F() local
198 ret = TransOnUdpChannelQosEvent(TEST_CHANNELID, TEST_EVENT_ID, TEST_COUNT, &tvList); in HWTEST_F()
279 QosTv tvList; in HWTEST_F() local
280 ret = TransOnUdpChannelQosEvent(TEST_CHANNELID, TEST_EVENT_ID, TEST_COUNT, &tvList); in HWTEST_F()
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/manager/
H A Dclient_trans_channel_callback_test.cpp64 int32_t tvCount, const QosTv *tvList) in OnQosEvent()
279 const QosTv tvList = { in HWTEST_F() local
286 ret = TransOnChannelQosEvent(channelId, CHANNEL_TYPE_UDP, eventId, tvCount, &tvList); in HWTEST_F()
289 ret = TransOnChannelQosEvent(channelId, CHANNEL_TYPE_BUTT, eventId, tvCount, &tvList); in HWTEST_F()
63 OnQosEvent(int32_t channelId, int32_t channelType, int32_t eventId, int32_t tvCount, const QosTv *tvList) OnQosEvent() argument
/foundation/communication/dsoftbus/core/transmission/trans_channel/udp_negotiation/include/
H A Dtrans_udp_negotiation.h36 int32_t NotifyUdpQosEvent(const AppInfo *info, int32_t eventId, int32_t tvCount, const QosTv *tvList);
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/manager/include/
H A Dclient_trans_channel_callback.h38 int32_t tvCount, const QosTv *tvList);
/foundation/communication/dsoftbus/core/transmission/common/include/
H A Dsoftbus_trans_def.h53 const QosTv *tvList; member
/foundation/communication/dsoftbus/sdk/transmission/session/include/
H A Dclient_trans_session_callback.h36 int32_t tvCount, const QosTv *tvList);
/foundation/distributedhardware/distributed_camera/services/channel/test/unittest/common/channel/
H A Dtrans_type.h186 TV *tvList; /**< Pointer to the TV list. */ member
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/src/
H A Dclient_trans_stream.c88 static void OnQosEvent(int channelId, int eventId, int tvCount, const QosTv *tvList) in OnQosEvent() argument
93 g_udpChannelMgrCb->OnQosEvent(channelId, eventId, tvCount, tvList); in OnQosEvent()
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/include/
H A Di_stream_manager.h35 virtual void OnQosEvent(int32_t eventId, int32_t tvCount, const QosTv *tvList) = 0;
/foundation/communication/dsoftbus/tests/core/transmission/ipc/
H A Dtrans_client_proxy_test.cpp289 QosTv tvList; in HWTEST_F() local
294 param.tvList = &tvList; in HWTEST_F()
/foundation/communication/dsoftbus/sdk/frame/standard/src/
H A Dsoftbus_client_stub.cpp145 int32_t tvCount, const QosTv *tvList) in OnChannelQosEvent()
147 return TransOnChannelQosEvent(channelId, channelType, eventId, tvCount, tvList); in OnChannelQosEvent()
323 QosTv *tvList = (QosTv *)data.ReadRawData(sizeof(QosTv) * tvCount); in OnChannelQosEventInner() local
325 tvList != nullptr, SOFTBUS_TRANS_PROXY_READRAWDATA_FAILED, COMM_SDK, "read tv list failed!"); in OnChannelQosEventInner()
327 int ret = OnChannelQosEvent(channelId, channelType, eventId, tvCount, tvList); in OnChannelQosEventInner()
144 OnChannelQosEvent(int32_t channelId, int32_t channelType, int32_t eventId, int32_t tvCount, const QosTv *tvList) OnChannelQosEvent() argument
/foundation/CastEngine/castengine_cast_plus_stream/src/channel/src/softbus/
H A Dsoftbus_connection.h62 static void OnConnectionSessionEvent(int sessionId, int eventId, int tvCount, const QosTv *tvList);

Completed in 12 milliseconds

12