/external/bcc/tools/ |
D | tcpsubnet.py | 145 def parse_subnets(subnets): argument 147 for s in subnets: 173 def generate_bpf_subnets(subnets): argument 183 for i, s in enumerate(subnets): 191 subnets = [] variable 192 if args.subnets: 193 subnets = args.subnets.split(",") variable 195 subnets = parse_subnets(subnets) variable 198 logging.debug(subnets) 200 bpf_subnets = generate_bpf_subnets(subnets) [all …]
|
D | tcpsubnet_example.txt | 35 By default, tcpsubnet will categorize traffic in the following subnets: 46 of subnets. Let's say we would like to know how much traffic we 91 to approximate subnets nor need to put individual IP addresses like 115 on how the subnets are evaluated and the BPF program is constructed. 136 usage: tcpsubnet.py [-h] [-v] [-J] [-f {b,k,m,B,K,M}] [-i INTERVAL] [subnets] 141 subnets comma separated list of subnets 154 ./tcpsubnet # Trace TCP sent to the default subnets: 157 ./tcpsubnet -f K # Trace TCP sent to the default subnets
|
/external/python/cpython3/Lib/test/ |
D | test_ipaddress.py | 1156 self.assertEqual(sorted(self.ipv4_network.subnets(prefixlen_diff=3)), 1157 sorted(self.ipv4_network.subnets(new_prefix=27))) 1159 self.ipv4_network.subnets(new_prefix=23)) 1161 self.ipv4_network.subnets(prefixlen_diff=3, 1163 self.assertEqual(sorted(self.ipv6_network.subnets(prefixlen_diff=4)), 1164 sorted(self.ipv6_network.subnets(new_prefix=68))) 1166 self.ipv6_network.subnets(new_prefix=63)) 1168 self.ipv6_network.subnets(prefixlen_diff=4, 1172 self.assertEqual(list(self.ipv4_network.subnets())[0].prefixlen, 25) 1174 self.ipv4_network.subnets())[0].network_address), [all …]
|
D | cfgparser.2 | 190 # Cause this host to announce itself to local subnets here 202 # allows Samba to collate browse lists between subnets. Don't use this
|
/external/python/cpython3/Lib/ |
D | ipaddress.py | 283 subnets = {} 287 existing = subnets.get(supernet) 289 subnets[supernet] = net 292 del subnets[supernet] 296 for net in sorted(subnets.values()): 788 s1, s2 = self.subnets() 792 s1, s2 = s1.subnets() 795 s1, s2 = s2.subnets() 869 def subnets(self, prefixlen_diff=1, new_prefix=None): member in _BaseNetwork
|
/external/python/cpython3/Doc/library/ |
D | ipaddress.rst | 517 .. method:: subnets(prefixlen_diff=1, new_prefix=None) 519 The subnets that join to make the current network definition, depending 522 prefix of the subnets; it must be larger than our prefix. One and 526 >>> list(ip_network('192.0.2.0/24').subnets()) 528 … >>> list(ip_network('192.0.2.0/24').subnets(prefixlen_diff=2)) #doctest: +NORMALIZE_WHITESPACE 531 … >>> list(ip_network('192.0.2.0/24').subnets(new_prefix=26)) #doctest: +NORMALIZE_WHITESPACE 534 >>> list(ip_network('192.0.2.0/24').subnets(new_prefix=23)) 539 >>> list(ip_network('192.0.2.0/24').subnets(new_prefix=25)) 662 .. method:: subnets(prefixlen_diff=1, new_prefix=None)
|
/external/selinux/secilc/docs/ |
D | cil_infiniband_statements.md | 4 … provided for: Partition Keys (Pkey) that are 16 bit numbers assigned to subnets and their IB end …
|
/external/tensorflow/tensorflow/contrib/specs/ |
D | README.md | 163 You can share variables among subnets by wrapping them with `Shared`:
|
/external/autotest/ |
D | global_config.ini | 374 # A list of restricted subnets, in the format of ip/mask_bits, e.g., 10.0.0.1/24
|
/external/dnsmasq/ |
D | dnsmasq.conf.example | 270 # Set the "all subnets are local" flag
|
D | CHANGELOG.archive | 1620 Fixed DHCP bug when two distict subnets are on the same
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.2rc1.rst | 1074 Fixed the subnets() methods in IP network classes for the case when
|
D | 3.6.0a1.rst | 1719 Fixed the subnets() methods in IP network classes for the case when
|
D | 3.5.0a1.rst | 3577 ipaddress.{IPv4Network,IPv6Network}.subnets().
|
/external/scapy/doc/scapy/ |
D | usage.rst | 1439 Find subnets on a multi-NIC firewall
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 2120 :meth:`~ipaddress.IPv4Network.subnets`, :meth:`~ipaddress.IPv4Network.supernet`,
|
/external/libnl/doc/ |
D | core.txt | 2895 f.e. used to implement subnets.
|
/external/jline/src/src/test/resources/jline/example/ |
D | english.gz |
|