/frameworks/base/tests/net/java/com/android/server/connectivity/ |
NetworkMonitorTest.java | 27 import android.net.Network; 62 when(mAgent.network()).thenReturn(new Network(TEST_ID));
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
CarrierSignalAgent.java | 26 import android.net.Network; 137 Rlog.e(LOG_TAG, "Register default network exception: " + ar.exception); 145 public void onAvailable(Network network) { 146 // an optimization to avoid signaling on every default network switch. 148 if (DBG) log("Default network available: " + network); 158 public void onLost(Network network) { 159 if (DBG) log("Default network lost: " + network) [all...] |
/packages/apps/Settings/src/com/android/settings/system/ |
ResetDashboardFragment.java | 26 import com.android.settings.network.NetworkResetPreferenceController;
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/network/ |
NetworkResetRestrictionCheckerTest.java | 17 package com.android.settings.network;
|
/prebuilts/go/darwin-x86/src/internal/nettrace/ |
nettrace.go | 39 ConnectStart func(network, addr string) 44 ConnectDone func(network, addr string, err error)
|
/prebuilts/go/darwin-x86/src/internal/poll/ |
fd.go | 14 // ErrNetClosing is returned when a network descriptor is used after 18 var ErrNetClosing = errors.New("use of closed network connection")
|
/prebuilts/go/darwin-x86/src/net/ |
interface_bsd.go | 16 // network interfaces. Otherwise it returns a mapping of a specific 78 // network interfaces. Otherwise it returns addresses for a specific
|
interface_solaris.go | 14 // network interfaces. Otherwise it returns a mapping of a specific 74 // network interfaces. Otherwise it returns addresses for a specific
|
/prebuilts/go/darwin-x86/src/syscall/ |
route_dragonfly.go | 33 // network interface arrival and departure information. 43 // containing network interface address entries.
|
route_freebsd.go | 55 // network interface arrival and departure information. 65 // containing network interface address entries.
|
/prebuilts/go/linux-x86/src/internal/nettrace/ |
nettrace.go | 39 ConnectStart func(network, addr string) 44 ConnectDone func(network, addr string, err error)
|
/prebuilts/go/linux-x86/src/internal/poll/ |
fd.go | 14 // ErrNetClosing is returned when a network descriptor is used after 18 var ErrNetClosing = errors.New("use of closed network connection")
|
/prebuilts/go/linux-x86/src/net/ |
interface_bsd.go | 16 // network interfaces. Otherwise it returns a mapping of a specific 78 // network interfaces. Otherwise it returns addresses for a specific
|
interface_solaris.go | 14 // network interfaces. Otherwise it returns a mapping of a specific 74 // network interfaces. Otherwise it returns addresses for a specific
|
/prebuilts/go/linux-x86/src/syscall/ |
route_dragonfly.go | 33 // network interface arrival and departure information. 43 // containing network interface address entries.
|
route_freebsd.go | 55 // network interface arrival and departure information. 65 // containing network interface address entries.
|
/external/autotest/client/site_tests/network_ChromeCellularNetworkProperties/ |
network_ChromeCellularNetworkProperties.py | 33 a read-only network property and a ModemManager property that have a 1:1 109 Finds the current cellular network. Asserts that it matches the fake 110 network from pseudomodem and returns the network. 116 'Expected 1 cellular network, found ' + 118 network = networks[0] 120 network, 123 return network 143 # Store the GUID of the fake test network.
|
/external/autotest/server/cros/ap_configurators/ |
static_ap_configurator.py | 11 from autotest_lib.client.common_lib.cros.network import ap_constants 12 from autotest_lib.client.common_lib.cros.network import xmlrpc_datatypes 13 from autotest_lib.client.common_lib.cros.network import xmlrpc_security_types
|
/external/webrtc/webrtc/tools/agc/ |
agc_harness.cc | 105 VoENetwork* network = VoENetwork::GetInterface(voe_); local 122 new test::VoiceChannelTransport(network, channel_)); 143 network->Release();
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
WakeupController.java | 303 ScanResult network = mWakeupEvaluator.findViableNetwork(scanResults, goodSavedNetworks); local 305 if (network != null) { 306 Log.d(TAG, "Enabling wifi for network: " + network.SSID);
|
/packages/apps/Settings/src/com/android/settings/network/ |
NetworkDashboardFragment.java | 16 package com.android.settings.network; 18 import static com.android.settings.network.MobilePlanPreferenceController 35 import com.android.settings.network.MobilePlanPreferenceController.MobilePlanPreferenceHost;
|
VpnPreferenceController.java | 16 package com.android.settings.network; 23 import android.net.Network; 131 // Legacy VPNs should do nothing if the network is disconnected. Third-party 184 public void onAvailable(Network network) { 189 public void onLost(Network network) {
|
/packages/services/BuiltInPrintService/src/com/android/bips/p2p/ |
P2pConnectionProcedure.java | 132 NetworkInfo network = intent.getParcelableExtra(WifiP2pManager.EXTRA_NETWORK_INFO); local 136 if (DEBUG) Log.d(TAG, "Connection state=" + network.getState()); 138 if (network.isConnected()) {
|
/tools/acloud/public/ |
config.py | 63 "project", "zone", "machine_type", "network", "storage_bucket_name", 86 self.network = (usr_cfg.network or 87 internal_cfg.default_usr_cfg.network)
|
/external/autotest/client/cros/cellular/pseudomodem/ |
modem_3gpp.py | 30 GsmNetwork stores the properties of a 3GPP network that can be 31 discovered during a network scan. 173 scanned = [network.ToScanDictionary() 174 for network in self.roaming_networks] 176 # get home network 188 {network['operator-code']: network for network in scanned}) 234 returned when the modem is not registered on a network. 236 returned when the modem is registered on a network [all...] |