/external/autotest/frontend/client/test/autotest/moblab/rpc/ |
D | NetworkInfoTest.java | 14 JSONValue ips = jsonInfo.get(NetworkInfo.JSON_FIELD_SERVER_IPS); in testSerialization() local 15 assertEquals(0, ips.isArray().size()); in testSerialization() 28 ips = jsonInfo.get(NetworkInfo.JSON_FIELD_SERVER_IPS); in testSerialization() 29 assertEquals(2, ips.isArray().size()); in testSerialization() 30 assertEquals("10.0.0.1", ips.isArray().get(0).isString().stringValue()); in testSerialization() 31 assertEquals("10.0.0.2", ips.isArray().get(1).isString().stringValue()); in testSerialization()
|
/external/scapy/scapy/ |
D | as_resolvers.py | 55 def resolve(self, *ips): argument 58 for ip in ips: 78 def resolve(self, *ips): argument 81 s.send(b"begin\r\n"+b"\r\n".join(ip.encode("utf8") for ip in ips)+b"\r\nend\r\n") 112 def resolve(self, *ips): argument 113 todo = ips 126 if len(ips) != len(ret):
|
/external/clang/test/SemaCXX/ |
D | scope-check.cpp | 46 static void *ips[] = { &&lbl1, &&lbl2 }; in f() local 61 static void *ips[] = { &&lbl1, &&lbl2 }; in f() local 78 static void *ips[] = { &&lbl1, &&lbl2 }; in f() local 96 static void *ips[] = { &&lbl1, &&lbl2 }; in f() local 116 static void *ips[] = { &&lbl1, &&lbl2, &&lbl3, &&lbl4 }; in f() local 225 static void *ips[] = { &&l0 }; in f() local 238 static void *ips[] = { &&l0 }; in f() local 254 static void *ips[] = { &&l0 }; in f() local 268 static void *ips[] = { &&l0 }; in f() local 602 static void *ips[] = { &&l }; in indirect_jumps() local
|
/external/autotest/site_utils/ |
D | sync_cloudsql_access.py | 95 ips = [] 99 ips.append(socket.gethostbyname(name)) 101 ips.append(_fetch_external_ip(name)) 109 print '...Done: %s' % ips 111 cidr_ips = [str(ip) + '/32' for ip in ips]
|
/external/u-boot/arch/arm/cpu/armv8/ |
D | cache_v8.c | 41 u64 ips, va_bits; in get_tcr() local 51 ips = 5; in get_tcr() 54 ips = 4; in get_tcr() 57 ips = 3; in get_tcr() 60 ips = 2; in get_tcr() 63 ips = 1; in get_tcr() 66 ips = 0; in get_tcr() 71 tcr = TCR_EL1_RSVD | (ips << 32) | TCR_EPD1_DISABLE; in get_tcr() 73 tcr = TCR_EL2_RSVD | (ips << 16); in get_tcr() 75 tcr = TCR_EL3_RSVD | (ips << 16); in get_tcr() [all …]
|
/external/webrtc/webrtc/base/ |
D | network.cc | 66 std::vector<InterfaceAddress> ips; member 264 current_list.ips.push_back(address); in MergeNetworkList() 269 if (current_list.ips[0].family() == AF_INET) { in MergeNetworkList() 272 ASSERT(current_list.ips[0].family() == AF_INET6); in MergeNetworkList() 291 net->SetIPs(kv.second.ips, true); in MergeNetworkList() 296 *changed = existing_net->SetIPs(kv.second.ips, *changed); in MergeNetworkList() 856 bool Network::SetIPs(const std::vector<InterfaceAddress>& ips, bool changed) { in SetIPs() argument 859 changed = changed || ips.size() != ips_.size(); in SetIPs() 861 for (const InterfaceAddress& ip : ips) { in SetIPs() 869 ips_ = ips; in SetIPs()
|
D | network.h | 329 bool SetIPs(const std::vector<InterfaceAddress>& ips, bool already_changed);
|
/external/python/cpython3/Lib/ |
D | ipaddress.py | 325 ips = [] 331 if ips and ips[-1]._version != ip._version: 333 ip, ips[-1])) 334 ips.append(ip) 336 if ips and ips[-1]._version != ip._version: 338 ip, ips[-1])) 340 ips.append(ip.ip) 342 ips.append(ip.network_address) 350 ips = sorted(set(ips)) 353 if ips: [all …]
|
/external/python/ipaddress/ |
D | ipaddress.py | 445 ips = [] 451 if ips and ips[-1]._version != ip._version: 453 ip, ips[-1])) 454 ips.append(ip) 456 if ips and ips[-1]._version != ip._version: 458 ip, ips[-1])) 460 ips.append(ip.ip) 462 ips.append(ip.network_address) 470 ips = sorted(set(ips)) 473 if ips: [all …]
|
D | test_ipaddress.py | 1240 ips = [str(x) for x in self.ipv4_network.subnets(2)] 1242 ips,
|
/external/libevent/ |
D | evdns.c | 3732 evdns_nameserver_ip_add_line(struct evdns_base *base, const char *ips) { in evdns_nameserver_ip_add_line() argument 3737 while (*ips) { in evdns_nameserver_ip_add_line() 3738 while (isspace(*ips) || *ips == ',' || *ips == '\t') in evdns_nameserver_ip_add_line() 3739 ++ips; in evdns_nameserver_ip_add_line() 3740 addr = ips; in evdns_nameserver_ip_add_line() 3741 while (isdigit(*ips) || *ips == '.' || *ips == ':' || in evdns_nameserver_ip_add_line() 3742 *ips=='[' || *ips==']') in evdns_nameserver_ip_add_line() 3743 ++ips; in evdns_nameserver_ip_add_line() 3744 buf = mm_malloc(ips-addr+1); in evdns_nameserver_ip_add_line() 3746 memcpy(buf, addr, ips-addr); in evdns_nameserver_ip_add_line() [all …]
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jce/provider/ |
D | PKIXNameConstraintValidator.java | 278 private Set intersectIP(Set permitted, Set ips) in intersectIP() argument 281 for (Iterator it = ips.iterator(); it.hasNext();) in intersectIP() 1862 private String stringifyIPCollection(Set ips) in stringifyIPCollection() argument 1866 for (Iterator it = ips.iterator(); it.hasNext();) in stringifyIPCollection()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | PKIXNameConstraintValidator.java | 274 private Set intersectIP(Set permitted, Set ips) in intersectIP() argument 277 for (Iterator it = ips.iterator(); it.hasNext();) in intersectIP() 1858 private String stringifyIPCollection(Set ips) in stringifyIPCollection() argument 1862 for (Iterator it = ips.iterator(); it.hasNext();) in stringifyIPCollection()
|
/external/linux-kselftest/tools/testing/selftests/net/forwarding/ |
D | mirror_gre_lag_lacp.sh | 62 local ips=("${@}")
|
D | mirror_gre_bridge_1q_lag.sh | 64 local ips=("${@}")
|
D | lib.sh | 481 local ips=("${@}")
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/ |
D | PKIXNameConstraintValidator.java | 618 private Set intersectIP(Set permitted, Set ips) in intersectIP() argument 621 for (Iterator it = ips.iterator(); it.hasNext(); ) in intersectIP() 2049 private String stringifyIPCollection(Set ips) in stringifyIPCollection() argument 2053 for (Iterator it = ips.iterator(); it.hasNext(); ) in stringifyIPCollection()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | PKIXNameConstraintValidator.java | 614 private Set intersectIP(Set permitted, Set ips) in intersectIP() argument 617 for (Iterator it = ips.iterator(); it.hasNext(); ) in intersectIP() 2045 private String stringifyIPCollection(Set ips) in stringifyIPCollection() argument 2049 for (Iterator it = ips.iterator(); it.hasNext(); ) in stringifyIPCollection()
|
/external/scapy/scapy/layers/ |
D | inet.py | 1232 ips = {} 1236 ips[r.src] = None 1295 ips = {} 1302 ips[r.src] = None 1354 ips[bh] = None 1361 ASN_query_list = set(x.rsplit(" ",1)[0] for x in ips)
|
/external/igt-gpu-tools/tools/ |
D | intel_watermark.c | 99 int linetime, ips; member 536 wm.linetime[i].ips = REG_DECODE1(wm_linetime[i], 16, 9); in ilk_wm_dump() 572 wm.linetime[i].ips, wm.linetime[i].ips * 0.125f); in ilk_wm_dump()
|
/external/cldr/common/testData/transforms/ |
D | ja-t-pl-fonipa.txt | 384 ɡips ギプス
|
D | pl-fonipa-t-pl.txt | 350 gips ɡips
|
D | und-Latn-t-und-taml.txt | 94 இப்ஸா ipsā
|
/external/python/cpython3/Lib/test/ |
D | test_ipaddress.py | 1178 ips = [str(x) for x in self.ipv4_network.subnets(2)] 1180 ips,
|
/external/cldr/tools/java/org/unicode/cldr/util/data/ |
D | europe | 719 # http://pravo.gov.ru/proxy/ips/?docbody=&nd=102014034&rdk=0 3114 # http://pravo.gov.ru/proxy/ips/?docbody=&nd=102075743
|