Home
last modified time | relevance | path

Searched refs:EmulatedEndpoint (Results 1 – 18 of 18) sorted by relevance

/external/webrtc/test/network/
Dnetwork_emulation_manager.h52 EmulatedEndpoint* CreateEndpoint(EmulatedEndpointConfig config) override;
53 void EnableEndpoint(EmulatedEndpoint* endpoint) override;
54 void DisableEndpoint(EmulatedEndpoint* endpoint) override;
56 EmulatedRoute* CreateRoute(EmulatedEndpoint* from,
58 EmulatedEndpoint* to) override;
84 const std::vector<EmulatedEndpoint*>& endpoints) override;
102 std::vector<std::unique_ptr<EmulatedEndpoint>> endpoints_;
113 std::map<EmulatedEndpoint*, EmulatedNetworkManager*>
Dnetwork_emulation_unittest.cc88 std::function<void(EmulatedEndpoint*, in SetupRouting() argument
89 EmulatedEndpoint*, in SetupRouting()
90 EmulatedEndpoint*, in SetupRouting()
146 EmulatedEndpoint* e1_;
147 EmulatedEndpoint* e2_;
148 EmulatedEndpoint* e3_;
167 EmulatedEndpoint* endpoint = network_manager.CreateEndpoint(config); in TEST()
180 EmulatedEndpoint* endpoint = network_manager.CreateEndpoint(config); in TEST()
194 EmulatedEndpoint* alice_endpoint = in TEST()
196 EmulatedEndpoint* bob_endpoint = in TEST()
[all …]
Dnetwork_emulation_manager.cc81 EmulatedEndpoint* NetworkEmulationManagerImpl::CreateEndpoint( in CreateEndpoint()
103 EmulatedEndpoint* out = node.get(); in CreateEndpoint()
108 void NetworkEmulationManagerImpl::EnableEndpoint(EmulatedEndpoint* endpoint) { in EnableEndpoint()
115 void NetworkEmulationManagerImpl::DisableEndpoint(EmulatedEndpoint* endpoint) { in DisableEndpoint()
124 EmulatedEndpoint* from, in CreateRoute()
126 EmulatedEndpoint* to) { in CreateRoute()
150 EmulatedEndpoint* from = CreateEndpoint(EmulatedEndpointConfig()); in CreateRoute()
151 EmulatedEndpoint* to = CreateEndpoint(EmulatedEndpointConfig()); in CreateRoute()
174 EmulatedEndpoint* endpoint = CreateEndpoint(EmulatedEndpointConfig()); in CreateTrafficRoute()
272 const std::vector<EmulatedEndpoint*>& endpoints) { in CreateEmulatedNetworkManagerInterface()
[all …]
Dtraffic_route.cc32 ActionReceiver(std::function<void()> action, EmulatedEndpoint* endpoint) in ActionReceiver()
50 EmulatedEndpoint* endpoint_;
58 EmulatedEndpoint* endpoint) in TrafficRoute()
Dtraffic_route.h30 EmulatedEndpoint* endpoint);
45 EmulatedEndpoint* const endpoint_;
Dnetwork_emulation_pc_unittest.cc108 EmulatedEndpoint* alice_endpoint = in TEST()
110 EmulatedEndpoint* bob_endpoint = in TEST()
Dnetwork_emulation.h129 class EmulatedEndpointImpl : public EmulatedEndpoint {
/external/webrtc/api/test/
Dnetwork_emulation_manager.h124 virtual EmulatedEndpoint* CreateEndpoint(EmulatedEndpointConfig config) = 0;
127 virtual void EnableEndpoint(EmulatedEndpoint* endpoint) = 0;
130 virtual void DisableEndpoint(EmulatedEndpoint* endpoint) = 0;
153 EmulatedEndpoint* from,
155 EmulatedEndpoint* to) = 0;
182 const std::vector<EmulatedEndpoint*>& endpoints) = 0;
/external/webrtc/test/scenario/
Dnetwork_node.h63 void Connect(EmulatedEndpoint* endpoint,
77 EmulatedEndpoint* endpoint_ RTC_GUARDED_BY(mutex_) = nullptr;
Dcall_client.h137 int16_t Bind(EmulatedEndpoint* endpoint);
149 std::vector<std::pair<EmulatedEndpoint*, uint16_t>> endpoints_;
Dnetwork_node.cc108 void NetworkNodeTransport::Connect(EmulatedEndpoint* endpoint, in Connect()
Dcall_client.cc328 int16_t CallClient::Bind(EmulatedEndpoint* endpoint) { in Bind()
/external/webrtc/test/peer_scenario/
Dpeer_scenario_client.cc38 std::map<int, EmulatedEndpoint*> CreateEndpoints( in CreateEndpoints()
41 std::map<int, EmulatedEndpoint*> endpoints; in CreateEndpoints()
187 std::vector<EmulatedEndpoint*> endpoints_vector; in PeerScenarioClient()
247 EmulatedEndpoint* PeerScenarioClient::endpoint(int index) { in endpoint()
Dpeer_scenario_client.h128 EmulatedEndpoint* endpoint(int index = 0);
153 const std::map<int, EmulatedEndpoint*> endpoints_;
Dscenario_connection.h56 virtual EmulatedEndpoint* endpoint() = 0;
Dscenario_connection.cc36 EmulatedEndpoint* endpoint() override { return endpoint_; } in endpoint()
54 EmulatedEndpoint* const endpoint_;
/external/webrtc/api/test/network_emulation/
Dnetwork_emulation_interfaces.h194 class EmulatedEndpoint : public EmulatedNetworkReceiverInterface {
228 EmulatedEndpoint() = default;
/external/webrtc/test/pc/e2e/
Dpeer_connection_e2e_smoke_test.cc68 EmulatedEndpoint* bob_endpoint = in RunTest()