/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/qos/ |
H A D | trans_qos_stat_server_test.cpp | 75 static void OnQosEvent(int32_t sessionId, int32_t eventId, int32_t tvCount, const QosTv *tvList) in OnQosEvent() function 98 .OnQosEvent = OnQosEvent, 107 .OnQosEvent = NULL,
|
/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/manager/trans_channel_callback_test/ |
H A D | trans_channel_callback_test.cpp | 149 int32_t ret = TransServerGetChannelCb()->OnQosEvent(NULL, param); in HWTEST_F() 151 ret = TransServerGetChannelCb()->OnQosEvent(pkgName, NULL); in HWTEST_F() 154 ret = TransServerGetChannelCb()->OnQosEvent(pkgName, param); in HWTEST_F() 159 ret = TransServerGetChannelCb()->OnQosEvent(pkgName, param); in HWTEST_F() 164 ret = TransServerGetChannelCb()->OnQosEvent(pkgName, param); in HWTEST_F()
|
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/src/ |
H A D | client_trans_stream.c | 88 static void OnQosEvent(int channelId, int eventId, int tvCount, const QosTv *tvList) in OnQosEvent() function 90 if ((g_udpChannelMgrCb == NULL) || (g_udpChannelMgrCb->OnQosEvent == NULL)) { in OnQosEvent() 93 g_udpChannelMgrCb->OnQosEvent(channelId, eventId, tvCount, tvList); in OnQosEvent() 119 .OnQosEvent = OnQosEvent,
|
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/ |
H A D | stream_manager.h | 58 void OnQosEvent(int32_t eventId, int32_t tvCount, const QosTv *tvList) const override 60 listener_->OnQosEvent(eventId, tvCount, tvList);
|
H A D | i_stream_socket.h | 41 virtual void OnQosEvent(int32_t eventId, int32_t tvCount, const QosTv *tvList) const = 0;
|
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/adaptor/include/ |
H A D | stream_adaptor_listener.h | 93 void OnQosEvent(int32_t eventId, int32_t tvCount, const QosTv *tvList) override 95 if (adaptor_->GetListenerCallback() != nullptr && adaptor_->GetListenerCallback()->OnQosEvent != nullptr) { 97 adaptor_->GetListenerCallback()->OnQosEvent(adaptor_->GetChannelId(), eventId, tvCount, tvList);
|
H A D | client_trans_udp_stream_interface.h | 49 void (*OnQosEvent)(int32_t channelId, int32_t eventId, int32_t tvCount, const QosTv *tvList); member
|
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/manager/ |
H A D | client_trans_channel_manager_test.cpp | 70 static int32_t OnQosEvent(int32_t channelId, int32_t channelType, int32_t eventId, in OnQosEvent() function 82 .OnQosEvent = OnQosEvent,
|
H A D | client_trans_channel_callback_test.cpp | 63 static int32_t OnQosEvent(int32_t channelId, int32_t channelType, int32_t eventId, in OnQosEvent() function 82 .OnQosEvent = OnQosEvent,
|
/foundation/communication/dsoftbus/core/transmission/trans_channel/manager/include/ |
H A D | trans_channel_callback.h | 39 int32_t (*OnQosEvent)(const char *pkgName, const QosParam *param); member
|
/foundation/communication/dsoftbus/sdk/transmission/session/include/ |
H A D | client_trans_session_callback.h | 35 int32_t (*OnQosEvent)(int32_t channelId, int32_t channelType, int32_t eventId, member
|
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/common/src/ |
H A D | client_trans_udp_manager.c | 468 if (g_sessionCb->OnQosEvent != NULL) { in TransOnUdpChannelQosEvent() 469 g_sessionCb->OnQosEvent(channelId, CHANNEL_TYPE_UDP, eventId, tvCount, tvList); in TransOnUdpChannelQosEvent() 551 static void OnQosEvent(int channelId, int eventId, int tvCount, const QosTv *tvList) in OnQosEvent() function 553 if ((g_sessionCb == NULL) || (g_sessionCb->OnQosEvent == NULL)) { in OnQosEvent() 556 g_sessionCb->OnQosEvent(channelId, CHANNEL_TYPE_UDP, eventId, tvCount, tvList); in OnQosEvent() 608 .OnQosEvent = OnQosEvent,
|
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/udp/stream/ |
H A D | client_trans_stream_test.cpp | 106 * @tc.desc: OnQosEvent error. 119 OnQosEvent(channelId, eventId, tvCount, tvList); in HWTEST_F() 124 OnQosEvent(channelId, eventId, tvCount, tvList); in HWTEST_F()
|
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/stream/libsoftbus_stream/include/ |
H A D | i_stream_manager.h | 35 virtual void OnQosEvent(int32_t eventId, int32_t tvCount, const QosTv *tvList) = 0;
|
/foundation/communication/dsoftbus/tests/sdk/transmission/session/ |
H A D | client_trans_session_callback_test.cpp | 125 static void OnQosEvent(int32_t sessionId, int32_t eventId, int32_t tvCount, const QosTv *tvList) in OnQosEvent() function 135 .OnQosEvent = OnQosEvent, 580 .OnQosEvent = NULL, in HWTEST_F() 613 .OnQosEvent = OnQosEvent, in HWTEST_F()
|
H A D | client_trans_message_service_test.cpp | 128 static void OnQosEvent(int32_t sessionId, int32_t eventId, int32_t tvCount, const QosTv *tvList) in OnQosEvent() function 139 .OnQosEvent = OnQosEvent,
|
H A D | client_trans_session_test.cpp | 136 static void OnQosEvent(int32_t sessionId, int32_t eventId, int32_t tvCount, const QosTv *tvList) in OnQosEvent() function 187 .OnQosEvent = OnQosEvent, 331 .OnQosEvent = OnQosEvent, in HWTEST_F()
|
/foundation/communication/dsoftbus/sdk/transmission/trans_channel/udp/common/include/ |
H A D | client_trans_udp_manager.h | 36 void (*OnQosEvent)(int channelId, int eventId, int tvCount, const QosTv *tvList); member
|
/foundation/communication/dsoftbus/tests/sdk/transmission/integration_test/ |
H A D | file_test.cpp | 90 .OnQosEvent = EsOnQosEvent}; in SetUpTestCase()
|
H A D | test_server.cpp | 87 .OnQosEvent = EsOnQosEvent}; in ExecTestSuite()
|
/foundation/communication/dsoftbus/tests/sdk/transmission/trans_channel/udp/common/ |
H A D | client_trans_udp_manager_static_test.cpp | 127 OnQosEvent(TEST_CHANNELID, TEST_EVENT_ID, TEST_COUNT, &tvList); in HWTEST_F() 180 OnQosEvent(TEST_CHANNELID, TEST_EVENT_ID, TEST_COUNT, &tvList); in HWTEST_F()
|
/foundation/communication/dsoftbus/interfaces/kits/transport/ |
H A D | session.h | 361 void (*OnQosEvent)(int sessionId, int eventId, int tvCount, const QosTv *tvList); member
|
/foundation/communication/dsoftbus/sdk/transmission/session/src/ |
H A D | client_trans_session_callback.c | 562 if (listener.OnQosEvent == NULL) { in TransOnQosEvent() 563 TRANS_LOGE(TRANS_QOS, "listener OnQosEvent is NULL, channelId=%{public}d, sessionId=%{public}d", in TransOnQosEvent() 567 listener.OnQosEvent(sessionId, eventId, tvCount, tvList); in TransOnQosEvent() 634 g_sessionCb.OnQosEvent = TransOnQosEvent; in GetClientSessionCb()
|
/foundation/communication/dsoftbus/tests/core/transmission/trans_channel/tcp_direct/unittest/ |
H A D | trans_tcp_direct_callback_test.cpp | 91 g_channelCallBack.OnQosEvent = TransServerOnQosEvent; in TransTcpDirectCallbackTest()
|
/foundation/communication/dsoftbus/tests/sdk/transmission/fuzztest/clienttranstcpdirectlistener_fuzzer/ |
H A D | clienttranstcpdirectlistener_fuzzer.cpp | 174 cb->OnQosEvent = NULL; in ClientFillSessionCallBack()
|