Searched refs:EmulatedEndpoint (Results 1 – 18 of 18) sorted by relevance
/external/webrtc/test/network/ |
D | network_emulation_manager.h | 52 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*>
|
D | network_emulation_unittest.cc | 88 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 …]
|
D | network_emulation_manager.cc | 81 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 …]
|
D | traffic_route.cc | 32 ActionReceiver(std::function<void()> action, EmulatedEndpoint* endpoint) in ActionReceiver() 50 EmulatedEndpoint* endpoint_; 58 EmulatedEndpoint* endpoint) in TrafficRoute()
|
D | traffic_route.h | 30 EmulatedEndpoint* endpoint); 45 EmulatedEndpoint* const endpoint_;
|
D | network_emulation_pc_unittest.cc | 108 EmulatedEndpoint* alice_endpoint = in TEST() 110 EmulatedEndpoint* bob_endpoint = in TEST()
|
D | network_emulation.h | 129 class EmulatedEndpointImpl : public EmulatedEndpoint {
|
/external/webrtc/api/test/ |
D | network_emulation_manager.h | 124 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/ |
D | network_node.h | 63 void Connect(EmulatedEndpoint* endpoint, 77 EmulatedEndpoint* endpoint_ RTC_GUARDED_BY(mutex_) = nullptr;
|
D | call_client.h | 137 int16_t Bind(EmulatedEndpoint* endpoint); 149 std::vector<std::pair<EmulatedEndpoint*, uint16_t>> endpoints_;
|
D | network_node.cc | 108 void NetworkNodeTransport::Connect(EmulatedEndpoint* endpoint, in Connect()
|
D | call_client.cc | 328 int16_t CallClient::Bind(EmulatedEndpoint* endpoint) { in Bind()
|
/external/webrtc/test/peer_scenario/ |
D | peer_scenario_client.cc | 38 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()
|
D | peer_scenario_client.h | 128 EmulatedEndpoint* endpoint(int index = 0); 153 const std::map<int, EmulatedEndpoint*> endpoints_;
|
D | scenario_connection.h | 56 virtual EmulatedEndpoint* endpoint() = 0;
|
D | scenario_connection.cc | 36 EmulatedEndpoint* endpoint() override { return endpoint_; } in endpoint() 54 EmulatedEndpoint* const endpoint_;
|
/external/webrtc/api/test/network_emulation/ |
D | network_emulation_interfaces.h | 194 class EmulatedEndpoint : public EmulatedNetworkReceiverInterface { 228 EmulatedEndpoint() = default;
|
/external/webrtc/test/pc/e2e/ |
D | peer_connection_e2e_smoke_test.cc | 68 EmulatedEndpoint* bob_endpoint = in RunTest()
|