/external/wpa_supplicant_8/wpa_supplicant/examples/ |
plaintext.conf | 1 # Plaintext (no encryption) network 5 network={ 6 ssid="example open network"
|
ieee8021x.conf | 5 network={ 6 ssid="example 802.1x network"
|
wep.conf | 5 network={ 6 ssid="example wep network"
|
wpa-psk-tkip.conf | 5 network={ 6 ssid="example wpa-psk network"
|
/packages/apps/Settings/src/com/android/settings/wifi/ |
CaptivePortalNetworkCallback.java | 19 import android.net.Network; 28 private final Network mNetwork; 33 Network network, ConnectedAccessPointPreference connectedApPreference) { 34 mNetwork = Preconditions.checkNotNull(network); 39 public void onLost(Network network) { 40 if (mNetwork.equals(network)) { 46 public void onCapabilitiesChanged(Network network, NetworkCapabilities networkCapabilities) [all...] |
/frameworks/base/telephony/java/com/android/ims/ |
ImsConfigListener.aidl | 29 * @param network. as defined in android.telephony.TelephonyManager#NETWORK_TYPE_XXX. 34 void onGetFeatureResponse(int feature, int network, int value, int status); 44 * @param network. as defined in android.telephony.TelephonyManager#NETWORK_TYPE_XXX. 50 void onSetFeatureResponse(int feature, int network, int value, int status);
|
/system/update_engine/ |
network_selector.h | 25 namespace network { namespace in namespace:chromeos_update_engine 30 } // namespace network
|
/frameworks/native/include/android/ |
multinetwork.h | 27 * The corresponding C type for android.net.Network#getNetworkHandle() return 38 * The value NETWORK_UNSPECIFIED indicates no specific network. 44 * not used to indicate some notion of the "current default network". 57 * Set the network to be used by the given socket file descriptor. 61 * This is the equivalent of: [android.net.Network#bindSocket()](https://developer.android.com/reference/android/net/Network.html#bindSocket(java.net.Socket)) 64 int android_setsocknetwork(net_handle_t network, int fd); 68 * Binds the current process to |network|. All sockets created in the future 70 * |network|. All host name resolutions will be limited to |network| as well [all...] |
/external/iproute2/ip/ |
routel | 18 while read network rest 27 case $network in 28 broadcast|local|unreachable) via=$network 29 network=$1 52 echo "$network $via $src $proto $scope $dev $table" 58 { network=$1; 60 if(match(network,"/")) 61 { mask=" "substr(network,RSTART+1); 62 network=substr(network,0,RSTART) [all...] |
/external/autotest/server/site_tests/network_WiFi_ChaosConfigSniffer/ |
network_WiFi_ChaosConfigSniffer.py | 10 from autotest_lib.client.common_lib.cros.network import iw_runner 29 network = networks[0] 32 f.write(pprint.pformat(network)) 34 f.write('[%s]\n' % network.bss) 38 f.write('ssid = %s\n' % network.ssid) 39 f.write('frequency = %s\n' % network.frequency) 41 if network.frequency > 2484: 42 f.write('bss5 = %s\n' % network.bss) 44 f.write('bss = %s\n' % network.bss) 47 f.write('security = %s\n' % network.security [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
wpa_supplicant.conf | 19 # file whenever configuration is changed (e.g., new network block is added with 26 # global configuration (shared by all network blocks) 46 # possible to run wpa_supplicant as root (since it needs to change network 49 # change the network configuration, this access needs to be protected in many 95 # the currently enabled networks are found, a new network (IBSS or AP mode 105 # the network blocks in the configuration file are tried one by one until 106 # the driver reports successful association; each network block should have 111 # For finding networks using hidden SSID, scan_ssid=1 in the network block can 113 # When using IBSS or AP mode, ap_scan=2 mode can force the new network to be 116 # networks are found, a new IBSS or AP mode network is created [all...] |
/frameworks/base/services/net/java/android/net/dns/ |
ResolvUtil.java | 21 import android.net.Network; 44 public static InetAddress[] blockingResolveAllLocally(Network network, String name) 47 return blockingResolveAllLocally(network, name, AI_ADDRCONFIG); 51 Network network, String name, int aiFlags) throws UnknownHostException { 58 final Network networkForResolv = getNetworkWithUseLocalNameserversFlag(network); 68 public static Network getNetworkWithUseLocalNameserversFlag(Network network) [all...] |
/cts/tests/tests/net/src/android/net/cts/ |
MultinetworkApiTest.java | 21 import android.net.Network; 54 private Network[] getTestableNetworks() { 55 final ArrayList<Network> testableNetworks = new ArrayList<Network>(); 56 for (Network network : mCM.getAllNetworks()) { 57 final NetworkCapabilities nc = mCM.getNetworkCapabilities(network); 61 testableNetworks.add(network); 66 "This test requires that at least one network be connected. " + 67 "Please ensure that the device is connected to a network." [all...] |
/external/strace/tests/ |
net.test | 3 # Check how network syscalls are traced. 8 run_strace_merge -e%network $args
|
/external/strace/tests-m32/ |
net.test | 3 # Check how network syscalls are traced. 8 run_strace_merge -e%network $args
|
/external/strace/tests-mx32/ |
net.test | 3 # Check how network syscalls are traced. 8 run_strace_merge -e%network $args
|
/external/autotest/server/site_tests/network_WiFi_Reassociate/ |
network_WiFi_Reassociate.py | 5 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes 6 from autotest_lib.server.cros.network import hostap_config 7 from autotest_lib.server.cros.network import wifi_cell_test_base
|
/tools/test/connectivity/acts/framework/acts/test_utils/wifi/ |
WifiBaseTest.py | 52 """Generates SSID and passphrase for a WPA2 network using random 61 passphrase_length_2g: Int, length of password for 2G network. 62 passphrase_length_5g: Int, length of password for 5G network. 63 Returns: A dict of 2G and 5G network lists for hostapd configuration. 121 """Generates SSIDs for a open network using a random generator. 129 Returns: A dict of 2G and 5G network lists for hostapd configuration. 170 """Get bssid for a given SSID and add it to the network dictionary. 183 for network in itertools.chain(networks_5g, networks_2g): 184 if 'channel' in network: 186 bssid = ap.get_bssid_from_ssid(network["SSID"] [all...] |
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/ |
ChartData.java | 22 public NetworkStatsHistory network; field in class:ChartData
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/ |
WifiSavedConfigUtils.java | 41 for (WifiConfiguration network : savedNetworks) { 42 // Configuration for Passpoint network is configured temporary by WifiService for 46 if (network.isPasspoint()) { 50 if (network.isEphemeral()) { 53 savedConfigs.add(new AccessPoint(context, network));
|
/frameworks/base/wifi/java/android/net/wifi/ |
WifiNetworkScoreCache.java | 47 // A Network scorer returns a score in the range [-128, +127] 49 // scorer to provide an RSSI threshold below which a network should not be used. 100 for (ScoredNetwork network : networks) { 101 String networkKey = buildNetworkKey(network); 104 Log.d(TAG, "Failed to build network key for ScoredNetwork" + network); 108 mCache.put(networkKey, network); 128 * scores from the network scorer. 137 * A null score curve has special meaning - we should never connect to an ephemeral network if 141 ScoredNetwork network = getScoredNetwork(result) local 148 ScoredNetwork network = getScoredNetwork(result); local 166 ScoredNetwork network = getScoredNetwork(result); local 173 ScoredNetwork network = getScoredNetwork(result); local 192 ScoredNetwork network = mCache.get(key); local [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/network/ |
AuthException.java | 17 package com.android.inputmethod.latin.network;
|
/frameworks/base/services/core/java/com/android/server/connectivity/tethering/ |
UpstreamNetworkMonitor.java | 33 import android.net.Network; 52 * A class to centralize all the network and link properties information 53 * pertaining to the current and any potential upstream network. 56 * network and a second to observe all networks. The latter is necessary 92 private final HashMap<Network, NetworkState> mNetworkMap = new HashMap<>(); 99 // The current system default network (not really used yet). 100 private Network mDefaultInternetNetwork; 101 // The current upstream network used for tethering. 102 private Network mTetheringUpstreamNetwork; 174 // The existing default network and DUN callbacks will be notified [all...] |
/external/autotest/client/cros/networking/chrome_testing/ |
test_utils.py | 17 def get_ui_property(network, property_name, expansion_level=1): 22 @param network: A JSON dictionary containing network data, as returned by 42 result = network 58 Polls until the given network property has the expected value. 62 @param network_guid: GUID of the network. 73 network = call_test_function_check_success( 77 value = get_ui_property(network, property_name, expansion_level) 81 error.TestFail('Property "' + property_name + '" on network "' + 88 network, expected_name, expected_type, check_name_prefix=True) [all...] |
/external/autotest/server/site_tests/network_WiFi_Manual/ |
network_WiFi_Manual.py | 7 from autotest_lib.server.cros.network import hostap_config 8 from autotest_lib.server.cros.network import wifi_cell_test_base
|