/external/strace/tests/ |
net-y-unix.test | 3 # Check decoding of network syscalls in -y mode. 35 run_strace -a20 -y -eclose,network $args > "$EXP"
|
/external/strace/tests-m32/ |
net-y-unix.test | 3 # Check decoding of network syscalls in -y mode. 35 run_strace -a20 -y -eclose,network $args > "$EXP"
|
/external/strace/tests-mx32/ |
net-y-unix.test | 3 # Check decoding of network syscalls in -y mode. 35 run_strace -a20 -y -eclose,network $args > "$EXP"
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wpa2-eap-ccmp.conf | 5 network={ 6 ssid="example wpa2-eap network"
|
/frameworks/base/core/java/com/android/server/net/ |
NetworkPinner.java | 22 import android.net.Network; 30 * A class that pins a process to the first network that satisfies a particular NetworkRequest. 33 * to connect to a Wi-Fi network that has no Internet access, and then assume that they will be 34 * able to use that network because it's the system default. 37 * we try not to set the default network unless they have already done so, and we try not to 38 * clear the default network unless we set it ourselves. 41 * any wifi network that was created via enableNetwork(..., true) until that network 44 * Note that while this hack allows network traffic to flow, it is quite limited. For example: 51 * - getActiveNetworkInfo will return the system default network, not Wi-Fi [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
CarrierNetworkNotifier.java | 32 * This class handles the "carrier wi-fi network available" notification 60 WifiConfiguration network = ScanResultUtil.createNetworkFromScanResult(recommendedNetwork); local 64 network.allowedKeyManagement.set(KeyMgmt.WPA_EAP); 65 network.allowedKeyManagement.set(KeyMgmt.IEEE8021X); 66 network.enterpriseConfig = new WifiEnterpriseConfig(); 67 network.enterpriseConfig.setEapMethod(recommendedNetwork.carrierApEapType); 68 network.enterpriseConfig.setIdentity(""); 69 network.enterpriseConfig.setAnonymousIdentity(""); 72 return network;
|
SavedNetworkEvaluator.java | 96 for (WifiConfiguration network : savedNetworks) { 99 * network, but without being persisted to the storage. They are managed 102 if (network.isPasspoint()) { 108 mWifiConfigManager.tryEnableNetwork(network.networkId); 114 mWifiConfigManager.clearNetworkCandidateScanResult(network.networkId); 116 // Log disabled network. 117 WifiConfiguration.NetworkSelectionStatus status = network.getNetworkSelectionStatus(); 119 sbuf.append(" ").append(WifiNetworkSelector.toNetworkString(network)).append(" "); 127 // network may not be disabled because of this particular reason. Logging 128 // this information anyway to help understand what happened to the network 243 WifiConfiguration network = local [all...] |
/packages/apps/Dialer/java/com/android/voicemail/impl/sync/ |
VvmNetworkRequest.java | 20 import android.net.Network; 33 * Class to retrieve a {@link Network} synchronously. {@link #getNetwork(OmtpVvmCarrierConfigHelper, 34 * PhoneAccountHandle)} will block until a suitable network is retrieved or it has failed. 43 * A wrapper around a Network returned by a {@link VvmNetworkRequestCallback}, which should be 48 private final Network network; field in class:VvmNetworkRequest.NetworkWrapper 51 private NetworkWrapper(Network network, VvmNetworkRequestCallback callback) { 52 this.network = network; [all...] |
/external/autotest/client/site_tests/network_ChromeWifiConfigure/ |
network_ChromeWifiConfigure.py | 18 a WiFi network and retreive the properties of that network. 23 def _test_property(self, network, property_name, expected_value): 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)
|
/frameworks/base/native/android/ |
net.c | 29 // the android.net.Network#getNetworkHandle() implementation. 45 int android_setsocknetwork(net_handle_t network, int fd) { 47 if (!getnetidfromhandle(network, &netid)) { 60 int android_setprocnetwork(net_handle_t network) { 62 if (!getnetidfromhandle(network, &netid)) { 75 int android_getaddrinfofornetwork(net_handle_t network, 79 if (!getnetidfromhandle(network, &netid)) {
|
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/proxy/ |
direct.go | 13 // Direct is a direct proxy: one that makes network connections directly. 16 func (direct) Dial(network, addr string) (net.Conn, error) { 17 return net.Dial(network, addr)
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/net/proxy/ |
direct.go | 13 // Direct is a direct proxy: one that makes network connections directly. 16 func (direct) Dial(network, addr string) (net.Conn, error) { 17 return net.Dial(network, addr)
|
/tools/test/connectivity/acts/tests/google/wifi/ |
WifiSoftApAcsTest.py | 44 * 2GHz and 5GHz Wi-Fi network visible to the device. 109 params: A tuple of network info and AndroidDevice object. 113 network, ad = params 114 SSID = network[WifiEnums.SSID_KEY] 145 softap: The softap network configuration information. 160 channel_2g: The channel number to use for 2GHz network. 161 channel_5g: The channel number to use for 5GHz network. 173 def start_traffic_and_softap(self, network, softap_band): 177 network: Network information of the network to connect to [all...] |
/frameworks/base/core/tests/coretests/src/android/net/ |
ScoredNetworkTest.java | 149 ScoredNetwork network = new ScoredNetwork(KEY, null /* rssiCurve */); local 150 assertFalse(network.hasRankingScore()); 155 ScoredNetwork network = local 157 assertTrue(network.hasRankingScore()); 162 ScoredNetwork network = local 164 assertTrue(network.hasRankingScore()); 169 ScoredNetwork network = new ScoredNetwork(KEY, CURVE, true /* meteredHint */, ATTRIBUTES); local 175 network.writeToParcel(parcel, 0 /* flags */); 195 ScoredNetwork network = new ScoredNetwork(KEY, CURVE, true /* meteredHint */); local 201 network.writeToParcel(parcel, 0 /* flags */) 218 ScoredNetwork network = new ScoredNetwork(KEY, CURVE); local 224 ScoredNetwork network = new ScoredNetwork(KEY, CURVE, false \/* meteredHint *\/, ATTRIBUTES); local 230 ScoredNetwork network = local 237 ScoredNetwork network = local 244 ScoredNetwork network = local 251 ScoredNetwork network = local [all...] |
/prebuilts/go/darwin-x86/doc/progs/ |
gobs2.go | 26 // bound to network connections and the encoder and decoder would 28 var network bytes.Buffer // Stand-in for a network connection 29 enc := gob.NewEncoder(&network) // Will write to network. 30 dec := gob.NewDecoder(&network) // Will read from network.
|
/prebuilts/go/linux-x86/doc/progs/ |
gobs2.go | 26 // bound to network connections and the encoder and decoder would 28 var network bytes.Buffer // Stand-in for a network connection 29 enc := gob.NewEncoder(&network) // Will write to network. 30 dec := gob.NewDecoder(&network) // Will read from network.
|
/external/volley/src/main/java/com/android/volley/toolbox/ |
Volley.java | 25 import com.android.volley.Network; 39 * @param stack A {@link BaseHttpStack} to use for the network, or null for default. 43 BasicNetwork network; local 46 network = new BasicNetwork(new HurlStack()); 60 network = new BasicNetwork( 64 network = new BasicNetwork(stack); 67 return newRequestQueue(context, network); 74 * @param stack An {@link HttpStack} to use for the network, or null for default. 88 private static RequestQueue newRequestQueue(Context context, Network network) { [all...] |
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/internal/nettest/ |
interface.go | 10 // network interface. Network must be "ip", "ip4" or "ip6". 11 func IsMulticastCapable(network string, ifi *net.Interface) (net.IP, bool) { 12 switch network { 20 return hasRoutableIP(network, ifi) 23 // RoutedInterface returns a network interface that can route IP 25 // network interface is not found. Network must be "ip", "ip4" or 27 func RoutedInterface(network string, flags net.Flags) *net.Interface { 28 switch network { [all...] |
/prebuilts/go/linux-x86/src/vendor/golang_org/x/net/internal/nettest/ |
interface.go | 10 // network interface. Network must be "ip", "ip4" or "ip6". 11 func IsMulticastCapable(network string, ifi *net.Interface) (net.IP, bool) { 12 switch network { 20 return hasRoutableIP(network, ifi) 23 // RoutedInterface returns a network interface that can route IP 25 // network interface is not found. Network must be "ip", "ip4" or 27 func RoutedInterface(network string, flags net.Flags) *net.Interface { 28 switch network { [all...] |
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/ |
dhcp_config.py | 24 network: ipaddress.IPv4Network, the network that this subnet is in. 39 subnet_address: ipaddress.IPv4Network, The network that this 43 the network is used. 45 hosts. If not given then the last ip in the network is used. 47 subnet. If not given the first ip in the network is used. 51 self.network = subnet 56 self.start = self.network[2] 58 if not self.start in self.network: 66 self.end = self.network[-2 [all...] |
/external/autotest/client/site_tests/network_ChromeCellularNetworkPresent/ |
network_ChromeCellularNetworkPresent.py | 16 setup a fake network and verify that it properly propagates to Chrome. 29 'Expected 1 cellular network, found ' + 32 network = networks[0] 33 if network["Type"] != test_context.CHROME_NETWORK_TYPE_CELLULAR: 35 'Expected network of type "Cellular", found ' + 36 network["Type"]) 38 if not network["Name"].startswith( 40 raise error.TestFail('Network name is incorrect: ' + 41 network["Name"])
|
/prebuilts/go/darwin-x86/src/net/ |
conn_test.go | 21 for i, network := range []string{"tcp", "unix", "unixpacket"} { 22 if !testableNetwork(network) { 23 t.Logf("skipping %s test", network) 27 ls, err := newLocalServer(network) 37 if ls.Listener.Addr().Network() != network { 38 t.Fatalf("got %s; want %s", ls.Listener.Addr().Network(), network) 41 c, err := Dial(ls.Listener.Addr().Network(), ls.Listener.Addr().String()) 46 if c.LocalAddr().Network() != network || c.RemoteAddr().Network() != network [all...] |
/prebuilts/go/linux-x86/src/net/ |
conn_test.go | 21 for i, network := range []string{"tcp", "unix", "unixpacket"} { 22 if !testableNetwork(network) { 23 t.Logf("skipping %s test", network) 27 ls, err := newLocalServer(network) 37 if ls.Listener.Addr().Network() != network { 38 t.Fatalf("got %s; want %s", ls.Listener.Addr().Network(), network) 41 c, err := Dial(ls.Listener.Addr().Network(), ls.Listener.Addr().String()) 46 if c.LocalAddr().Network() != network || c.RemoteAddr().Network() != network [all...] |
/system/connectivity/wificond/scanning/ |
pno_settings.cpp | 39 for (const auto& network : pno_networks_) { 43 RETURN_IF_FAILED(network.writeToParcel(parcel)); 55 PnoNetwork network; local 66 RETURN_IF_FAILED(network.readFromParcel(parcel)); 67 pno_networks_.push_back(network);
|
/external/ltp/android/ |
Android.ltp.mk | 17 module_src_files := testcases/network/stress/tcp/uni-tso/tcp4-uni-tso08 21 module_src_files := testcases/network/tcp_cmds/ssh/ssh02_s1 25 module_src_files := testcases/network/stress/tcp/uni-sackoff/tcp6-uni-sackoff11 29 module_src_files := testcases/network/stress/tcp/uni-sackoff/tcp6-uni-sackoff10 33 module_src_files := testcases/network/stress/tcp/uni-sackoff/tcp6-uni-sackoff13 37 module_src_files := testcases/network/stress/tcp/uni-sackoff/tcp6-uni-sackoff12 49 module_src_files := testcases/network/stress/multicast/grp-operation/mcast-group-source-filter 57 module_src_files := testcases/network/busy_poll/busy_poll01.sh 77 module_src_files := testcases/network/stress/tcp/multi-diffip/tcp4-multi-diffip10 81 module_src_files := testcases/network/stress/tcp/multi-diffip/tcp4-multi-diffip1 [all...] |