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

  /external/webkit/Source/WebCore/platform/network/
BlobData.cpp 42 const long long BlobDataItem::toEndOfFile = -1;
43 const double BlobDataItem::doNotCheckFileChange = 0;
53 void BlobDataItem::detachFromCurrentThread()
75 m_items.append(BlobDataItem(data, offset, length));
80 m_items.append(BlobDataItem(path));
85 m_items.append(BlobDataItem(path, offset, length, expectedModificationTime));
90 m_items.append(BlobDataItem(url, offset, length));
BlobResourceHandle.h 49 struct BlobDataItem;
84 void readDataAsync(const BlobDataItem&);
85 void readFileAsync(const BlobDataItem&);
87 int readDataSync(const BlobDataItem&, char*, int);
88 int readFileSync(const BlobDataItem&, char*, int);
BlobData.h 60 struct BlobDataItem {
65 BlobDataItem()
74 explicit BlobDataItem(PassRefPtr<RawData> data)
84 explicit BlobDataItem(const String& path)
94 BlobDataItem(const String& path, long long offset, long long length, double expectedModificationTime)
104 BlobDataItem(const KURL& url, long long offset, long long length)
135 BlobDataItem(PassRefPtr<RawData> data, long long offset, long long length)
145 typedef Vector<BlobDataItem> BlobDataItemList;
BlobRegistryImpl.cpp 88 if (iter->type == BlobDataItem::Data)
91 ASSERT(iter->type == BlobDataItem::File);
99 ASSERT(length != BlobDataItem::toEndOfFile);
114 if (iter->type == BlobDataItem::Data)
117 ASSERT(iter->type == BlobDataItem::File);
138 case BlobDataItem::Data:
141 case BlobDataItem::File:
144 case BlobDataItem::Blob:
BlobResourceHandle.cpp 252 const BlobDataItem& item = m_blobData->items().at(m_sizeItemCount);
254 case BlobDataItem::Data:
257 case BlobDataItem::File:
282 const BlobDataItem& item = m_blobData->items().at(m_sizeItemCount);
283 if (item.type == BlobDataItem::File && item.length != BlobDataItem::toEndOfFile)
341 const BlobDataItem& item = m_blobData->items().at(m_readItemCount);
343 if (item.type == BlobDataItem::Data)
345 else if (item.type == BlobDataItem::File)
369 int BlobResourceHandle::readDataSync(const BlobDataItem& item, char* buf, int length
    [all...]
FormData.cpp 165 m_elements.append(FormDataElement(filename, 0, BlobDataItem::toEndOfFile, BlobDataItem::doNotCheckFileChange, shouldGenerateFile));
  /external/webkit/Source/WebKit/chromium/src/
WebBlobData.cpp 67 const BlobDataItem& item = m_private->items()[index];
76 case BlobDataItem::Data:
80 case BlobDataItem::File:
84 case BlobDataItem::Blob:
  /external/webkit/Source/WebCore/fileapi/
WebKitBlobBuilder.cpp 56 if (m_items.isEmpty() || m_items[m_items.size() - 1].type != BlobDataItem::Data)
57 m_items.append(BlobDataItem(RawData::create()));
113 m_items.append(BlobDataItem(file->path(), 0, snapshotSize, snapshotModificationTime));
117 m_items.append(BlobDataItem(blob->url(), 0, blobSize));
131 m_items.append(BlobDataItem(blob->url(), 0, m_size));
  /external/webkit/Source/WebCore/platform/network/mac/
FormDataStreamMac.mm 153 form->currentStreamRangeLength = BlobDataItem::toEndOfFile;
181 if (nextInput.m_expectedFileModificationTime != BlobDataItem::doNotCheckFileChange) {
235 newInfo->currentStreamRangeLength = BlobDataItem::toEndOfFile;
283 if (form->currentStreamRangeLength != BlobDataItem::toEndOfFile && form->currentStreamRangeLength < bytesToRead)
296 if (form->currentStreamRangeLength != BlobDataItem::toEndOfFile)
431 const BlobDataItem& blobItem = blobData->items()[j];
432 if (blobItem.type == BlobDataItem::Data) {
435 ASSERT(blobItem.type == BlobDataItem::File);
456 if (element.m_fileLength != BlobDataItem::toEndOfFile) {

Completed in 277 milliseconds