/external/wpa_supplicant_8/wpa_supplicant/ |
D | wpa_supplicant.conf | 1514 network={ 1522 network={ 1530 network={ 1541 network={ 1553 network={ 1570 network={ 1584 network={ 1597 network={ 1610 network={ 1628 network={ [all …]
|
D | README-HS20 | 22 The core Interworking functionality (network selection, GAS/ANQP) were 27 wpa_supplicant network selection 32 network blocks (e.g., per-SSID parameters). When requested to perform 33 network selection, wpa_supplicant picks the highest priority enabled 34 network block or credential. If a credential is picked (based on ANQP 35 information from APs), a temporary network block is created 36 automatically for the matching network. This temporary network block is 37 used similarly to the network blocks that can be configured by the user, 42 By default, wpa_supplicant is not using automatic network selection 44 can be changed with the auto_interworking=1 parameter to perform network [all …]
|
/external/ltp/android/ |
D | Android.ltp.mk | 21 module_src_files := testcases/network/multicast/mc_member/datafiles/ManyGroups 25 module_src_files := testcases/network/multicast/mc_member/datafiles/TooManyGroups 29 module_src_files := testcases/network/stress/ns-tools/add_ipv6addr 33 module_src_files := testcases/network/tcp_cmds/arping/arping01.sh 45 module_src_files := testcases/network/tcp_cc/bbr01.sh 49 module_src_files := testcases/network/tcp_cc/bbr02.sh 53 module_src_files := testcases/network/sockets/bind_noport01.sh 57 module_src_files := testcases/network/stress/broken_ip/broken_ip4-checksum 61 module_src_files := testcases/network/stress/broken_ip/broken_ip4-dstaddr 65 module_src_files := testcases/network/stress/broken_ip/broken_ip4-fragment [all …]
|
/external/webrtc/webrtc/base/ |
D | network.cc | 221 for (Network* network : networks_) { in GetNetworks() 223 if (network->prefix().family() == AF_INET6) { in GetNetworks() 229 result->push_back(network); in GetNetworks() 249 for (Network* network : list) { in MergeNetworkList() 251 std::string key = MakeNetworkKey(network->name(), in MergeNetworkList() 252 network->prefix(), in MergeNetworkList() 253 network->prefix_length()); in MergeNetworkList() 257 addrlist.net = network; in MergeNetworkList() 261 const std::vector<InterfaceAddress>& addresses = network->GetIPs(); in MergeNetworkList() 267 delete network; in MergeNetworkList() [all …]
|
/external/autotest/server/site_tests/network_WiFi_ChaosConfigSniffer/ |
D | network_WiFi_ChaosConfigSniffer.py | 10 from autotest_lib.client.common_lib.cros.network import iw_runner 31 network = networks[0] 34 f.write(pprint.pformat(network)) 36 f.write('[%s]\n' % network.bss) 40 f.write('ssid = %s\n' % network.ssid) 41 f.write('frequency = %s\n' % network.frequency) 43 if network.frequency > 2484: 44 f.write('bss5 = %s\n' % network.bss) 46 f.write('bss = %s\n' % network.bss) 49 f.write('security = %s\n' % network.security) [all …]
|
/external/autotest/client/site_tests/network_ChromeWifiEndToEnd/ |
D | network_ChromeWifiEndToEnd.py | 40 for network in networks_found: 41 network = NetworkInfo(name=network['Name'], 42 guid=network['GUID'], 43 connectionState=network['ConnectionState'], 44 security=network['WiFi']['Security']) 45 network_list.append(network) 93 def _connect_to_network(self, network): argument 102 '"' + network.guid +'"') 108 (network.name, new_network_connect['error'])) 121 for network in network_list: [all …]
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowConnectivityManager.java | 151 protected NetworkInfo getNetworkInfo(Network network) { in getNetworkInfo() argument 152 if (network == null) { in getNetworkInfo() 155 ShadowNetwork shadowNetwork = Shadow.extract(network); in getNetworkInfo() 197 protected boolean bindProcessToNetwork(Network network) { in bindProcessToNetwork() argument 198 processBoundNetwork = network; in bindProcessToNetwork() 260 public void addNetwork(Network network, NetworkInfo networkInfo) { in addNetwork() argument 261 ShadowNetwork shadowNetwork = Shadow.extract(network); in addNetwork() 263 netIdToNetwork.put(netId, network); in addNetwork() 271 public void removeNetwork(Network network) { in removeNetwork() argument 272 ShadowNetwork shadowNetwork = Shadow.extract(network); in removeNetwork() [all …]
|
/external/ipsec-tools/src/racoon/ |
D | isakmp_unity.c | 210 struct unity_network *network = (struct unity_network *)(attr + 1); local 223 &network[index], 237 &network[index], 269 struct unity_network * network; local 286 network = (struct unity_network *)(new + 1); 289 memcpy(&network[index], 290 &netentry->network, 293 inet_ntop(AF_INET, &netentry->network.addr4, tmp1, 40); 294 inet_ntop(AF_INET, &netentry->network.mask4, tmp2, 40); 303 int splitnet_list_add(list, network, count) in splitnet_list_add() argument [all …]
|
/external/tensorflow/tensorflow/contrib/eager/python/ |
D | network.py | 756 network, save_path, global_step=None, map_func=None): 781 if not network.built: 785 network._set_scope() # scope_name should be available to map_funcs 791 save_path = os.path.join(save_path, network.name.replace("/", "_")) 794 map_func = _make_prefix_stripping_map_fn(network.scope_name) 796 for variable in network.variables: 808 network_name=network.name, 809 network_scope_name=network.scope_name)) 820 network.name, mapped_name, 823 network.scope_name)) [all …]
|
D | network_test.py | 21 from tensorflow.contrib.eager.python import network 38 class MyNetwork(network.Network): 48 class RegularizedNetwork(network.Network): 74 checkpoint_path = network.save_network_checkpoint( 75 network=net, save_path=checkpoint_directory, global_step=global_step) 84 network.restore_network_checkpoint(net, save_path=checkpoint_directory) 90 network.restore_network_checkpoint(net, save_path=checkpoint_path) 97 net = network.Network() 134 network.save_network_checkpoint(net, self.get_temp_dir()) 148 save_path = network.save_network_checkpoint(net, self.get_temp_dir()) [all …]
|
/external/autotest/server/site_tests/network_WiFi_VerifyAttenuator/ |
D | network_WiFi_VerifyAttenuator.py | 9 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes 10 from autotest_lib.server.cros.network import attenuator_controller 11 from autotest_lib.server.cros.network import hostap_config 12 from autotest_lib.server.cros.network import wifi_cell_test_base 120 for network in scan_result: 121 if network.ssid == ssid and network.signal < LOW_POWER_SIGNAL: 125 network.signal) 126 attenuator_info.zeroed_scan_signal = network.signal 128 elif network.ssid == ssid and network.signal > LOW_POWER_SIGNAL: 130 network.signal) [all …]
|
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/ |
D | NeuQuant.java | 121 protected int[][] network; /* the network itself - [netsize][4] */ field in NeuQuant 149 network = new int[netsize][]; in NeuQuant() 151 network[i] = new int[4]; in NeuQuant() 152 p = network[i]; in NeuQuant() 163 index[network[i][3]] = i; in colorMap() 167 map[k++] = (byte) (network[j][0]); in colorMap() 168 map[k++] = (byte) (network[j][1]); in colorMap() 169 map[k++] = (byte) (network[j][2]); in colorMap() 189 p = network[i]; in inxbuild() 194 q = network[j]; in inxbuild() [all …]
|
/external/python/cpython3/Doc/library/ |
D | ipaddress.rst | 20 network definition, and so on. 58 representing the IP network. Either IPv4 or IPv6 networks may be supplied; 62 IPv6 address, or if the network has host bits set. 131 network. 344 for defining and inspecting IP network definitions. A network definition 345 consists of a *mask* and a *network address*, and as such defines a range of 346 IP addresses that equal the network address when masked (binary AND) with the 347 mask. For example, a network definition with the mask ``255.255.255.0`` and 348 the network address ``192.168.1.0`` consists of IP addresses in the inclusive 355 There are several equivalent ways to specify IP network masks. A *prefix* [all …]
|
/external/python/cpython3/Doc/howto/ |
D | ipaddress.rst | 19 to network engineers wanting an overview of how :mod:`ipaddress` 20 represents IP network addressing concepts. 85 :mod:`ipaddress` provides a way to create, inspect and manipulate network 86 definitions. IP network objects are constructed from strings that define the 87 range of host addresses that are part of that network. The simplest form 88 for that information is a "network address/network prefix" pair, where the 90 whether or not an address is part of the network and the network address 102 is that ``192.0.2.1/24`` does not describe a network. Such definitions are 103 referred to as interface objects since the ip-on-a-network notation is 104 commonly used to describe network interfaces of a computer on a given network [all …]
|
/external/grpc-grpc-java/documentation/ |
D | android-channel-builder.md | 5 register a network event listener upon channel construction. The listener is 6 used to automatically respond to changes in the device's network state, avoiding 13 with the app's Android Context. Notifications from the network listener will 14 cause the channel to immediately reconnect upon network recovery. 16 On Android API levels 24+, `AndroidChannelBuilder`'s network listener mechanism 18 device on a cellular network connects to a wifi network, there is a brief 20 available, then any connections on the cellular network are terminated. By 21 listening for changes in the device's default network, `AndroidChannelBuilder` 23 connection. Without listening for pending network changes, new RPCs sent on an 29 both the OkHttp and Cronet transports in the future, but the network listener [all …]
|
/external/ltp/testcases/lib/ |
D | tst_net_vars.c | 122 struct in_addr network; in calc_network() local 124 memset(&network, 0, sizeof(network)); in calc_network() 126 network.s_addr = ip->s_addr & mask->s_addr; in calc_network() 127 return network; in calc_network() 130 static int is_in_subnet_ipv4(const struct in_addr *network, in is_in_subnet_ipv4() argument 134 (network->s_addr & mask->s_addr); in is_in_subnet_ipv4() 137 static int is_in_subnet_ipv6(const struct in6_addr *network, in is_in_subnet_ipv6() argument 144 (((int *) network)[i] & ((int *) mask)[i])) in is_in_subnet_ipv6() 222 struct in_addr mask, network; in get_ipv4_net16_unused() local 226 network = calc_network(ip, &mask); in get_ipv4_net16_unused() [all …]
|
/external/autotest/client/cros/networking/chrome_testing/ |
D | test_utils.py | 17 def get_ui_property(network, property_name, expansion_level=1): argument 42 result = network 73 network = call_test_function_check_success( 77 value = get_ui_property(network, property_name, expansion_level) 88 network, expected_name, expected_type, check_name_prefix=True): 104 if network['Type'] != expected_type: 107 network["Type"]) 109 network_name = network['Name']
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowNetworkTest.java | 25 Network network = ShadowNetwork.newInstance(netId); in getNetId_shouldReturnConstructorNetId() local 26 ShadowNetwork shadowNetwork = Shadows.shadowOf(network); in getNetId_shouldReturnConstructorNetId() 33 Network network = ShadowNetwork.newInstance(0); in bindSocketDatagramSocket_shouldNotCrash() local 34 network.bindSocket(new DatagramSocket()); in bindSocketDatagramSocket_shouldNotCrash() 39 Network network = ShadowNetwork.newInstance(0); in bindSocketSocket_shouldNotCrash() local 40 network.bindSocket(new Socket()); in bindSocketSocket_shouldNotCrash() 46 Network network = ShadowNetwork.newInstance(0); in bindSocketFileDescriptor_shouldNotCrash() local 47 network.bindSocket(new FileDescriptor()); in bindSocketFileDescriptor_shouldNotCrash()
|
/external/tensorflow/tensorflow/python/keras/engine/ |
D | topology_test.py | 32 from tensorflow.python.keras.engine import network as network_lib 86 network = network_lib.Network(x2, y2) 87 self.assertEqual(len(network.updates), 2) 88 self.assertEqual(len(network.get_updates_for(x2)), 1) 89 self.assertEqual(len(network.get_updates_for(None)), 1) 93 self.assertEqual(len(network.updates), 2) 96 _ = network(x4) 97 self.assertEqual(len(network.updates), 3) 98 self.assertEqual(len(network.get_updates_for(x2)), 1) 99 self.assertEqual(len(network.get_updates_for(x4)), 1) [all …]
|
/external/volley/src/main/java/com/android/volley/toolbox/ |
D | Volley.java | 41 BasicNetwork network; in newRequestQueue() local 44 network = new BasicNetwork(new HurlStack()); in newRequestQueue() 59 network = in newRequestQueue() 64 network = new BasicNetwork(stack); in newRequestQueue() 67 return newRequestQueue(context, network); in newRequestQueue() 88 private static RequestQueue newRequestQueue(Context context, Network network) { in newRequestQueue() argument 90 RequestQueue queue = new RequestQueue(new DiskBasedCache(cacheDir), network); in newRequestQueue()
|
/external/python/cpython3/Lib/ |
D | ipaddress.py | 623 network = int(self.network_address) 625 for x in range(network + 1, broadcast): 629 network = int(self.network_address) 631 for x in range(network, broadcast + 1): 635 network = int(self.network_address) 638 if network + n > broadcast: 640 return self._address_class(network + n) 643 if broadcast + n < network: 1384 self.network = IPv4Network(self._ip) 1395 self.network = IPv4Network(address, strict=False) [all …]
|
/external/autotest/client/site_tests/policy_WiFiTypes/ |
D | policy_WiFiTypes.py | 31 network = pickle.loads(network_pickle) 35 network.autoconnect = autoconnect 38 user_policies={'OpenNetworkConfiguration': network.policy()}, 50 self.net_api.connect_to_network(network.ssid) 52 if not self.net_api.is_network_connected(network.ssid): 55 % (network.ssid, autoconnect))
|
/external/autotest/server/site_tests/policy_WiFiPrecedenceServer/ |
D | control.connectable_vs_not_connectable | 14 a WPA-PSK and Open network. The client test is given a network policy for 15 both networks with AutoConnect=True, but the PSK network is given the wrong 18 The open network should connect as the PSK network is inaccessible. 23 from autotest_lib.client.common_lib.cros.network import xmlrpc_security_types 25 from autotest_lib.server.cros.network import hostap_config 51 # Client network configurations.
|
/external/autotest/server/site_tests/policy_WiFiTypesServer/ |
D | control.wpa_psk | 13 'policy_WiFiTypesServer.wpa_psk' test configures an WPA-PSK network and runs 14 the client side 'policy_WiFiTypes' test that sets the user network policy and 19 from autotest_lib.client.common_lib.cros.network import xmlrpc_security_types 21 from autotest_lib.server.cros.network import hostap_config 34 network = NetworkConfig(password=password, security='WPA-PSK') 41 network=network)
|
/external/autotest/client/site_tests/network_ChromeWifiConfigure/ |
D | network_ChromeWifiConfigure.py | 23 def _test_property(self, network, property_name, expected_value): argument 24 value = test_utils.get_ui_property(network, property_name) 48 network = test_utils.call_test_function_check_success( 52 logging.info(' result: ' + str(network)) 54 self._test_property(network, 'Type', 'WiFi') 55 self._test_property(network, 'WiFi.Security', security)
|