Searched defs:preload (Results 1 - 2 of 2) sorted by relevance

/external/webkit/WebCore/loader/
H A DDocLoader.cpp423 void DocLoader::preload(CachedResource::Type type, const String& url, const String& charset, bool referencedFromBody) function in class:WebCore::DocLoader
427 // Don't preload images or body resources before we have something to draw. This prevents
442 PendingPreload& preload = m_pendingPreloads[i]; local
443 // Don't request preload if the resource already loaded normally (this will result in double load if the page is being reloaded with cached results ignored).
444 if (!cachedResource(m_doc->completeURL(preload.m_url)))
445 requestPreload(preload.m_type, preload.m_url, preload.m_charset);
/external/ping/
H A Dping.c91 int preload; variable
218 preload = atoi(optarg);
219 if (preload <= 0) {
220 fprintf(stderr, "ping: bad preload value, should be 1..%d\n", mx_dup_ck);
223 if (preload > mx_dup_ck)
224 preload = mx_dup_ck;
225 if (uid && preload > 3) {
226 fprintf(stderr, "ping: cannot set preload to value > 3\n");
358 /* Check that packets < rate*time + preload */
361 tokens = interval*(preload
[all...]

Completed in 35 milliseconds