Home | History | Annotate | Download | only in appcache

Lines Matching refs:m_estimatedSizeInStorage

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);
66 m_estimatedSizeInStorage += response().textEncodingName().length() * sizeof(UChar);
68 return m_estimatedSizeInStorage;