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

  /external/webkit/Source/WebKit/chromium/public/
WebFileWriter.h 47 virtual void write(long long position, const WebURL& blobURL) = 0;
WebBlobData.h 53 WebURL blobURL;
WebHTTPBody.h 57 WebURL blobURL;
  /external/webkit/Source/WebCore/platform/
FileStream.h 82 int write(const KURL& blobURL, long long position, int length);
AsyncFileStream.h 53 virtual void write(const KURL& blobURL, long long position, int length) = 0;
  /external/webkit/Source/WebKit/chromium/src/
WebHTTPBody.cpp 81 result.blobURL = KURL();
100 result.blobURL = element.m_blobURL;
133 void WebHTTPBody::appendBlob(const WebURL& blobURL)
137 m_private->appendBlob(blobURL);
WebBlobData.cpp 70 result.blobURL = KURL();
86 result.blobURL = item.url;
  /external/webkit/Source/WebCore/fileapi/
FileStreamProxy.h 61 virtual void write(const KURL& blobURL, long long position, int length);
81 void writeOnFileThread(const KURL& blobURL, long long position, int length);
FileStreamProxy.cpp 191 void FileStreamProxy::write(const KURL& blobURL, long long position, int length)
193 fileThread()->postTask(createFileThreadTask(this, &FileStreamProxy::writeOnFileThread, blobURL, position, length));
196 void FileStreamProxy::writeOnFileThread(const KURL& blobURL, long long position, int length)
198 int bytesWritten = m_stream->write(blobURL, position, length);
  /external/webkit/Source/WebCore/platform/network/
FormData.h 42 explicit FormDataElement(const KURL& blobURL) : m_type(encodedBlob), m_blobURL(blobURL) { }
111 void appendBlob(const KURL& blobURL);
FormData.cpp 26 #include "BlobURL.h"
177 void FormData::appendBlob(const KURL& blobURL)
179 m_elements.append(FormDataElement(blobURL));
225 name = "Blob" + BlobURL::getIdentifier(value.blob()->url());
  /external/chromium/webkit/glue/
glue_serialize.cc 244 WriteGURL(element.blobURL, obj);
weburlloader_impl.cc 477 bridge_->AppendBlobToUpload(GURL(element.blobURL));

Completed in 285 milliseconds