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

  /external/webkit/Source/WebCore/platform/network/
FormData.h 41 FormDataElement(const String& filename, long long fileStart, long long fileLength, double expectedFileModificationTime, bool shouldGenerateFile) : m_type(encodedFile), m_filename(filename), m_fileStart(fileStart), m_fileLength(fileLength), m_expectedFileModificationTime(expectedFileModificationTime), m_shouldGenerateFile(shouldGenerateFile) { }
59 double m_expectedFileModificationTime;
77 return a.m_filename == b.m_filename && a.m_fileStart == b.m_fileStart && a.m_fileLength == b.m_fileLength && a.m_expectedFileModificationTime == b.m_expectedFileModificationTime;
FormData.cpp 137 formData->m_elements.append(FormDataElement(e.m_filename, e.m_fileStart, e.m_fileLength, e.m_expectedFileModificationTime, e.m_shouldGenerateFile));
349 encoder.encodeDouble(element.m_expectedFileModificationTime);
407 element.m_expectedFileModificationTime = expectedFileModificationTime;
  /external/webkit/Source/WebKit/chromium/src/
WebHTTPBody.cpp 94 result.modificationTime = element.m_expectedFileModificationTime;
  /external/webkit/Source/WebCore/platform/network/mac/
FormDataStreamMac.mm 181 if (nextInput.m_expectedFileModificationTime != BlobDataItem::doNotCheckFileChange) {
183 if (!getFileModificationTime(nextInput.m_filename, fileModificationTime) || fileModificationTime != static_cast<time_t>(nextInput.m_expectedFileModificationTime))

Completed in 525 milliseconds