OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ips_
(Results
1 - 2
of
2
) sorted by null
/external/webrtc/webrtc/base/
network.h
325
void AddIP(const InterfaceAddress& ip) {
ips_
.push_back(ip); }
331
const std::vector<InterfaceAddress>& GetIPs() const { return
ips_
;}
333
void ClearIPs() {
ips_
.clear(); }
365
std::vector<InterfaceAddress>
ips_
;
member in class:rtc::Network
network.cc
859
changed = changed || ips.size() !=
ips_
.size();
862
if (std::find(
ips_
.begin(),
ips_
.end(), ip) ==
ips_
.end()) {
869
ips_
= ips;
875
if (
ips_
.size() == 0) {
880
return static_cast<IPAddress>(
ips_
.at(0));
885
for (const InterfaceAddress& ip :
ips_
) {
Completed in 42 milliseconds