Searched defs:network (Results 1 - 11 of 11) sorted by relevance

/frameworks/volley/src/com/android/volley/
H A DNetworkDispatcher.java26 * Provides a thread for performing network dispatch from a queue of requests.
28 * Requests added to the specified queue are processed from the network via a
37 /** The network interface for processing requests. */
47 * Creates a new network dispatcher thread. You must call {@link #start()}
51 * @param network Network interface to use for performing requests
56 Network network, Cache cache,
59 mNetwork = network;
90 request.addMarker("network-queue-take");
93 // network request.
95 request.finish("network
55 NetworkDispatcher(BlockingQueue<Request> queue, Network network, Cache cache, ResponseDelivery delivery) argument
[all...]
H A DRequestQueue.java35 * resolving from either cache or network on a worker thread, and then delivering
68 /** The queue of requests that are actually going out to the network. */
72 /** Number of network request dispatcher threads to start. */
84 /** The network dispatchers. */
94 * @param network A Network interface for performing HTTP requests
95 * @param threadPoolSize Number of network dispatcher threads to create
98 public RequestQueue(Cache cache, Network network, int threadPoolSize, argument
101 mNetwork = network;
110 * @param network A Network interface for performing HTTP requests
111 * @param threadPoolSize Number of network dispatche
113 RequestQueue(Cache cache, Network network, int threadPoolSize) argument
124 RequestQueue(Cache cache, Network network) argument
[all...]
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.c51 char network[PROPERTY_VALUE_MAX], date[80]; local
59 property_get("gsm.operator.alpha", network, "(unknown)");
71 printf("Network: %s\n", network);
198 property_get("dhcp.wlan0.gateway", network, "");
199 if (network[0])
200 run_command("PING GATEWAY", 10, "ping", "-c", "3", "-i", ".5", network, NULL);
201 property_get("dhcp.wlan0.dns1", network, "");
202 if (network[0])
203 run_command("PING DNS1", 10, "ping", "-c", "3", "-i", ".5", network, NULL);
204 property_get("dhcp.wlan0.dns2", network, "");
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMALTEPhone.java79 // handle the select network completion callbacks.
148 selectNetworkManually(OperatorInfo network, argument
154 nsm.operatorNumeric = network.getOperatorNumeric();
155 nsm.operatorAlphaLong = network.getOperatorAlphaLong();
160 mCi.setNetworkSelectionModeManual(network.getOperatorNumeric(), msg);
164 * Used to track the settings upon completion of the network change.
193 loge("failed to commit network selection preference");
H A DCDMAPhone.java567 selectNetworkManually(OperatorInfo network, argument
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfigStore.java86 * (key, value) pairs for a given network are grouped together and can
89 * network. A network is identified by a unique ID_KEY. If there is no
123 /* configured networks with network id as the key */
127 /* A network id is a unique identifier for a network configured in the
131 * that is generated from SSID and security type of the network. A mapping
132 * from the generated unique id to network id of the network is needed to
228 loge("Enable network faile
630 sendConfiguredNetworksChangedBroadcast(WifiConfiguration network, int reason) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhoneBase.java408 OperatorInfo network,
407 selectNetworkManually( OperatorInfo network, Message response) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneProxy.java782 public void selectNetworkManually(OperatorInfo network, Message response) { argument
783 mActivePhone.selectNetworkManually(network, response);
H A DPhone.java117 // Used for preferred network type
437 * its network activity and is in its final state. This may mean a state
497 * Register for Supplementary Service notifications from the network.
1023 * Switches network selection mode to "automatic", re-scanning and
1024 * re-selecting a network if appropriate.
1026 * @param response The message to dispatch when the network selection
1034 * Manually selects a network. <code>response</code> is
1041 void selectNetworkManually(OperatorInfo network, argument
1045 * Requests to set the preferred network type for searching and registering
1053 * Query the preferred network typ
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
H A DGSMPhone.java1028 //class parameter in call waiting interrogation to network
1076 selectNetworkManually(OperatorInfo network, argument
1082 nsm.operatorNumeric = network.getOperatorNumeric();
1083 nsm.operatorAlphaLong = network.getOperatorAlphaLong();
1088 mCi.setNetworkSelectionModeManual(network.getOperatorNumeric(), msg);
1201 // The network may initiate its own USSD request
1217 * Make sure the network knows our preferred setting.
1381 // handle the select network completion callbacks.
1467 * Used to track the settings upon completion of the network change.
1496 Rlog.e(LOG_TAG, "failed to commit network selectio
[all...]
/frameworks/base/services/java/com/android/server/
H A DConnectivityService.java177 // TODO: create better separation between radio types and network types
179 // how long to wait before switching back to a radio's default network
198 // Set network sampling interval at 12 minutes, this way, even if the timers get
203 // start network sampling a minute after booting ...
227 /** Currently active network rules by UID. */
233 * Sometimes we want to refer to the individual network state
239 /* Handles captive portal check on a network */
290 * default network
300 * used internally to change our network preference setting
434 // the set of network type
2853 updateDnsLocked(String network, String iface, Collection<InetAddress> dnses, String domains, boolean defaultDns) argument
[all...]

Completed in 240 milliseconds