Home
last modified time | relevance | path

Searched refs:next_port_ (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/test/network/
Dnetwork_emulation.cc182 next_port_(kFirstEphemeralPort) { in EmulatedEndpointImpl()
261 uint16_t out = next_port_; in NextPort()
262 if (next_port_ == std::numeric_limits<uint16_t>::max()) { in NextPort()
263 next_port_ = kFirstEphemeralPort; in NextPort()
265 next_port_++; in NextPort()
Dnetwork_emulation.h184 uint16_t next_port_ RTC_GUARDED_BY(receiver_lock_);
/external/webrtc/rtc_base/
Dvirtual_socket_server.cc533 next_port_(kFirstEphemeralPort), in VirtualSocketServer()
567 uint16_t port = next_port_; in GetNextPort()
568 if (next_port_ < kLastEphemeralPort) { in GetNextPort()
569 ++next_port_; in GetNextPort()
571 next_port_ = kFirstEphemeralPort; in GetNextPort()
655 next_port_ = port; in SetNextPortForTesting()
Dvirtual_socket_server.h276 uint16_t next_port_; variable