Home
last modified time | relevance | path

Searched refs:network (Results 1 - 25 of 30) sorted by relevance

12

/third_party/ltp/testcases/lib/
H A Dtst_net_vars.c69 "IPV4_LNETWORK: IPv4 network part of IPV4_LHOST\n" in usage()
70 "IPV4_RNETWORK: IPv4 network part of IPV4_RHOST\n" in usage()
76 "IPV6_LNETWORK: IPv6 network part of IPV6_LHOST\n" in usage()
77 "IPV6_RNETWORK: IPv6 network part of IPV6_LHOST\n" in usage()
111 struct in_addr network; in calc_network() local
113 memset(&network, 0, sizeof(network)); in calc_network()
115 network.s_addr = ip->s_addr & mask->s_addr; in calc_network()
116 return network; in calc_network()
119 static int is_in_subnet_ipv4(const struct in_addr *network, in is_in_subnet_ipv4() argument
126 is_in_subnet_ipv6(const struct in6_addr *network, const struct in6_addr *mask, const struct in6_addr *ip6) is_in_subnet_ipv6() argument
211 struct in_addr mask, network; get_ipv4_net16_unused() local
265 struct in6_addr mask, network; get_ipv6_net32_unused() local
[all...]
/third_party/node/lib/internal/
H A Dblocklist.js96 addSubnet(network, prefix, family = 'ipv4') {
97 if (!SocketAddress.isSocketAddress(network)) {
98 validateString(network, 'network');
100 network = new SocketAddress({
101 address: network,
105 switch (network.family) {
113 this[kHandle].addSubnet(network[kSocketAddressHandle], prefix);
/third_party/python/Lib/
H A Dipaddress.py61 address: A string or integer, the IP network. Either IPv4 or
70 address. Or if the network has host bits set.
83 raise ValueError(f'{address!r} does not appear to be an IPv4 or IPv6 network')
121 """Represent an address as 4 packed bytes in network (big-endian) order.
127 The integer address packed as 4 bytes in network (big-endian) order.
141 """Represent an address as 16 packed bytes in network (big-endian) order.
147 The integer address packed as 16 bytes in network (big-endian) order.
201 """Summarize a network range given the first and last IP addresses.
215 An iterator of the summarized IPv(4|6) network objects.
673 """A generic IP network objec
[all...]
/third_party/curl/lib/
H A Dnoproxy.c46 const char *network, /* 1.2.3.4 address */ in Curl_cidr4_match()
58 if(1 != Curl_inet_pton(AF_INET, network, &check)) in Curl_cidr4_match()
66 fprintf(stderr, "Host %s (%x) network %s (%x) bits %u mask %x => %x\n", in Curl_cidr4_match()
67 ipv4, haddr, network, hcheck, bits, mask, in Curl_cidr4_match()
78 const char *network, in Curl_cidr6_match()
94 if(1 != Curl_inet_pton(AF_INET6, network, check)) in Curl_cidr6_match()
106 (void)network; in Curl_cidr6_match()
45 Curl_cidr4_match(const char *ipv4, const char *network, unsigned int bits) Curl_cidr4_match() argument
77 Curl_cidr6_match(const char *ipv6, const char *network, unsigned int bits) Curl_cidr6_match() argument
H A Dnoproxy.h33 const char *network, /* 1.2.3.4 address */
36 const char *network,
/third_party/ffmpeg/libavfilter/dnn/
H A Ddnn_backend_openvino.c56 ie_network_t *network; member
219 status = ie_network_get_outputs_number(ov_model->network, &model_output_count); in infer_completion_callback()
221 status = ie_network_get_output_name(ov_model->network, i, &model_output_name); in infer_completion_callback()
320 status = ie_network_get_input_shapes(ov_model->network, &input_shapes); in init_model_ov()
327 status = ie_network_reshape(ov_model->network, input_shapes); in init_model_ov()
337 status = ie_network_set_input_layout(ov_model->network, input_name, NHWC); in init_model_ov()
343 status = ie_network_set_output_layout(ov_model->network, output_name, NHWC); in init_model_ov()
357 status = ie_network_set_input_precision(ov_model->network, input_name, U8); in init_model_ov()
365 status = ie_core_load_network(ov_model->core, ov_model->network, ctx->options.device_type, &config, &ov_model->exe_network); in init_model_ov()
367 av_log(ctx, AV_LOG_ERROR, "Failed to load OpenVINO model network\ in init_model_ov()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/examples/
H A Dwpas-dbus-new-signals.py105 def networkAdded(network, properties):
106 print("NetworkAdded(%s)" % (network))
108 def networkRemoved(network):
109 print("NetworkRemoved(%s)" % (network))
111 def networkSelected(network):
112 print("NetworkSelected(%s)" % (network))
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/examples/
H A Dwpas-dbus-new-signals.py105 def networkAdded(network, properties):
106 print("NetworkAdded(%s)" % (network))
108 def networkRemoved(network):
109 print("NetworkRemoved(%s)" % (network))
111 def networkSelected(network):
112 print("NetworkSelected(%s)" % (network))
/third_party/node/benchmark/tls/
H A Dsecure-pair.js44 const network = securing === 'clear' ? net : tls;
45 const conn = network.connect(clientOptions, () => {
/third_party/musl/scripts/build_lite/
H A DMakefile139 mv -f src/network/liteos_a/* src/network/ && \
218 mv -f src/network/linux/* src/network/ && \
/third_party/python/Tools/ssl/
H A Dmultissltests.py114 '--no-network',
116 dest='network',
117 help="Disable network tests."
376 def run_python_tests(self, tests, network=True):
387 if network:
388 cmd.extend(['-u', 'network', '-u', 'urlfetch'])
516 network=args.network,
/third_party/ltp/testcases/network/rpc/basic_tests/rpc01/lib/
H A DMakefile25 include $(top_srcdir)/testcases/network/rpc/rpc-tirpc/tests_pack/Makefile.inc
/third_party/python/Lib/test/
H A Dtest_ipaddress.py870 self.assertFactoryError(ipaddress.ip_network, "network")
1006 # with get_mixed_type_key, you can sort addresses and network.
1350 self.assertEqual(int(ipv4_zero_netmask.network.netmask), 0)
1354 self.assertEqual(int(ipv6_zero_netmask.network.netmask), 0)
1358 self.assertEqual(int(ipv6_scoped_zero_netmask.network.netmask), 0)
1380 self.assertEqual(self.ipv4_interface.network.prefixlen, 24)
1381 self.assertEqual(self.ipv6_interface.network.prefixlen, 64)
1382 self.assertEqual(self.ipv6_scoped_interface.network.prefixlen, 64)
1389 ipaddress.IPv4Interface('0.0.0.0/0').network.supernet(),
1395 self.assertEqual(ipaddress.IPv6Interface('::0/0').network
[all...]
/third_party/python/PCbuild/
H A Drt.bat25 rem -u network,largefile
27 rem rt -u "network,largefile"
/third_party/mbedtls/tests/scripts/
H A Ddocker_env.sh66 --network host \
/third_party/ltp/testcases/network/rpc/basic_tests/rpc01/
H A DMakefile2 # network/rpc/basic_tests/rpc01 test suite Makefile.
52 include $(top_srcdir)/testcases/network/rpc/rpc-tirpc/tests_pack/Makefile.inc
/third_party/eudev/src/udev/
H A Dudev-event.c831 log_info("renamed network interface %s to %s\n", ifr.ifr_name, ifr.ifr_newname); in rename_netif_dev_fromname_toname()
835 log_debug("collision on rename of network interface %s to %s , retrying until timeout\n", in rename_netif_dev_fromname_toname()
851 log_info("renamed network interface %s to %s\n", ifr.ifr_name, ifr.ifr_newname); in rename_netif_dev_fromname_toname()
864 log_debug("renamed network interface '%s' to '%s'", oldname, name); in rename_netif_dev_fromname_toname()
916 /* rename a new network interface, if needed */
/third_party/node/src/
H A Dnode_sockaddr.cc426 const std::shared_ptr<SocketAddress>& network, in AddSocketAddressMask()
430 std::make_unique<SocketAddressMaskRule>(network, prefix); in AddSocketAddressMask()
457 : network(network_), in SocketAddressMaskRule()
491 return address->is_in_network(*network.get(), prefix); in Apply()
496 ret += network->family() == AF_INET ? "IPv4" : "IPv6"; in ToString()
498 ret += network->address(); in ToString()
542 tracker->TrackField("network", network); in MemoryInfo()
425 AddSocketAddressMask( const std::shared_ptr<SocketAddress>& network, int prefix) AddSocketAddressMask() argument
H A Dnode_sockaddr.h108 // identified by the given network address and CIDR prefix.
109 bool is_in_network(const SocketAddress& network, int prefix) const;
246 // outbound network activity.
307 std::shared_ptr<SocketAddress> network; member
/third_party/libabigail/tests/
H A Druntestfedabipkgdiff.py.in104 doesn't use the network.
/third_party/ltp/testscripts/
H A Dnetwork.sh15 CMDFILE=${TMPDIR}/network.tests
43 echo " -F network features tests (TFO, vxlan, etc.)"
/third_party/ltp/testcases/network/dhcp/
H A Ddhcp_lib.sh38 systemctl --no-pager -p Id show network.service | grep -q Id=wicked.service; then
114 local wicked_cfg="/etc/sysconfig/network/ifcfg-$iface1"
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/wpa_gui-qt4/
H A Dwpagui.cpp519 tr("No network interfaces in use.\n" in updateStatus()
609 * Handle signal meter service. When network is not associated, in updateStatus()
702 QString network(id); in updateNetworks()
703 network.append(": "); in updateNetworks()
704 network.append(ssid); in updateNetworks()
705 networkSelect->addItem(network); in updateNetworks()
706 networkList->addItem(network); in updateNetworks()
722 networkSelect->addItem(tr("Select any network")); in updateNetworks()
966 tr("Disconnected from network.")); in processMsg()
969 tr("Connection to network establishe in processMsg()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/wpa_gui-qt4/
H A Dwpagui.cpp521 tr("No network interfaces in use.\n" in updateStatus()
611 * Handle signal meter service. When network is not associated, in updateStatus()
704 QString network(id); in updateNetworks()
705 network.append(": "); in updateNetworks()
706 network.append(ssid); in updateNetworks()
707 networkSelect->addItem(network); in updateNetworks()
708 networkList->addItem(network); in updateNetworks()
737 networkSelect->addItem(tr("Select any network")); in updateNetworks()
981 tr("Disconnected from network.")); in processMsg()
984 tr("Connection to network establishe in processMsg()
[all...]
/third_party/curl/projects/
H A Dgenerate.bat35 rem Check we are not running on a network drive
398 echo Error: This batch file cannot run from a network drive

Completed in 17 milliseconds

12