HomeSort by relevance Sort by last modified time
    Searched refs:shouldGenerateFile (Results 1 - 2 of 2) 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) { }
44 FormDataElement(const String& filename, bool shouldGenerateFile) : m_type(encodedFile), m_filename(filename), m_shouldGenerateFile(shouldGenerateFile) { }
108 void appendFile(const String& filePath, bool shouldGenerateFile = false);
110 void appendFileRange(const String& filename, long long start, long long length, double expectedModificationTime, bool shouldGenerateFile = false);
FormData.cpp 162 void FormData::appendFile(const String& filename, bool shouldGenerateFile)
165 m_elements.append(FormDataElement(filename, 0, BlobDataItem::toEndOfFile, BlobDataItem::doNotCheckFileChange, shouldGenerateFile));
167 m_elements.append(FormDataElement(filename, shouldGenerateFile));
172 void FormData::appendFileRange(const String& filename, long long start, long long length, double expectedModificationTime, bool shouldGenerateFile)
174 m_elements.append(FormDataElement(filename, start, length, expectedModificationTime, shouldGenerateFile));
200 bool shouldGenerateFile = false;
218 shouldGenerateFile = page->chrome()->client()->shouldReplaceWithGeneratedFileForUpload(path, generatedFileName);
219 if (shouldGenerateFile)
249 appendFile(static_cast<File*>(value.blob())->path(), shouldGenerateFile);

Completed in 36 milliseconds