Home
last modified time | relevance | path

Searched refs:m_estimatedSizeInStorage (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/loader/appcache/
DApplicationCacheResource.cpp38 , m_estimatedSizeInStorage(0) in ApplicationCacheResource()
51 if (m_estimatedSizeInStorage) in estimatedSizeInStorage()
52 return m_estimatedSizeInStorage; in estimatedSizeInStorage()
55 m_estimatedSizeInStorage = data()->size(); in estimatedSizeInStorage()
59 m_estimatedSizeInStorage += (it->first.length() + it->second.length() + 2) * sizeof(UChar); in estimatedSizeInStorage()
61 m_estimatedSizeInStorage += url().string().length() * sizeof(UChar); in estimatedSizeInStorage()
62 m_estimatedSizeInStorage += sizeof(int); // response().m_httpStatusCode in estimatedSizeInStorage()
63 m_estimatedSizeInStorage += response().url().string().length() * sizeof(UChar); in estimatedSizeInStorage()
64 m_estimatedSizeInStorage += sizeof(unsigned); // dataId in estimatedSizeInStorage()
65 m_estimatedSizeInStorage += response().mimeType().length() * sizeof(UChar); in estimatedSizeInStorage()
[all …]
DApplicationCache.cpp44 , m_estimatedSizeInStorage(0) in ApplicationCache()
93 m_estimatedSizeInStorage += resource->estimatedSizeInStorage(); in addResource()
109 m_estimatedSizeInStorage -= it->second->estimatedSizeInStorage(); in removeResource()
DApplicationCache.h95 int64_t estimatedSizeInStorage() const { return m_estimatedSizeInStorage; } in estimatedSizeInStorage()
111 int64_t m_estimatedSizeInStorage; variable
DApplicationCacheResource.h71 int64_t m_estimatedSizeInStorage; variable