/packages/apps/StorageManager/robotests/src/com/android/storagemanager/automatic/ |
JobPreconditionsTest.java | 21 import android.net.Network; 52 @Mock Network mWifiNetwork; 55 private ArrayList<Network> mNetworkList; 56 private HashMap<Network, NetworkInfo> mNetworkMap; 104 // TODO(b/31224380): Checking if a network is metered relies on a hidden API which we cannot 110 * getNetworkInfo(Network) method to return a lookup in our local network -> network info map. 113 doReturn(mNetworkList.toArray(new Network[mNetworkList.size()])) 115 when(mConnectivityManager.getNetworkInfo(any(Network.class))).thenAnswer [all...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/network/ |
BlockingHttpClientTests.java | 17 package com.android.inputmethod.latin.network; 27 import com.android.inputmethod.latin.network.BlockingHttpClient.ResponseProcessor;
|
/prebuilts/go/darwin-x86/src/net/ |
cgo_stub.go | 23 func cgoLookupPort(ctx context.Context, network, service string) (port int, err error, completed bool) {
|
lookup_unix.go | 79 func (r *Resolver) lookupPort(ctx context.Context, network, service string) (int, error) { 81 if port, err, ok := cgoLookupPort(ctx, network, service); ok { 85 if port, err := goLookupPort(network, service); err == nil { 92 return goLookupPort(network, service)
|
udpsock_plan9_test.go | 21 t.Skip("no network interfaces found")
|
udpsock_posix.go | 105 func listenUDP(ctx context.Context, network string, laddr *UDPAddr) (*UDPConn, error) { 106 fd, err := internetSocket(ctx, network, laddr, nil, syscall.SOCK_DGRAM, 0, "listen") 113 func listenMulticastUDP(ctx context.Context, network string, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) { 114 fd, err := internetSocket(ctx, network, gaddr, nil, syscall.SOCK_DGRAM, 0, "listen")
|
/prebuilts/go/darwin-x86/src/syscall/ |
route_netbsd.go | 30 // network interface arrival and departure information.
|
route_openbsd.go | 30 // network interface arrival and departure information.
|
/prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/lif/ |
lif.go | 8 // logical network interfaces and interface addresses on Solaris.
|
/prebuilts/go/linux-x86/src/net/ |
cgo_stub.go | 23 func cgoLookupPort(ctx context.Context, network, service string) (port int, err error, completed bool) {
|
lookup_unix.go | 79 func (r *Resolver) lookupPort(ctx context.Context, network, service string) (int, error) { 81 if port, err, ok := cgoLookupPort(ctx, network, service); ok { 85 if port, err := goLookupPort(network, service); err == nil { 92 return goLookupPort(network, service)
|
udpsock_plan9_test.go | 21 t.Skip("no network interfaces found")
|
udpsock_posix.go | 105 func listenUDP(ctx context.Context, network string, laddr *UDPAddr) (*UDPConn, error) { 106 fd, err := internetSocket(ctx, network, laddr, nil, syscall.SOCK_DGRAM, 0, "listen") 113 func listenMulticastUDP(ctx context.Context, network string, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) { 114 fd, err := internetSocket(ctx, network, gaddr, nil, syscall.SOCK_DGRAM, 0, "listen")
|
/prebuilts/go/linux-x86/src/syscall/ |
route_netbsd.go | 30 // network interface arrival and departure information.
|
route_openbsd.go | 30 // network interface arrival and departure information.
|
/prebuilts/go/linux-x86/src/vendor/golang_org/x/net/lif/ |
lif.go | 8 // logical network interfaces and interface addresses on Solaris.
|
/tools/test/connectivity/acts/framework/acts/controllers/ap_lib/ |
dhcp_server.py | 204 address = subnet.network.network_address 205 mask = subnet.network.netmask
|
/external/autotest/client/cros/cellular/ |
modem.py | 22 GSM_NETWORK_INTERFACE = 'org.freedesktop.ModemManager.Modem.Gsm.Network' 158 network = self.GsmNetwork() 159 _, operator_code, operator_name = network.GetRegistrationInfo() 189 network = self.GsmNetwork() 190 (status, unused_code, unused_name) = network.GetRegistrationInfo() 206 """Ensure that modem is registered on the network.""" 210 """Ensure that modem is registered on the network with a technology."""
|
/external/autotest/client/site_tests/network_BasicProfileProperties/ |
network_BasicProfileProperties.py | 9 from autotest_lib.client.common_lib.cros.network import interface
|
/external/autotest/client/site_tests/network_FirewallHolePunch/ |
network_FirewallHolePunch.py | 11 from autotest_lib.client.common_lib.cros.network import interface
|
/external/autotest/server/cros/ap_configurators/ |
ap_cartridge.py | 10 from autotest_lib.client.common_lib.cros.network import ap_constants
|
/external/autotest/server/cros/chaos_lib/ |
chaos_runner.py | 14 from autotest_lib.client.common_lib.cros.network import ap_constants 15 from autotest_lib.client.common_lib.cros.network import iw_runner 22 from autotest_lib.server.cros.network import chaos_clique_utils as utils 23 from autotest_lib.server.cros.network import wifi_client
|
/external/autotest/server/cros/network/ |
frame_sender.py | 5 from autotest_lib.server.cros.network import hostap_config
|
wifi_test_context_manager.py | 8 from autotest_lib.client.common_lib.cros.network import ping_runner 9 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes 14 from autotest_lib.server.cros.network import attenuator_controller 15 from autotest_lib.server.cros.network import wifi_client 240 """Connect to a WiFi network and check for success. 242 Connect a DUT to a WiFi network and check that we connect successfully. 244 @param wifi_params AssociationParameters describing network to connect. 286 """Ping a host on the WiFi network from the DUT. 288 Ping a host reachable on the WiFi network from the DUT, and 292 used to confirm that a WiFi network is operating correctly [all...] |
/external/autotest/server/site_tests/network_WiFi_ChaosLongConnect/ |
network_WiFi_ChaosLongConnect.py | 9 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes
|