/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/autotest/client/site_tests/p2p_ServeFiles/ |
D | p2p_ServeFiles.py | 65 peer_name, hostname, ips, port = peers[0] 70 return peer_name, hostname, ips, port, files 135 peer_name, hostname, ips, port, files = res 138 len(ips) != 1) or ips[0] != self._p2p.tap.addr: 141 logging.error('ips = %r', ips) 147 for host_ip in (ips[0], '127.0.0.1'): 158 self._sim.run_on_simulator(lambda: peer.tcp_forward(1234, ips[0], port))
|
/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/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/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 | 40 u64 ips, va_bits; in get_tcr() local 50 ips = 5; in get_tcr() 53 ips = 4; in get_tcr() 56 ips = 3; in get_tcr() 59 ips = 2; in get_tcr() 62 ips = 1; in get_tcr() 65 ips = 0; in get_tcr() 70 tcr = TCR_EL1_RSVD | (ips << 32) | TCR_EPD1_DISABLE; in get_tcr() 72 tcr = TCR_EL2_RSVD | (ips << 16); in get_tcr() 74 tcr = TCR_EL3_RSVD | (ips << 16); in get_tcr() [all …]
|
/external/autotest/client/site_tests/p2p_ShareFiles/ |
D | p2p_ShareFiles.py | 83 peer_name, _hostname, ips, port = peers[0] 84 if len(ips) != 1 or ips[0] != self._p2p.tap.addr: 85 logging.info('Peer ips: %r', ips)
|
/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/libevent/ |
D | evdns.c | 3672 evdns_nameserver_ip_add_line(struct evdns_base *base, const char *ips) { in evdns_nameserver_ip_add_line() argument 3677 while (*ips) { in evdns_nameserver_ip_add_line() 3678 while (isspace(*ips) || *ips == ',' || *ips == '\t') in evdns_nameserver_ip_add_line() 3679 ++ips; in evdns_nameserver_ip_add_line() 3680 addr = ips; in evdns_nameserver_ip_add_line() 3681 while (isdigit(*ips) || *ips == '.' || *ips == ':' || in evdns_nameserver_ip_add_line() 3682 *ips=='[' || *ips==']') in evdns_nameserver_ip_add_line() 3683 ++ips; in evdns_nameserver_ip_add_line() 3684 buf = mm_malloc(ips-addr+1); in evdns_nameserver_ip_add_line() 3686 memcpy(buf, addr, ips-addr); in evdns_nameserver_ip_add_line() [all …]
|
/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/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/perf_data_converter/src/quipper/ |
D | sample_info_reader.cc | 92 reader->ReadUint64(&callchain->ips[i]); in ReadCallchain() 450 *array++ = sample.callchain->ips[i]; in WritePerfSampleToData()
|
D | perf_serializer.cc | 393 sample->add_callchain(sample_info.callchain->ips[i]); in SerializeSampleEvent() 461 sample_info.callchain->ips[i] = sample.callchain(i); in DeserializeSampleEvent()
|
/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/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/linux-kselftest/tools/testing/selftests/net/forwarding/ |
D | mirror_gre_bridge_1q_lag.sh | 64 local ips=("${@}")
|
D | mirror_gre_lag_lacp.sh | 62 local ips=("${@}")
|
D | lib.sh | 431 local ips=("${@}")
|
/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/v8/tools/ |
D | ll_prof.py | 643 sample.ips = [] 646 sample.ips.append( 954 for ip in sample.ips:
|
/external/perf_data_converter/src/quipper/kernel/ |
D | perf_internals.h | 215 u64 ips[0]; member
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/ |
D | ja-t-pl-fonipa.txt | 384 ɡips ギプス
|
D | pl-fonipa-t-pl.txt | 350 gips ɡips
|