Home | History | Annotate | Download | only in webkit

Lines Matching refs:Network

35 class Network {
37 private static final String LOGTAG = "network";
40 * Static instance of a Network object.
42 private static Network sNetwork;
46 * when the Network object has not been constructed yet
51 * Reference count for platform notifications as the network class is a
68 * Network request queue (requests are added from the browser thread).
87 * True if the currently used network connection is a roaming phone
98 * @return The singleton instance of the network.
100 public static synchronized Network getInstance(Context context) {
108 sNetwork = new Network(context.getApplicationContext());
151 * Creates a new Network object.
154 private Network(Context context) {
155 if (DebugFlags.NETWORK) {
193 * Request a url from either the network or the file system.
214 // path. This only handles network request.
245 // FIXME: Although this is probably a rare condition, normal network
269 * @return The proxy hostname obtained from the network queue and proxy
289 if (DebugFlags.NETWORK) {
309 if (DebugFlags.NETWORK) {
317 * Saves the state of network handlers (user SSL and HTTP-authentication
323 if (DebugFlags.NETWORK) {
324 Log.v(LOGTAG, "Network.saveState()");
331 * Restores the state of network handlers (user SSL and HTTP-authentication
337 if (DebugFlags.NETWORK) {
338 Log.v(LOGTAG, "Network.restoreState()");
357 if (DebugFlags.NETWORK) Assert.assertNotNull(loader);
378 if (DebugFlags.NETWORK) Assert.assertNotNull(loader);