Home
last modified time | relevance | path

Searched refs:EmulatedNetworkNode (Results 1 – 16 of 16) sorted by relevance

/external/webrtc/test/network/
Dnetwork_emulation_manager.h45 EmulatedNetworkNode* CreateEmulatedNode(
47 EmulatedNetworkNode* CreateEmulatedNode(
57 const std::vector<EmulatedNetworkNode*>& via_nodes,
61 const std::vector<EmulatedNetworkNode*>& via_nodes) override;
66 const std::vector<EmulatedNetworkNode*>& via_nodes);
74 std::vector<EmulatedNetworkNode*> send_link,
75 std::vector<EmulatedNetworkNode*> ret_link,
103 std::vector<std::unique_ptr<EmulatedNetworkNode>> network_nodes_;
Dnetwork_emulation_manager.cc60 EmulatedNetworkNode* NetworkEmulationManagerImpl::CreateEmulatedNode( in CreateEmulatedNode()
65 EmulatedNetworkNode* NetworkEmulationManagerImpl::CreateEmulatedNode( in CreateEmulatedNode()
67 auto node = std::make_unique<EmulatedNetworkNode>( in CreateEmulatedNode()
69 EmulatedNetworkNode* out = node.get(); in CreateEmulatedNode()
125 const std::vector<EmulatedNetworkNode*>& via_nodes, in CreateRoute()
133 EmulatedNetworkNode* cur_node = via_nodes[0]; in CreateRoute()
149 const std::vector<EmulatedNetworkNode*>& via_nodes) { in CreateRoute()
172 const std::vector<EmulatedNetworkNode*>& via_nodes) { in CreateTrafficRoute()
177 EmulatedNetworkNode* cur_node = via_nodes[0]; in CreateTrafficRoute()
234 std::vector<EmulatedNetworkNode*> send_link, in StartFakeTcpCrossTraffic()
[all …]
Dnetwork_emulation.h93 class EmulatedNetworkNode : public EmulatedNetworkReceiverInterface {
100 EmulatedNetworkNode(
104 ~EmulatedNetworkNode() override;
105 RTC_DISALLOW_COPY_AND_ASSIGN(EmulatedNetworkNode);
115 std::vector<EmulatedNetworkNode*> nodes,
118 std::vector<EmulatedNetworkNode*> nodes);
194 std::vector<EmulatedNetworkNode*> via_nodes, in EmulatedRoute()
199 std::vector<EmulatedNetworkNode*> via_nodes;
Dnetwork_emulation.cc140 EmulatedNetworkNode::EmulatedNetworkNode( in EmulatedNetworkNode() function in webrtc::EmulatedNetworkNode
147 void EmulatedNetworkNode::OnPacketReceived(EmulatedIpPacket packet) { in OnPacketReceived()
151 void EmulatedNetworkNode::CreateRoute( in CreateRoute()
153 std::vector<EmulatedNetworkNode*> nodes, in CreateRoute()
161 void EmulatedNetworkNode::ClearRoute(const rtc::IPAddress& receiver_ip, in ClearRoute()
162 std::vector<EmulatedNetworkNode*> nodes) { in ClearRoute()
163 for (EmulatedNetworkNode* node : nodes) in ClearRoute()
167 EmulatedNetworkNode::~EmulatedNetworkNode() = default;
Dnetwork_emulation_unittest.cc151 EmulatedNetworkNode* CreateEmulatedNodeWithDefaultBuiltInConfig( in CreateEmulatedNodeWithDefaultBuiltInConfig()
190 EmulatedNetworkNode* alice_node = network_manager.CreateEmulatedNode( in TEST()
192 EmulatedNetworkNode* bob_node = network_manager.CreateEmulatedNode( in TEST()
313 EmulatedNetworkNode* alice_node = network_manager.CreateEmulatedNode( in TEST()
315 EmulatedNetworkNode* bob_node = network_manager.CreateEmulatedNode( in TEST()
Dnetwork_emulation_pc_unittest.cc104 EmulatedNetworkNode* alice_node = emulation.CreateEmulatedNode( in TEST()
106 EmulatedNetworkNode* bob_node = emulation.CreateEmulatedNode( in TEST()
/external/webrtc/test/scenario/
Dscenario.h54 EmulatedNetworkNode* CreateSimulationNode(NetworkSimulationConfig config);
55 EmulatedNetworkNode* CreateSimulationNode(
68 std::vector<EmulatedNetworkNode*> send_link,
70 std::vector<EmulatedNetworkNode*> return_link);
73 std::vector<EmulatedNetworkNode*> send_link,
76 std::vector<EmulatedNetworkNode*> return_link,
80 std::vector<EmulatedNetworkNode*> over_nodes);
83 std::vector<EmulatedNetworkNode*> over_nodes,
115 void NetworkDelayedAction(std::vector<EmulatedNetworkNode*> over_nodes,
133 void TriggerPacketBurst(std::vector<EmulatedNetworkNode*> over_nodes,
Dscenario.cc130 std::vector<EmulatedNetworkNode*> send_link, in CreateRoutes()
132 std::vector<EmulatedNetworkNode*> return_link) { in CreateRoutes()
140 std::vector<EmulatedNetworkNode*> send_link, in CreateRoutes()
143 std::vector<EmulatedNetworkNode*> return_link, in CreateRoutes()
153 std::vector<EmulatedNetworkNode*> over_nodes) { in ChangeRoute()
158 std::vector<EmulatedNetworkNode*> over_nodes, in ChangeRoute()
166 EmulatedNetworkNode* Scenario::CreateSimulationNode( in CreateSimulationNode()
173 EmulatedNetworkNode* Scenario::CreateSimulationNode( in CreateSimulationNode()
198 void Scenario::TriggerPacketBurst(std::vector<EmulatedNetworkNode*> over_nodes, in TriggerPacketBurst()
206 std::vector<EmulatedNetworkNode*> over_nodes, in NetworkDelayedAction()
Dnetwork_node.h38 EmulatedNetworkNode* network_node);
45 EmulatedNetworkNode* node() { return network_node_; } in node()
50 EmulatedNetworkNode* const network_node_;
Dnetwork_node.cc41 EmulatedNetworkNode* network_node) in SimulationNode()
/external/webrtc/api/test/
Dnetwork_emulation_manager.h39 class EmulatedNetworkNode; variable
86 EmulatedNetworkNode* node;
115 virtual EmulatedNetworkNode* CreateEmulatedNode(
117 virtual EmulatedNetworkNode* CreateEmulatedNode(
154 const std::vector<EmulatedNetworkNode*>& via_nodes,
161 const std::vector<EmulatedNetworkNode*>& via_nodes) = 0;
/external/webrtc/test/peer_scenario/
Dpeer_scenario.h69 std::vector<EmulatedNetworkNode*> send_link,
70 std::vector<EmulatedNetworkNode*> ret_link);
78 std::vector<EmulatedNetworkNode*> send_link,
79 std::vector<EmulatedNetworkNode*> ret_link);
Dpeer_scenario.cc78 std::vector<EmulatedNetworkNode*> send_link, in ConnectSignaling()
79 std::vector<EmulatedNetworkNode*> ret_link) { in ConnectSignaling()
87 std::vector<EmulatedNetworkNode*> send_link, in SimpleConnection()
88 std::vector<EmulatedNetworkNode*> ret_link) { in SimpleConnection()
/external/webrtc/test/pc/e2e/
Dpeer_connection_e2e_smoke_test.cc60 EmulatedNetworkNode* alice_node = in RunTest()
63 EmulatedNetworkNode* bob_node = in RunTest()
/external/webrtc/modules/congestion_controller/goog_cc/
Dgoog_cc_network_control_unittest.cc65 std::vector<EmulatedNetworkNode*> send_link, in CreateVideoSendingClient()
66 std::vector<EmulatedNetworkNode*> return_link) { in CreateVideoSendingClient()
/external/webrtc/video/
Dpc_full_stack_tests.cc55 EmulatedNetworkNode* CreateEmulatedNodeWithConfig( in CreateEmulatedNodeWithConfig()