Searched defs:network (Results 1 - 9 of 9) sorted by relevance
/frameworks/base/cmds/dumpstate/ |
H A D | dumpstate.c | 49 char network[PROPERTY_VALUE_MAX], date[80]; local 57 property_get("gsm.operator.alpha", network, "(unknown)"); 68 printf("Network: %s\n", network); 156 property_get("dhcp.wlan0.gateway", network, ""); 157 if (network[0]) 158 run_command("PING GATEWAY", 10, "su", "root", "ping", "-c", "3", "-i", ".5", network, NULL); 159 property_get("dhcp.wlan0.dns1", network, ""); 160 if (network[0]) 161 run_command("PING DNS1", 10, "su", "root", "ping", "-c", "3", "-i", ".5", network, NULL); 162 property_get("dhcp.wlan0.dns2", network, ""); [all...] |
/frameworks/base/core/java/android/webkit/ |
H A D | HttpAuthHandlerImpl.java | 39 private static final String LOGTAG = "network"; 68 * @param network The parent network object 70 /* package */ HttpAuthHandlerImpl(Network network) { argument 71 mNetwork = network;
|
/frameworks/base/telephony/java/com/android/internal/telephony/cdma/ |
H A D | CDMALTEPhone.java | 71 // handle the select network completion callbacks. 143 selectNetworkManually(OperatorInfo network, argument 149 nsm.operatorNumeric = network.getOperatorNumeric(); 150 nsm.operatorAlphaLong = network.getOperatorAlphaLong(); 155 mCM.setNetworkSelectionModeManual(network.getOperatorNumeric(), msg); 159 * Used to track the settings upon completion of the network change. 188 Log.e(LOG_TAG, "failed to commit network selection preference");
|
H A D | CDMAPhone.java | 511 selectNetworkManually(OperatorInfo network, argument
|
/frameworks/base/telephony/java/com/android/internal/telephony/sip/ |
H A D | SipPhoneBase.java | 355 OperatorInfo network, 354 selectNetworkManually( OperatorInfo network, Message response) argument
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
H A D | PhoneProxy.java | 541 public void selectNetworkManually(OperatorInfo network, Message response) { argument 542 mActivePhone.selectNetworkManually(network, response);
|
H A D | Phone.java | 73 * in 2G network</li> 206 // Used for preferred network type 505 * its network activity and is in its final state. This may mean a state 565 * Register for Supplementary Service notifications from the network. 1091 * Switches network selection mode to "automatic", re-scanning and 1092 * re-selecting a network if appropriate. 1094 * @param response The message to dispatch when the network selection 1102 * Manually selects a network. <code>response</code> is 1109 void selectNetworkManually(OperatorInfo network, argument 1113 * Requests to set the preferred network typ [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
H A D | GSMPhone.java | 972 //class parameter in call waiting interrogation to network 1016 selectNetworkManually(OperatorInfo network, argument 1022 nsm.operatorNumeric = network.getOperatorNumeric(); 1023 nsm.operatorAlphaLong = network.getOperatorAlphaLong(); 1028 mCM.setNetworkSelectionModeManual(network.getOperatorNumeric(), msg); 1131 // The network may initiate its own USSD request 1146 * Make sure the network knows our preferred setting. 1294 // handle the select network completion callbacks. 1338 * Used to track the settings upon completion of the network change. 1367 Log.e(LOG_TAG, "failed to commit network selectio [all...] |
/frameworks/base/services/java/com/android/server/ |
H A D | ConnectivityService.java | 114 // how long to wait before switching back to a radio's default network 131 /** Currently active network rules by UID. */ 137 * Sometimes we want to refer to the individual network state 195 * default network 207 * used internally to change our network preference setting 258 * default network 324 // the set of network types that can only be enabled by system/sig apps 365 // ouch, no rules updates means some processes may never get network 384 // Load device network attributes from resources 418 "radio " + n.radio + " in network typ 2193 updateDns(String network, String iface, Collection<InetAddress> dnses, String domains) argument [all...] |
Completed in 159 milliseconds