HomeSort by relevance Sort by last modified time
    Searched refs:m_shouldGenerateFile (Results 1 - 3 of 3) 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) { }
63 bool m_shouldGenerateFile;
FormData.cpp 137 formData->m_elements.append(FormDataElement(e.m_filename, e.m_fileStart, e.m_fileLength, e.m_expectedFileModificationTime, e.m_shouldGenerateFile));
139 formData->m_elements.append(FormDataElement(e.m_filename, e.m_shouldGenerateFile));
308 if (e.m_type == FormDataElement::encodedFile && e.m_shouldGenerateFile) {
324 ASSERT(e.m_shouldGenerateFile);
345 encoder.encodeBool(element.m_shouldGenerateFile);
389 if (!decoder.decodeBool(element.m_shouldGenerateFile))
  /external/webkit/Source/WebCore/platform/network/mac/
FormDataStreamMac.mm 187 const String& path = nextInput.m_shouldGenerateFile ? nextInput.m_generatedFilename : nextInput.m_filename;
425 newFormData->appendFile(element.m_filename, element.m_shouldGenerateFile);
462 if (getFileSize(element.m_shouldGenerateFile ? element.m_generatedFilename : element.m_filename, fileSize))

Completed in 296 milliseconds