Searched defs:cacheModel (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKAPICast.h130 inline WKCacheModel toAPI(CacheModel cacheModel) argument
132 switch (cacheModel) {
H A DWKContext.cpp116 void WKContextSetCacheModel(WKContextRef contextRef, WKCacheModel cacheModel) argument
118 toImpl(contextRef)->setCacheModel(toCacheModel(cacheModel));
123 return toAPI(toImpl(contextRef)->cacheModel());
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitglobals.cpp52 static WebKitCacheModel cacheModel = WEBKIT_CACHE_MODEL_DEFAULT; variable
112 if (cacheModel == model)
156 cacheModel = model;
173 return cacheModel;
/external/webkit/Source/WebKit2/Shared/
H A DWebProcessCreationParameters.h65 CacheModel cacheModel; member in struct:WebKit::WebProcessCreationParameters
/external/webkit/Source/WebKit2/WebProcess/win/
H A DWebProcessWin.cpp69 void WebProcess::platformSetCacheModel(CacheModel cacheModel) argument
89 calculateCacheSizes(cacheModel, memSize, diskFreeSize,
/external/webkit/Source/WebKit2/UIProcess/
H A DWebContext.h124 CacheModel cacheModel() const { return m_cacheModel; } function in class:WebKit::WebContext
H A DWebContext.cpp233 parameters.cacheModel = m_cacheModel;
491 void WebContext::setCacheModel(CacheModel cacheModel) argument
493 m_cacheModel = cacheModel;
/external/webkit/Source/WebKit2/WebProcess/
H A DWebProcess.cpp201 setCacheModel(static_cast<uint32_t>(parameters.cacheModel));
323 CacheModel cacheModel = static_cast<CacheModel>(cm); local
325 if (!m_hasSetCacheModel || cacheModel != m_cacheModel) {
327 m_cacheModel = cacheModel;
328 platformSetCacheModel(cacheModel);
332 void WebProcess::calculateCacheSizes(CacheModel cacheModel, uint64_t memorySize, uint64_t diskFreeSize, argument
336 switch (cacheModel) {
718 CacheModel cacheModel = m_cacheModel; local
720 setCacheModel(cacheModel);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DFrameLoaderClientGtk.cpp760 WebKitCacheModel cacheModel = webkit_get_cache_model(); local
762 if (cacheModel == WEBKIT_CACHE_MODEL_DEFAULT)
/external/webkit/Source/WebKit/win/
H A DWebPreferences.cpp1247 HRESULT WebPreferences::cacheModel(WebCacheModel* cacheModel) argument
1249 if (!cacheModel)
1252 *cacheModel = (WebCacheModel)integerValueForKey(CFSTR(WebKitCacheModelPreferenceKey));
1256 HRESULT WebPreferences::setCacheModel(WebCacheModel cacheModel) argument
1258 setIntegerValue(CFSTR(WebKitCacheModelPreferenceKey), cacheModel); local
H A DWebView.cpp236 WebCacheModel cacheModel;
237 hr = preferences->cacheModel(&cacheModel);
249 return notifyPreferencesChanged(cacheModel);
252 return notifyPreferencesRemoved(cacheModel);
258 HRESULT PreferencesChangedOrRemovedObserver::notifyPreferencesChanged(WebCacheModel cacheModel) argument
262 if (!WebView::didSetCacheModel() || cacheModel > WebView::cacheModel())
263 WebView::setCacheModel(cacheModel);
264 else if (cacheModel < WebVie
275 notifyPreferencesRemoved(WebCacheModel cacheModel) argument
440 setCacheModel(WebCacheModel cacheModel) argument
621 WebCacheModel WebView::cacheModel() function in class:WebView
633 WebCacheModel cacheModel = WebCacheModelDocumentViewer; local
[all...]
/external/webkit/Tools/DumpRenderTree/gtk/
H A DLayoutTestControllerGtk.cpp616 void LayoutTestController::setCacheModel(int cacheModel) argument
619 switch (cacheModel) {
/external/webkit/Tools/DumpRenderTree/
H A DLayoutTestController.cpp1160 int cacheModel = JSValueToNumber(context, arguments[0], exception); local
1164 controller->setCacheModel(cacheModel);

Completed in 253 milliseconds