/third_party/python/Lib/test/ |
D | test_ipaddress.py | 857 self.assertFactoryError(ipaddress.ip_address, "address") 1019 v4addr = ipaddress.ip_address('1.1.1.1') 1021 v6addr = ipaddress.ip_address('::1') 1023 v6addr_scoped = ipaddress.ip_address('::1%scope') 1273 address = ipaddress.ip_address 1823 (ipaddress.ip_address('1.1.1.1'), 1824 ipaddress.ip_address('::1')), 1835 (ipaddress.ip_address('1.1.1.1'), 1836 ipaddress.ip_address('::1%scope')), 1850 ip1 = ipaddress.ip_address('1.1.1.0') [all …]
|
/third_party/boost/boost/asio/ssl/impl/ |
D | rfc2818_verification.ipp | 79 ASN1_OCTET_STRING* ip_address = gen->d.iPAddress; 80 if (ip_address->type == V_ASN1_OCTET_STRING && ip_address->data) 82 if (address.is_v4() && ip_address->length == 4) 85 if (memcmp(bytes.data(), ip_address->data, 4) == 0) 91 else if (address.is_v6() && ip_address->length == 16) 94 if (memcmp(bytes.data(), ip_address->data, 16) == 0)
|
/third_party/boost/libs/asio/include/boost/asio/ssl/impl/ |
D | rfc2818_verification.ipp | 79 ASN1_OCTET_STRING* ip_address = gen->d.iPAddress; 80 if (ip_address->type == V_ASN1_OCTET_STRING && ip_address->data) 82 if (address.is_v4() && ip_address->length == 4) 85 if (memcmp(bytes.data(), ip_address->data, 4) == 0) 91 else if (address.is_v6() && ip_address->length == 16) 94 if (memcmp(bytes.data(), ip_address->data, 16) == 0)
|
/third_party/node/src/ |
D | tcp_wrap.cc | 218 std::function<int(const char* ip_address, int port, T* addr)> uv_ip_addr) { in Bind() argument 224 node::Utf8Value ip_address(env->isolate(), args[0]); in Bind() local 234 int err = uv_ip_addr(*ip_address, port, &addr); in Bind() 274 [port](const char* ip_address, sockaddr_in* addr) { in Connect() argument 275 return uv_ip4_addr(ip_address, port, addr); in Connect() 286 [port](const char* ip_address, sockaddr_in6* addr) { in Connect6() argument 287 return uv_ip6_addr(ip_address, port, addr); in Connect6() 293 std::function<int(const char* ip_address, T* addr)> uv_ip_addr) { in Connect() argument 305 node::Utf8Value ip_address(env->isolate(), args[1]); in Connect() local 308 int err = uv_ip_addr(*ip_address, &addr); in Connect()
|
D | tcp_wrap.h | 82 std::function<int(const char* ip_address, T* addr)> uv_ip_addr); 88 std::function<int(const char* ip_address, int port, T* addr)> uv_ip_addr);
|
/third_party/python/Doc/howto/ |
D | ipaddress.rst | 52 to use the :func:`ipaddress.ip_address` factory function, which automatically 56 >>> ipaddress.ip_address('192.0.2.1') 58 >>> ipaddress.ip_address('2001:DB8::1') 64 >>> ipaddress.ip_address(3221225985) 66 >>> ipaddress.ip_address(42540766411282592856903984951653826561) 73 >>> ipaddress.ip_address(1) 165 >>> addr4 = ipaddress.ip_address('192.0.2.1') 166 >>> addr6 = ipaddress.ip_address('2001:db8::1') 261 >>> addr4 = ipaddress.ip_address('192.0.2.1') 274 >>> ipaddress.ip_address('192.0.2.1') < ipaddress.ip_address('192.0.2.2') [all …]
|
/third_party/cef/libcef/browser/media_router/ |
D | media_sink_impl.cc | 45 CefString(&device_info.ip_address) = in GetSinkInternalAndContinue() 51 CefString(&device_info.ip_address) = dial_data.ip_address.ToString(); in GetSinkInternalAndContinue()
|
/third_party/libcoap/man/ |
D | coap_endpoint_client.txt.in | 161 setup_client_session (struct in_addr ip_address) { 176 server.addr.sin.sin_addr = ip_address; 222 setup_client_session_pki (struct in_addr ip_address, 242 server.addr.sin.sin_addr = ip_address; 315 struct in_addr ip_address, 335 server.addr.sin.sin_addr = ip_address; 371 setup_client_session_dtls (struct in_addr ip_address) { 386 server.addr.sin.sin_addr = ip_address;
|
D | coap_endpoint_server.txt.in | 509 struct in_addr ip_address, 528 server.addr.sin.sin_addr = ip_address;
|
/third_party/grpc/tools/run_tests/ |
D | run_grpclb_interop_tests.py | 511 '%s:%d' % (backend_job.ip_address(), _BACKEND_SERVER_PORT)) 521 fallback_ips.append(fallback_job.ip_address()) 531 grpclb_ips.append(grpclb_job.ip_address()) 544 dns_server_ip = dns_server_job.ip_address()
|
/third_party/grpc/src/proto/grpc/lb/v1/ |
D | load_balancer.options | 3 grpc.lb.v1.Server.ip_address max_size:16
|
D | load_balancer.proto | 135 bytes ip_address = 1; field
|
/third_party/python/Doc/tools/ |
D | susp-ignored.csv | 53 howto/ipaddress,,:DB8,>>> ipaddress.ip_address('2001:DB8::1') 54 howto/ipaddress,,::,>>> ipaddress.ip_address('2001:DB8::1') 66 howto/ipaddress,,:db8,>>> addr6 = ipaddress.ip_address('2001:db8::1') 67 howto/ipaddress,,::,>>> addr6 = ipaddress.ip_address('2001:db8::1') 145 library/ipaddress,,:db8,>>> ipaddress.ip_address('2001:db8::') 146 library/ipaddress,,::,>>> ipaddress.ip_address('2001:db8::') 157 library/ipaddress,,:db8,">>> ipaddress.ip_address(""2001:db8::1"").reverse_pointer" 158 library/ipaddress,,::,">>> ipaddress.ip_address(""2001:db8::1"").reverse_pointer"
|
/third_party/grpc/tools/run_tests/python_utils/ |
D | dockerjob.py | 141 def ip_address(self): member in DockerJob
|
/third_party/cef/include/internal/ |
D | cef_types_wrappers.h | 986 cef_string_clear(&s->ip_address); in clear() 993 cef_string_set(src->ip_address.str, src->ip_address.length, in set() 994 &target->ip_address, copy); in set()
|
D | cef_types.h | 3123 cef_string_t ip_address; member
|
/third_party/selinux/secilc/docs/ |
D | cil_network_labeling_statements.md | 18 (ipaddr ipaddr_id ip_address) 38 <td align="left"><p><code>ip_address</code></p></td>
|
/third_party/python/Doc/library/ |
D | ipaddress.rst | 40 .. function:: ip_address(address) 48 >>> ipaddress.ip_address('192.168.0.1') 50 >>> ipaddress.ip_address('2001:db8::') 174 >>> ipaddress.ip_address("127.0.0.1").reverse_pointer 176 >>> ipaddress.ip_address("2001:db8::1").reverse_pointer 928 >>> ipaddress.ip_address(3221225985)
|
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/aio/iomgr/ |
D | iomgr.pyx.pxi | 143 ip = ipaddress.ip_address(host)
|
/third_party/grpc/test/core/tsi/alts/fake_handshaker/ |
D | handshaker.proto | 43 string ip_address = 1; field
|
/third_party/grpc/src/core/tsi/alts/handshaker/proto/ |
D | handshaker.proto | 43 string ip_address = 1; field
|
/third_party/grpc/src/proto/grpc/gcp/ |
D | handshaker.proto | 50 string ip_address = 1; field
|
/third_party/cef/tests/cefclient/browser/ |
D | media_router_test.cc | 326 CefString(&info->device_info.ip_address)); in SendSinksResponse()
|
/third_party/boost/libs/asio/test/ |
D | Jamfile.v2 | 113 [ link ip/address.cpp : : ip_address ]
|
/third_party/python/Lib/ |
D | ipaddress.py | 28 def ip_address(address): function
|