HomeSort by relevance Sort by last modified time
    Searched refs:network (Results 51 - 75 of 1047) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/services/core/java/com/android/server/job/controllers/
ConnectivityController.java 27 import android.net.Network;
56 * status due to user-requested network policies, so we need to check
77 // We're interested in all network changes; internally we match these
78 // network changes against the active network for each UID with jobs.
105 * Test to see if running the given job on the given network is insane.
112 private static boolean isInsane(JobStatus jobStatus, Network network,
126 // We don't know what the network is like; cross our fingers!
135 + " kbps network would take " + estimatedMillis + "ms; that's insane!")
203 final Network network = mConnManager.getActiveNetworkForUid(jobStatus.getSourceUid()); local
257 Network network = uidToNetwork.get(uid); local
    [all...]
  /external/autotest/server/site_tests/network_WiFi_RetryConnectHidden/
network_WiFi_RetryConnectHidden.py 7 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
8 from autotest_lib.server.cros.network import hostap_config
9 from autotest_lib.server.cros.network import wifi_cell_test_base
16 1) Sets up a network with a single hidden BSS.
17 2) Connects the DUT to that network and that particular BSS.
48 # But shill should continue to probe around for the network.
  /external/autotest/client/cros/networking/chrome_testing/
chrome_networking_test_api.py 38 @return List of dictionaries containing wifi network information.
49 """Get list of enabled network devices on the device.
51 @return List of enabled network devices.
59 logging.info('Enabled Network Devices: %s', value)
63 def disable_network_device(self, network):
64 """Disable given network device.
66 @param network: string name of the network device to be disabled.
71 # network device because chrome.networkingPrivate.disableNetworkType API
72 # fails to disable the network device on subsequent calls if we do no
    [all...]
  /frameworks/base/core/java/android/net/
NetworkState.java 24 * Snapshot of network state.
36 public final Network network; field in class:NetworkState
41 NetworkCapabilities networkCapabilities, Network network, String subscriberId,
46 this.network = network;
50 // This object is an atomic view of a network, so the various components
65 network = in.readParcelable(null);
80 out.writeParcelable(network, flags)
    [all...]
  /external/curl/docs/cmdline-opts/
unix-socket.d 7 Connect through this Unix domain socket, instead of using the network.
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowNetwork.java 5 import android.net.Network;
10 @Implements(value = Network.class, minSdk = LOLLIPOP)
15 * Creates new instance of {@link Network}, because its constructor is hidden.
18 * @return The Network instance.
20 public static Network newInstance(int netId) {
21 Network network = Shadow.newInstance(Network.class, new Class[]{int.class}, new Object[]{netId}); local
22 return network;
  /external/strace/tests/
net-yy-inet.test 37 run_strace -a22 -yy -eclose,network $args > "$EXP"
net-yy-netlink.test 40 run_strace -a22 -yy -eclose,network $args > "$EXP"
net-yy-unix.test 38 run_strace -a22 -yy -eclose,network $args > "$EXP"
  /external/strace/tests-m32/
net-yy-inet.test 37 run_strace -a22 -yy -eclose,network $args > "$EXP"
net-yy-netlink.test 40 run_strace -a22 -yy -eclose,network $args > "$EXP"
net-yy-unix.test 38 run_strace -a22 -yy -eclose,network $args > "$EXP"
  /external/strace/tests-mx32/
net-yy-inet.test 37 run_strace -a22 -yy -eclose,network $args > "$EXP"
net-yy-netlink.test 40 run_strace -a22 -yy -eclose,network $args > "$EXP"
net-yy-unix.test 38 run_strace -a22 -yy -eclose,network $args > "$EXP"
  /external/wpa_supplicant_8/wpa_supplicant/examples/
openCryptoki.conf 22 network={
23 ssid="test network"
28 # use OpenSSL PKCS#11 engine for this network
  /frameworks/base/services/core/java/com/android/server/net/
NetworkPolicyManagerInternal.java 19 import android.net.Network;
26 * Network Policy Manager local system service interface.
50 * that network rules for that appId can be updated.
58 * Return the active {@link SubscriptionPlan} for the given network.
60 public abstract SubscriptionPlan getSubscriptionPlan(Network network);
72 * the given network to improve the end user experience. It's called
74 * given network.
76 public abstract long getSubscriptionOpportunisticQuota(Network network, int quotaType)
    [all...]
  /external/tensorflow/tensorflow/python/layers/
network_test.py 15 """Tests for tf.layers.network."""
28 from tensorflow.python.layers import network as network_layers
75 network = network_layers.GraphNetwork(x2, y2)
76 self.assertEqual(len(network.updates), 2)
77 self.assertEqual(len(network.get_updates_for(x1)), 0)
78 self.assertEqual(len(network.get_updates_for(x2)), 1)
79 self.assertEqual(len(network.get_updates_for(None)), 1)
83 self.assertEqual(len(network.updates), 2)
86 _ = network(x4)
87 self.assertEqual(len(network.updates), 3
548 network = network_layers.GraphNetwork(x, y) variable in class:NetworkTest.testMaskingSingleInput.MaskedLayer
    [all...]
  /external/autotest/client/site_tests/network_ChromeWifiEndToEnd/
network_ChromeWifiEndToEnd.py 24 4. Tests that the DUT autoconnects to previously connected WiFi network.
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)
58 @raises error.TestFail if network names do not match.
64 'Following network does not match: %s' % name
    [all...]
  /tools/test/connectivity/acts/tests/google/wifi/
WifiAutoUpdateTest.py 46 network.
76 "Need at least two reference network with psk.")
79 "Need at least two open network with psk.")
117 def add_network_and_enable(self, network):
118 """Add a network and enable it.
121 network : Network details for the network to be added.
124 ret = self.dut.droid.wifiAddNetwork(network)
125 asserts.assert_true(ret != -1, "Add network %r failed" % network
    [all...]
  /device/google/cuttlefish_common/guest/monitoring/vsoc_service/java/com/android/google/gce/gceservice/
ConnectivityChecker.java 47 for (NetworkInfo network : networks) {
48 if (network.isConnected()) {
49 connected.add(network.getTypeName());
53 disconnected.add(network.getTypeName());
  /external/autotest/server/site_tests/apmanager_SimpleConnect/
apmanager_SimpleConnect.py 6 from autotest_lib.client.common_lib.cros.network import apmanager_constants
7 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
8 from autotest_lib.server.cros.network import apmanager_service_provider
9 from autotest_lib.server.cros.network import wifi_cell_test_base
  /external/autotest/server/site_tests/network_WiFi_BeaconInterval/
network_WiFi_BeaconInterval.py 5 from autotest_lib.client.common_lib.cros.network import iw_runner
6 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
7 from autotest_lib.server.cros.network import hostap_config
8 from autotest_lib.server.cros.network import wifi_cell_test_base
  /external/autotest/server/site_tests/network_WiFi_DTIMPeriod/
network_WiFi_DTIMPeriod.py 5 from autotest_lib.client.common_lib.cros.network import iw_runner
6 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
7 from autotest_lib.server.cros.network import hostap_config
8 from autotest_lib.server.cros.network import wifi_cell_test_base
  /external/autotest/server/site_tests/network_WiFi_MultiAuth/
network_WiFi_MultiAuth.py 5 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
6 from autotest_lib.client.common_lib.cros.network import xmlrpc_security_types
7 from autotest_lib.server.cros.network import hostap_config
8 from autotest_lib.server.cros.network import wifi_cell_test_base

Completed in 816 milliseconds

1 23 4 5 6 7 8 91011>>