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

  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheResource.cpp 38 , m_estimatedSizeInStorage(0)
51 if (m_estimatedSizeInStorage)
52 return m_estimatedSizeInStorage;
55 m_estimatedSizeInStorage = data()->size();
59 m_estimatedSizeInStorage += (it->first.length() + it->second.length() + 2) * sizeof(UChar);
61 m_estimatedSizeInStorage += url().string().length() * sizeof(UChar);
62 m_estimatedSizeInStorage += sizeof(int); // response().m_httpStatusCode
63 m_estimatedSizeInStorage += response().url().string().length() * sizeof(UChar);
64 m_estimatedSizeInStorage += sizeof(unsigned); // dataId
65 m_estimatedSizeInStorage += response().mimeType().length() * sizeof(UChar)
    [all...]
ApplicationCacheResource.h 71 int64_t m_estimatedSizeInStorage;
ApplicationCache.h 95 int64_t estimatedSizeInStorage() const { return m_estimatedSizeInStorage; }
111 int64_t m_estimatedSizeInStorage;
ApplicationCache.cpp 44 , m_estimatedSizeInStorage(0)
93 m_estimatedSizeInStorage += resource->estimatedSizeInStorage();
109 m_estimatedSizeInStorage -= it->second->estimatedSizeInStorage();

Completed in 191 milliseconds