HomeSort by relevance Sort by last modified time
    Searched refs:routing_mode (Results 1 - 11 of 11) sorted by null

  /system/extras/tests/net_test/
multinetwork_test.py 94 def CheckPingPacket(self, version, netid, routing_mode, dstaddr, packet):
95 s = self.BuildSocket(version, net_test.PingSocket, netid, routing_mode)
110 def CheckTCPSYNPacket(self, version, netid, routing_mode, dstaddr):
111 s = self.BuildSocket(version, net_test.TCPSocket, netid, routing_mode)
126 def CheckUDPPacket(self, version, netid, routing_mode, dstaddr):
127 s = self.BuildSocket(version, net_test.UDPSocket, netid, routing_mode)
140 if routing_mode != "ucast_oif":
146 def CheckRawGrePacket(self, version, netid, routing_mode, dstaddr):
147 s = self.BuildSocket(version, net_test.RawGRESocket, netid, routing_mode)
165 def CheckOutgoingPackets(self, routing_mode)
    [all...]
neighbour_test.py 197 routing_mode = random.choice(["mark", "oif", "uid"])
198 s = self.BuildSocket(6, net_test.UDPSocket, self.netid, routing_mode)
279 routing_mode = random.choice(["mark", "oif", "uid"])
280 s = self.BuildSocket(6, net_test.UDPSocket, self.netid, routing_mode)
multinetwork_base.py 449 def BuildSocket(self, version, constructor, netid, routing_mode):
452 if routing_mode not in [None, "uid"]:
453 self.SelectInterface(s, netid, routing_mode)
454 elif routing_mode == "uid":
  /external/webrtc/webrtc/modules/audio_processing/
echo_control_mobile_impl.h 38 RoutingMode routing_mode() const override;
echo_control_mobile_impl.cc 244 EchoControlMobile::RoutingMode EchoControlMobileImpl::routing_mode() function in class:webrtc::EchoControlMobileImpl
audio_processing_impl.cc     [all...]
  /external/webrtc/webrtc/modules/audio_processing/include/
mock_audio_processing.h 65 MOCK_CONST_METHOD0(routing_mode,
audio_processing.h 727 virtual RoutingMode routing_mode() const = 0;
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/test/
process_test.cc 88 printf(" --routing_mode MODE [0 - 4]\n");
287 } else if (strcmp(argv[i], "--routing_mode") == 0) {
289 ASSERT_LT(i, argc) << "Specify mode after --routing_mode";
290 int routing_mode; local
291 ASSERT_EQ(1, sscanf(argv[i], "%d", &routing_mode));
295 routing_mode)));
    [all...]
audio_processing_unittest.cc     [all...]
  /external/webrtc/webrtc/voice_engine/
voe_audio_processing_impl.cc 680 _shared->audio_processing()->echo_control_mobile()->routing_mode();
    [all...]

Completed in 316 milliseconds