Home | History | Annotate | Download | only in webkit

Lines Matching defs:load

98      * Issues the load request.
100 * Return value does not indicate if the load was successful or not. It
101 * simply indicates that the load request is reasonable.
103 * @return true if the load is reasonable.
111 mInterceptResponse.loader(mListener).load();
173 true).load();
175 // load asset in a separate thread as it involves IO
185 true).load();
187 // load resource in a separate thread as it involves IO
197 settings.getAllowFileAccess()).load();
199 // load file in a separate thread as it involves IO
211 new ContentLoader(loadListener.url(), loadListener).load();
213 // load content in a separate thread as it involves IO
221 // load data in the current thread to reduce the latency
222 new DataLoader(url, loadListener).load();
250 Log.v(LOGTAG, "FrameLoader: http " + mMethod + " load for: "
276 * setup a load from the byte stream in a CacheResult.
288 cacheLoader.load();
290 // Load the cached file in a separate thread
310 // the cache. If it is not there, then fail the load. This is used
311 // to load POST content in a history navigation.