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

<<21222324252627282930>>

  /external/autotest/frontend/server/
models.py 13 from autotest_lib.client.common_lib.cros.network import ping_runner
143 does not exist in the network, InvalidDataError will be raised.
  /external/autotest/server/
site_linux_system.py 15 from autotest_lib.client.common_lib.cros.network import interface
16 from autotest_lib.client.common_lib.cros.network import iw_runner
17 from autotest_lib.client.common_lib.cros.network import ping_runner
18 from autotest_lib.server.cros.network import packet_capturer
  /external/autotest/server/site_tests/brillo_WifiInterfaceTest/
brillo_WifiInterfaceTest.py 11 from autotest_lib.client.common_lib.cros.network import iw_runner
  /external/autotest/site_utils/lxc/
utils.py 17 from autotest_lib.client.common_lib.cros.network import interface
42 This function gets the IP address on network interface lxcbr*. The
43 assumption is that lxc uses the network interface started with "lxcbr".
47 # The kernel publishes symlinks to various network devices in /sys.
58 raise error.ContainerError('Failed to find network interface used by '
  /external/curl/tests/
http_pipe.py 37 https://dev.chromium.org/developers/design-documents/network-stack/http-pipelining
  /external/ltp/testscripts/
runEALtests.sh 31 # generator sections. Also added network traffic
64 -n Run LTP with network traffic in background.
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Cache.java 58 * <li><strong>{@linkplain #getNetworkCount() Network Count:}</strong> the number of those
59 * requests that required network use.
67 * is still valid. Such responses increment both the network count and hit count.
74 * <h3>Force a Network Response</h3>
147 @Override public void update(Response cached, Response network) throws IOException {
148 Cache.this.update(cached, network);
251 private void update(Response cached, Response network) {
252 Entry entry = new Entry(network);
402 // This response uses the cache and not the network. That's a cache hit.
  /external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/internal/huc/
URLEncodingTest.java 150 public void update(Response cached, Response network) throws IOException {
  /external/python/cpython2/Demo/tix/samples/
NoteBook.py 46 nb.add('network', label="Network", underline=0)
80 tab = nb.network
  /external/tensorflow/tensorflow/python/layers/
layers.py 71 from tensorflow.python.layers.network import Input
  /external/webrtc/webrtc/test/
rtp_file_reader.cc 324 // Since we're dealing with raw network data here, we will wrongly identify
412 uint32_t network; // Data link type. local
416 TRY_PCAP(Read(&network, false));
420 if (network != kLinktypeNull && network != kLinktypeEthernet) {
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/
ChartDataLoader.java 37 * Loader for historical chart data for both network and UID details.
82 throw new RuntimeException("problem reading network stats", e);
89 data.network = mSession.getHistoryForNetwork(template, fields);
  /frameworks/base/services/core/java/com/android/server/connectivity/
DefaultNetworkMetrics.java 33 * Tracks events related to the default network for the purpose of default network metrics.
51 // Information about the current status of the default network.
54 // True if the current default network has been validated.
59 // Transport information about the last default network.
68 pw.println("default network events:");
75 // When printing default network events for bug reports, update validation time
128 // oldNai is null if the system had no default network before the transition.
130 // The system acquired a new default network.
134 // Only change transport of the previous default network if the event currently logge
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiConfigManager.java 87 * All network configurations retrieved from this class are copies of the original configuration
104 * Quick settings to modify network configurations.
109 * Network Selection disable reason thresholds. These numbers are used to debounce network
132 * Network Selection disable timeout for each kind of error. After the timeout milliseconds,
133 * enable the network again.
155 * Interface for other modules to listen to the saved network updated
160 * Invoked on saved network being added.
164 * Invoked on saved network being enabled.
168 * Invoked on saved network being permanently disabled
454 WifiConfiguration network = new WifiConfiguration(configuration); local
2017 WifiConfiguration network = getConfiguredNetworkForScanDetail(scanDetail); local
2081 WifiConfiguration network = getInternalConfiguredNetwork(networkId); local
    [all...]
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/background/systemjob/
SystemJobService.java 102 runtimeExtras.network = params.getNetwork();
  /packages/apps/Settings/src/com/android/settings/dashboard/
DashboardFragmentRegistry.java 34 import com.android.settings.network.NetworkDashboardFragment;
  /packages/apps/Settings/src/com/android/settings/network/
AirplaneModePreferenceController.java 16 package com.android.settings.network;
ApnPreference.java 17 package com.android.settings.network;
MobileNetworkPreferenceController.java 16 package com.android.settings.network;
NetworkScorerPicker.java 16 package com.android.settings.network;
38 * Fragment for choosing default network scorer.
  /packages/apps/Settings/tests/robotests/src/com/android/settings/network/
NetworkDashboardFragmentTest.java 16 package com.android.settings.network;
NetworkScorerPickerPreferenceControllerTest.java 17 package com.android.settings.network;
VpnPreferenceControllerTest.java 17 package com.android.settings.network;
  /prebuilts/go/darwin-x86/src/net/
interface_unix_test.go 46 t.Skip("avoid external network")
100 t.Skip("avoid external network")
tcpsock_test.go 293 network string
334 addr, err := ResolveTCPAddr(tt.network, tt.litAddrOrName)
336 t.Errorf("ResolveTCPAddr(%q, %q) = %#v, %v, want %#v, %v", tt.network, tt.litAddrOrName, addr, err, tt.addr, tt.err)
340 addr2, err := ResolveTCPAddr(addr.Network(), addr.String())
342 t.Errorf("(%q, %q): ResolveTCPAddr(%q, %q) = %#v, %v, want %#v, %v", tt.network, tt.litAddrOrName, addr.Network(), addr.String(), addr2, err, tt.addr, tt.err)
381 ln, err := Listen(tt.network, tt.address)
402 c, err := Dial(tt.network, ls.Listener.Addr().String())
636 c, err := d.Dial(ln.Addr().Network(), ln.Addr().String())
641 network := c.LocalAddr().Network(
    [all...]

Completed in 533 milliseconds

<<21222324252627282930>>