| /external/webkit/Source/WebKit/gtk/webkit/ |
| webkitglobals.cpp | 52 static WebKitCacheModel cacheModel = WEBKIT_CACHE_MODEL_DEFAULT; 112 if (cacheModel == model) 156 cacheModel = model; 173 return cacheModel;
|
| /external/webkit/Source/WebKit/mac/WebView/ |
| WebPreferences.h | 411 @param cacheModel The WebView's usage model for WebKit. If necessary, WebKit 412 will prune its caches to match cacheModel. 428 - (void)setCacheModel:(WebCacheModel)cacheModel; 431 @method cacheModel: 438 - (WebCacheModel)cacheModel;
|
| WebPreferences.mm | 118 WebCacheModel cacheModel; 122 cacheModel = WebCacheModelDocumentViewer; 124 cacheModel = WebCacheModelDocumentBrowser; 126 cacheModel = WebCacheModelPrimaryWebBrowser; 130 cacheModel = WebCacheModelDocumentBrowser; // To avoid regressions in apps that depended on old WebKit's large cache. 132 cacheModel = WebCacheModelDocumentViewer; // To save memory. 137 return cacheModel; 796 - (void)setCacheModel:(WebCacheModel)cacheModel 798 [self _setIntegerValue:cacheModel forKey:WebKitCacheModelPreferenceKey]; 802 - (WebCacheModel)cacheModel [all...] |
| WebViewInternal.h | 112 + (void)_setCacheModel:(WebCacheModel)cacheModel;
|
| WebView.mm | [all...] |
| /external/webkit/Source/WebKit/mac/Misc/ |
| WebCache.mm | 115 WebCacheModel cacheModel = [WebView _cacheModel]; 117 [WebView _setCacheModel:cacheModel];
|
| /external/webkit/Source/WebKit2/Shared/ |
| WebProcessCreationParameters.h | 29 #include "CacheModel.h" 65 CacheModel cacheModel;
|
| WebProcessCreationParameters.cpp | 57 encoder->encodeEnum(cacheModel); 104 if (!decoder->decodeEnum(parameters.cacheModel))
|
| /external/webkit/Source/WebKit2/WebProcess/ |
| WebProcess.cpp | 201 setCacheModel(static_cast<uint32_t>(parameters.cacheModel)); 323 CacheModel cacheModel = static_cast<CacheModel>(cm); 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, 336 switch (cacheModel) { [all...] |
| WebProcess.h | 29 #include "CacheModel.h" 144 void platformSetCacheModel(CacheModel); 145 static void calculateCacheSizes(CacheModel cacheModel, uint64_t memorySize, uint64_t diskFreeSize, 197 CacheModel m_cacheModel;
|
| /external/webkit/Source/WebKit2/WebProcess/win/ |
| WebProcessWin.cpp | 69 void WebProcess::platformSetCacheModel(CacheModel cacheModel) 89 calculateCacheSizes(cacheModel, memSize, diskFreeSize,
|
| /external/webkit/Source/WebKit2/UIProcess/API/C/ |
| WKContext.cpp | 116 void WKContextSetCacheModel(WKContextRef contextRef, WKCacheModel cacheModel) 118 toImpl(contextRef)->setCacheModel(toCacheModel(cacheModel)); 123 return toAPI(toImpl(contextRef)->cacheModel());
|
| WKAPICast.h | 30 #include "CacheModel.h" 115 inline CacheModel toCacheModel(WKCacheModel wkCacheModel) 130 inline WKCacheModel toAPI(CacheModel cacheModel) 132 switch (cacheModel) {
|
| WKContext.h | 119 WK_EXPORT void WKContextSetCacheModel(WKContextRef context, WKCacheModel cacheModel);
|
| /external/webkit/Source/WebKit/win/Interfaces/ |
| IWebPreferences.idl | 188 HRESULT cacheModel([out, retval] WebCacheModel* cacheModel); 189 HRESULT setCacheModel([in] WebCacheModel cacheModel);
|
| /external/webkit/Source/WebKit2/WebProcess/mac/ |
| WebProcessMac.mm | 80 void WebProcess::platformSetCacheModel(CacheModel cacheModel) 99 calculateCacheSizes(cacheModel, memSize, diskFreeSize,
|
| /external/webkit/Source/WebKit/win/ |
| WebPreferences.h | 277 virtual HRESULT STDMETHODCALLTYPE cacheModel( 278 /* [retval][out] */ WebCacheModel* cacheModel); 281 /* [in] */ WebCacheModel cacheModel);
|
| WebView.cpp | 236 WebCacheModel cacheModel; 237 hr = preferences->cacheModel(&cacheModel); 249 return notifyPreferencesChanged(cacheModel); 252 return notifyPreferencesRemoved(cacheModel); 258 HRESULT PreferencesChangedOrRemovedObserver::notifyPreferencesChanged(WebCacheModel cacheModel) 262 if (!WebView::didSetCacheModel() || cacheModel > WebView::cacheModel()) 263 WebView::setCacheModel(cacheModel); 264 else if (cacheModel < WebView::cacheModel()) [all...] |
| WebPreferences.cpp | [all...] |
| WebFrame.cpp | [all...] |
| /external/webkit/Source/WebKit2/UIProcess/ |
| WebContext.cpp | 233 parameters.cacheModel = m_cacheModel; 491 void WebContext::setCacheModel(CacheModel cacheModel) 493 m_cacheModel = cacheModel;
|
| WebContext.h | 123 void setCacheModel(CacheModel); 124 CacheModel cacheModel() const { return m_cacheModel; } 240 CacheModel m_cacheModel;
|
| /external/webkit/Tools/DumpRenderTree/gtk/ |
| LayoutTestControllerGtk.cpp | 616 void LayoutTestController::setCacheModel(int cacheModel) 619 switch (cacheModel) { [all...] |
| /external/webkit/Tools/DumpRenderTree/mac/ |
| LayoutTestControllerMac.mm | 705 void LayoutTestController::setCacheModel(int cacheModel) 707 [[WebPreferences standardPreferences] setCacheModel:cacheModel]; [all...] |
| /external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
| FrameLoaderClientGtk.cpp | 760 WebKitCacheModel cacheModel = webkit_get_cache_model(); 762 if (cacheModel == WEBKIT_CACHE_MODEL_DEFAULT) [all...] |