/tools/test/connectivity/acts/framework/acts/controllers/ |
arduino_wifi_dongle.py | 118 ssid: SSID of the wifi network the dongle is connected to. 182 def write(self, arduino, file_path, network=None): 188 network: wifi network to connect to. 197 if network: 198 cmd = self._update_ino_wifi_network(arduino, file_path, network) 210 def _update_ino_wifi_network(self, arduino, file_path, network): 211 """Update wifi network in the ino file. 216 network: wifi network to update the ino file wit [all...] |
/tools/test/connectivity/acts/tests/google/tel/config/ |
README.md | 9 - **wifi_network_pass** - The password to the network specified by *wifi_network_ssid*. 10 - **wifi_network_ssid** - The SSID of a wifi network for test use. This network must have internet access.
|
/device/linaro/bootloader/edk2/NetworkPkg/Application/Ping6/ |
Ping6Strings.uni | 34 #string STR_PING6_LINE_HELP #language en-US "Ping a target machine with UEFI IPv6 network stack"
37 ".TH Ping6 0 "Ping a target machine with UEFI IPv6 network stack."\r\n"
39 "Ping a target machine with UEFI IPv6 network stack.\r\n"
|
/device/linaro/bootloader/edk2/NetworkPkg/Application/VConfig/ |
VConfigStrings.uni | 23 #string STR_VCONFIG_NO_IF #language en-US "Network interface not specified.\n"
25 #string STR_VCONFIG_INVALID_IF #language en-US "Invalid network interface - %s.\n"
37 ".TH VConfig 0 "Display or modify VLAN configuration for network interface."\r\n"
39 "Display or modify VLAN configuration for network interface.\r\n"
46 " -a Add a VLAN device for the network interface.\r\n"
48 " IfName Name of network interface, e.g. eth0, eth1.\r\n"
|
/external/autotest/server/cros/ap_configurators/ |
ap_configurator.py | 7 from autotest_lib.client.common_lib.cros.network import ap_constants 8 from autotest_lib.client.common_lib.cros.network import ping_runner
|
/external/autotest/server/site_tests/network_WiFi_Reset/ |
network_WiFi_Reset.py | 9 from autotest_lib.server.cros.network import hostap_config 10 from autotest_lib.server.cros.network import wifi_cell_test_base
|
/external/tcpdump/ |
print-olsr.c | 129 uint8_t network[4]; member in struct:olsr_hna4 134 uint8_t network[16]; member in struct:olsr_hna6 549 i, ip6addr_string(ndo, hna6->network), 569 if (!ptr.hna->network[0] && !ptr.hna->network[1] && 570 !ptr.hna->network[2] && !ptr.hna->network[3] && 605 ipaddr_string(ndo, ptr.hna->network),
|
/external/volley/src/main/java/com/android/volley/ |
NetworkDispatcher.java | 28 * Provides a thread for performing network dispatch from a queue of requests. 30 * Requests added to the specified queue are processed from the network via a 31 * specified {@link Network} interface. Responses are committed to cache, if 39 /** The network interface for processing requests. */ 40 private final Network mNetwork; 49 * Creates a new network dispatcher thread. You must call {@link #start()} 53 * @param network Network interface to use for performing requests 58 Network network, Cache cache, ResponseDelivery delivery) [all...] |
/external/webrtc/webrtc/p2p/base/ |
relayport.h | 40 rtc::Network* network, 46 return new RelayPort(thread, factory, network, ip, min_port, max_port, 78 rtc::Network*,
|
/packages/apps/Dialer/java/com/android/voicemail/impl/ |
PinChangerImpl.java | 21 import android.net.Network; 56 Network network = networkWrapper.get(); local 57 try (ImapHelper helper = new ImapHelper(context, phoneAccountHandle, network, status)) {
|
/prebuilts/go/darwin-x86/src/net/ |
udpsock_plan9.go | 94 func listenUDP(ctx context.Context, network string, laddr *UDPAddr) (*UDPConn, error) { 95 l, err := listenPlan9(ctx, network, laddr) 111 func listenMulticastUDP(ctx context.Context, network string, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) { 112 l, err := listenPlan9(ctx, network, gaddr)
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug243.go | 30 // without involving a real network.
|
/prebuilts/go/linux-x86/src/net/ |
udpsock_plan9.go | 94 func listenUDP(ctx context.Context, network string, laddr *UDPAddr) (*UDPConn, error) { 95 l, err := listenPlan9(ctx, network, laddr) 111 func listenMulticastUDP(ctx context.Context, network string, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) { 112 l, err := listenPlan9(ctx, network, gaddr)
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug243.go | 30 // without involving a real network.
|
/frameworks/base/tests/net/java/android/net/ |
NetworkCapabilitiesTest.java | 274 // By default OEM_PAID is neither in the unwanted or required lists and the network is not 281 // Adding OEM_PAID to capability list should make network restricted. 288 // Now let's make request for OEM_PAID network. 294 // Request fails for network with the default capabilities. 300 NetworkCapabilities network = new NetworkCapabilities(); local 303 assertTrue("Request: " + request + ", Network:" + network, 304 request.satisfiedByNetworkCapabilities(network)); 306 // Adding capabilities that doesn't exist in the network anyway 309 assertTrue(request.satisfiedByNetworkCapabilities(network)); [all...] |
/tools/test/connectivity/acts/tests/google/wifi/ |
WifiIOTTest.py | 53 "Need at least one iot network with psk.") 66 for network in self.iot_networks: 67 SSID = network['SSID'].replace('-','_') 68 self.ssid_map[SSID] = network 89 def connect_to_wifi_network(self, network): 93 params: Dictionary with network info. 95 SSID = network[WifiEnums.SSID_KEY] 100 wutils.wifi_connect(self.dut, network, num_of_tries=3) 102 def run_iperf_client(self, network): 106 params: Dictionary with network info [all...] |
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
ConnectivityManagerFacade.java | 31 import android.net.Network; 84 private static HashMap<Long, Network> sNetworkHashMap = new HashMap<Long, Network>(); 231 public void onPreCheck(Network network) { 243 public void onAvailable(Network network) { 255 public void onLosing(Network network, int maxMsToLive) { 268 public void onLost(Network network) 1050 Network network = sNetworkHashMap.get(networkId.longValue()); local 1060 Network network = mManager.getActiveNetwork(); local 1072 Network network = mManager.getActiveNetwork(); local 1083 Network network = sNetworkHashMap.get(networkId.longValue()); local [all...] |
/external/autotest/client/site_tests/apmanager_CheckAPProcesses/ |
apmanager_CheckAPProcesses.py | 10 from autotest_lib.client.common_lib.cros.network import apmanager_constants
|
/external/autotest/client/site_tests/network_DhcpFQDN/ |
network_DhcpFQDN.py | 6 from autotest_lib.client.common_lib.cros.network import interface 62 # the network configuration to shill.
|
/external/autotest/client/site_tests/network_WlanRegulatory/ |
network_WlanRegulatory.py | 11 from autotest_lib.client.common_lib.cros.network import iw_runner
|
/external/autotest/server/cros/chaos_lib/ |
static_runner.py | 13 from autotest_lib.client.common_lib.cros.network import ap_constants 14 from autotest_lib.client.common_lib.cros.network import iw_runner 21 from autotest_lib.server.cros.network import chaos_clique_utils as utils 22 from autotest_lib.server.cros.network import wifi_client
|
/external/autotest/server/site_tests/network_WiFi_AttenuatedPerf/ |
network_WiFi_AttenuatedPerf.py | 11 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes 12 from autotest_lib.server.cros.network import netperf_runner 13 from autotest_lib.server.cros.network import netperf_session 14 from autotest_lib.server.cros.network import wifi_cell_test_base
|
/external/autotest/server/site_tests/network_WiFi_ProfileBasic/ |
network_WiFi_ProfileBasic.py | 6 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes 7 from autotest_lib.client.common_lib.cros.network import xmlrpc_security_types 8 from autotest_lib.server.cros.network import hostap_config 9 from autotest_lib.server.cros.network import wifi_cell_test_base
|
/external/autotest/server/site_tests/network_WiFi_RegDomain/ |
network_WiFi_RegDomain.py | 11 from autotest_lib.client.common_lib.cros.network import iw_runner 12 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes 14 from autotest_lib.server.cros.network import hostap_config 15 from autotest_lib.server.cros.network import wifi_test_context_manager
|
/external/python/cpython2/PC/VS7.1/ |
rt.bat | 21 rem -u network,largefile
23 rem rt -u "network,largefile"
|