OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shouldBufferData
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebCore/loader/
ThreadableLoader.h
58
ThreadableLoaderOptions() : sendLoadCallbacks(false), sniffContent(false), allowCredentials(false), forcePreflight(false), crossOriginRequestPolicy(DenyCrossOriginRequests),
shouldBufferData
(true) { }
64
bool
shouldBufferData
;
SubresourceLoader.h
44
static PassRefPtr<SubresourceLoader> create(Frame*, SubresourceLoaderClient*, const ResourceRequest&, SecurityCheckPolicy = DoSecurityCheck, bool sendResourceLoadCallbacks = true, bool shouldContentSniff = true, const String& optionalOutgoingReferrer = String(), bool
shouldBufferData
= true);
ResourceLoadScheduler.h
53
PassRefPtr<SubresourceLoader> scheduleSubresourceLoad(Frame*, SubresourceLoaderClient*, const ResourceRequest&, ResourceLoadPriority = ResourceLoadPriorityLow, SecurityCheckPolicy = DoSecurityCheck, bool sendResourceLoadCallbacks = true, bool shouldContentSniff = true, const String& optionalOutgoingReferrer = String(), bool
shouldBufferData
= true);
ResourceLoadScheduler.cpp
87
bool sendResourceLoadCallbacks, bool shouldContentSniff, const String& optionalOutgoingReferrer, bool
shouldBufferData
)
89
RefPtr<SubresourceLoader> loader = SubresourceLoader::create(frame, client, request, securityCheck, sendResourceLoadCallbacks, shouldContentSniff, optionalOutgoingReferrer,
shouldBufferData
);
SubresourceLoader.cpp
63
PassRefPtr<SubresourceLoader> SubresourceLoader::create(Frame* frame, SubresourceLoaderClient* client, const ResourceRequest& request, SecurityCheckPolicy securityCheck, bool sendResourceLoadCallbacks, bool shouldContentSniff, const String& optionalOutgoingReferrer, bool
shouldBufferData
)
98
subloader->setShouldBufferData(
shouldBufferData
);
DocumentThreadableLoader.cpp
350
bool
shouldBufferData
= m_options.
shouldBufferData
|| m_actualRequest;
355
sniffContent, m_optionalOutgoingReferrer,
shouldBufferData
);
ResourceLoader.h
141
void setShouldBufferData(bool
shouldBufferData
);
ResourceLoader.cpp
195
void ResourceLoader::setShouldBufferData(bool
shouldBufferData
)
197
m_shouldBufferData =
shouldBufferData
;
/external/webkit/Source/WebKit/chromium/src/
AssociatedURLLoader.cpp
213
options.
shouldBufferData
= false;
Completed in 194 milliseconds