HomeSort by relevance Sort by last modified time
    Searched refs:IconDatabase (Results 1 - 22 of 22) sorted by null

  /external/webkit/Source/WebCore/loader/icon/wince/
IconDatabaseWinCE.cpp 22 #include "IconDatabase.h"
34 static IconDatabase* sharedIconDatabase = 0;
37 IconDatabase& iconDatabase()
40 sharedIconDatabase = new IconDatabase;
44 IconDatabase::IconDatabase() {}
45 IconDatabase::~IconDatabase() {}
47 void IconDatabase::setClient(IconDatabaseClient*) {
    [all...]
  /external/webkit/Source/WebCore/loader/icon/
IconDatabaseBase.cpp 29 #include "IconDatabase.h"
52 IconDatabaseBase& iconDatabase()
59 defaultDatabase = new IconDatabase;
IconDatabase.cpp 28 #include "IconDatabase.h"
30 #if ENABLE(ICONDATABASE)
107 void IconDatabase::setClient(IconDatabaseClient* client)
120 bool IconDatabase::open(const String& directory, const String& filename)
128 LOG_ERROR("Attempt to reopen the IconDatabase which is already open. Must close it first.");
140 m_syncThread = createThread(IconDatabase::iconDatabaseSyncThreadStart, this, "WebCore: IconDatabase");
148 void IconDatabase::close()
176 void IconDatabase::removeAllIcons()
183 LOG(IconDatabase, "Requesting background thread to remove all icons")
    [all...]
IconDatabase.h 40 #if ENABLE(ICONDATABASE)
43 #endif // ENABLE(ICONDATABASE)
58 #if ENABLE(ICONDATABASE)
62 #if !ENABLE(ICONDATABASE)
63 // For builds with IconDatabase disabled, they'll just use a default derivation of IconDatabaseBase. Which does nothing.
64 class IconDatabase : public IconDatabaseBase {
71 class IconDatabase : public IconDatabaseBase {
76 static PassOwnPtr<IconDatabase> create() { return new IconDatabase; }
77 ~IconDatabase();
    [all...]
IconRecord.cpp 33 #include "IconDatabase.h"
53 LOG(IconDatabase, "Destroying IconRecord for icon url %s", m_iconURL.ascii().data());
73 LOG(IconDatabase, "Manual image data for iconURL '%s' FAILED - it was probably invalid image data", m_iconURL.ascii().data());
IconLoader.cpp 33 #include "IconDatabase.h"
95 LOG(IconDatabase, "IconLoader::didReceiveResponse() - Loader %p, response %i", resourceLoader, status);
109 LOG(IconDatabase, "IconLoader::didReceiveData() - Loader %p, number of bytes %i", unusedLoader, unusedSize);
114 LOG(IconDatabase, "IconLoader::didFail() - Loader %p", resourceLoader);
136 LOG(IconDatabase, "IconLoader::didFinishLoading() - Loader %p", resourceLoader);
155 // in the meantime, we'll only commit this data to the IconDatabase if it's the first time ::finishLoading() is called
159 LOG(IconDatabase, "IconLoader::finishLoading() - Committing iconURL %s to database", iconURL.string().ascii().data());
164 iconDatabase().setIconDataForIconURL(data, iconURL.string());
  /external/webkit/Source/WebKit2/UIProcess/
WebIconDatabase.cpp 34 #include <WebCore/IconDatabase.h>
69 m_iconDatabaseImpl = IconDatabase::create();
71 IconDatabase::delayDatabaseCleanup();
78 IconDatabase::allowDatabaseCleanup();
97 IconDatabase::allowDatabaseCleanup();
115 LOG(IconDatabase, "WK2 UIProcess setting icon URL %s for page URL %s", iconURL.ascii().data(), pageURL.ascii().data());
122 LOG(IconDatabase, "WK2 UIProcess setting icon data (%i bytes) for page URL %s", (int)iconData.size(), iconURL.ascii().data());
152 LOG(IconDatabase, "WK2 UIProcess getting load decision for icon URL %s with callback ID %lli", iconURL.ascii().data(), static_cast<long long>(callbackID));
182 // The WebCore IconDatabase ignores the passed in size parameter.
194 IconDatabase::checkIntegrityBeforeOpening()
    [all...]
WebIconDatabase.h 47 class IconDatabase;
108 OwnPtr<WebCore::IconDatabase> m_iconDatabaseImpl;
  /external/webkit/Source/WebKit/mac/Misc/
WebIconDatabase.mm 40 #import <WebCore/IconDatabase.h>
71 #if ENABLE(ICONDATABASE)
117 // <rdar://problem/4741419> - IconDatabase should be disabled by default
122 iconDatabase().setEnabled(enabled);
141 if (Image* image = iconDatabase().synchronousIconForPageURL(URL, IntSize(size)))
158 return iconDatabase().synchronousIconURLForPageURL(URL);
167 Image* image = iconDatabase().defaultIcon(IntSize(size));
185 iconDatabase().retainIconForPageURL(URL);
195 iconDatabase().releaseIconForPageURL(pageURL);
202 IconDatabase::delayDatabaseCleanup()
    [all...]
WebCoreStatistics.mm 42 #import <WebCore/IconDatabase.h>
125 return iconDatabase().pageURLMappingCount();
130 return iconDatabase().retainedPageURLCount();
135 return iconDatabase().iconRecordCount();
140 return iconDatabase().iconRecordCountWithData();
  /external/webkit/Source/WebKit/win/
WebIconDatabase.cpp 37 #include <WebCore/IconDatabase.h>
73 iconDatabase().setEnabled(!!enabled);
84 iconDatabase().setClient(this);
99 if (!iconDatabase().open(databasePath, WebCore::IconDatabase::defaultDatabaseFilename()))
174 icon = iconDatabase().synchronousIconForPageURL(String(url, SysStringLen(url)), intSize);
201 iconDatabase().retainIconForPageURL(String(url, SysStringLen(url)));
208 iconDatabase().releaseIconForPageURL(String(url, SysStringLen(url)));
214 iconDatabase().removeAllIcons();
220 IconDatabase::delayDatabaseCleanup()
    [all...]
WebIconDatabase.h 43 class IconDatabase;
WebCoreStatistics.cpp 34 #include <WebCore/IconDatabase.h>
160 *count = (UINT) iconDatabase().pageURLMappingCount();
169 *count = (UINT) iconDatabase().retainedPageURLCount();
178 *count = (UINT) iconDatabase().iconRecordCount();
187 *count = (UINT) iconDatabase().iconRecordCountWithData();
WebKitDLL.cpp 34 #include <WebCore/IconDatabase.h>
136 WebCore::iconDatabase().close();
  /external/webkit/Source/WebKit/android/jni/
WebIconDatabase.cpp 33 #include "IconDatabase.h"
166 WebCore::IconDatabaseBase& iconDb = WebCore::iconDatabase();
174 WebCore::IconDatabase::defaultDatabaseFilename()).utf8();
189 bool res = iconDb.open(pathStr, WebCore::IconDatabase::defaultDatabaseFilename());
198 WebCore::iconDatabase().close();
204 WebCore::iconDatabase().removeAllIcons();
214 WebCore::Image* icon = WebCore::iconDatabase().synchronousIconForPageURL(urlStr, WebCore::IntSize(16, 16));
225 WebCore::iconDatabase().retainIconForPageURL(urlStr);
234 WebCore::iconDatabase().releaseIconForPageURL(urlStr);
  /external/webkit/Source/WebKit/efl/ewk/
ewk_settings.cpp 28 #include "IconDatabase.h"
143 WebCore::IconDatabase::delayDatabaseCleanup();
164 WebCore::iconDatabase().setEnabled(true);
165 WebCore::iconDatabase().open(WTF::String::fromUTF8(directory), WebCore::IconDatabase::defaultDatabaseFilename());
171 WebCore::iconDatabase().setEnabled(false);
172 WebCore::iconDatabase().close();
192 if (!WebCore::iconDatabase().isEnabled())
194 if (!WebCore::iconDatabase().isOpen())
211 if (!WebCore::iconDatabase().isEnabled()
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkiticondatabase.cpp 26 #include "IconDatabase.h"
46 * ~/.local/share/webkit/icondatabase, depending on XDG_DATA_HOME.
204 if (WebCore::iconDatabase().isEnabled()) {
205 WebCore::iconDatabase().setEnabled(false);
206 WebCore::iconDatabase().close();
226 WebCore::iconDatabase().close();
230 WebCore::iconDatabase().setEnabled(false);
236 WebCore::iconDatabase().setEnabled(true);
237 WebCore::iconDatabase().open(WebCore::filenameToString(database->priv->path.get()), WebCore::IconDatabase::defaultDatabaseFilename())
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebsettings.cpp 31 #if ENABLE(ICONDATABASE)
39 #include "IconDatabase.h"
642 #if ENABLE(ICONDATABASE)
647 WebCore::IconDatabase::delayDatabaseCleanup();
650 WebCore::iconDatabase().setEnabled(true);
653 WebCore::iconDatabase().open(path, WebCore::IconDatabase::defaultDatabaseFilename());
655 WebCore::iconDatabase().setEnabled(false);
656 WebCore::iconDatabase().close();
668 if (WebCore::iconDatabase().isEnabled() && WebCore::iconDatabase().isOpen()
    [all...]
  /external/webkit/Source/WebCore/loader/
FrameLoader.cpp 70 #include "IconDatabase.h"
693 // Callback for the old-style synchronous IconDatabase interface.
698 LOG(IconDatabase, "FrameLoader %p was told a load decision is available for its icon", this);
710 if (!iconDatabase().isEnabled())
730 if (iconDatabase().supportsAsynchronousMode()) {
737 IconLoadDecision decision = iconDatabase().synchronousLoadDecisionForIconURL(urlString, m_documentLoader.get());
744 LOG(IconDatabase, "FrameLoader %p might load icon %s later", this, urlString.ascii().data());
759 if (iconDatabase().supportsAsynchronousMode() && m_frame->page()->settings()->privateBrowsingEnabled())
766 LOG(IconDatabase, "FrameLoader::startIconLoader() - Told not to load this icon, committing iconURL %s to database for pageURL mapping", urlString.ascii().data());
769 if (iconDatabase().supportsAsynchronousMode())
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 473 loader/icon/IconDatabase.cpp \
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebFrameLoaderClient.mm 103 #import <WebCore/IconDatabase.h>
610 #if ENABLE(ICONDATABASE)
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebView.mm 134 #import <WebCore/IconDatabase.h>
    [all...]

Completed in 436 milliseconds