HomeSort by relevance Sort by last modified time
    Searched full:blob (Results 1 - 25 of 572) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javasqlite/src/main/java/SQLite/
Blob.java 7 * SQLite 3.4.0 incremental blob I/O interface.
13 * Blob instance
16 private Blob blob; field in class:BlobR
25 * Contruct InputStream from blob instance.
28 BlobR(Blob blob) {
29 this.blob = blob;
39 int ret = blob.size - pos
162 private Blob blob; field in class:BlobW
    [all...]
  /external/webkit/Source/WebCore/fileapi/
FileReaderSync.cpp 33 #if ENABLE(BLOB)
38 #include "Blob.h"
50 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
52 if (!blob)
56 startLoading(scriptExecutionContext, loader, blob, ec);
61 String FileReaderSync::readAsBinaryString(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
63 if (!blob)
67 startLoading(scriptExecutionContext, loader, blob, ec)
    [all...]
FileReader.cpp 33 #if ENABLE(BLOB)
79 void FileReader::readAsArrayBuffer(Blob* blob)
81 if (!blob)
84 LOG(FileAPI, "FileReader: reading as array buffer: %s %s\n", blob->url().string().utf8().data(), blob->isFile() ? static_cast<File*>(blob)->path().utf8().data() : "");
86 readInternal(blob, FileReaderLoader::ReadAsArrayBuffer);
89 void FileReader::readAsBinaryString(Blob* blob)
    [all...]
FileReader.idl 33 Conditional=BLOB,
47 void readAsArrayBuffer(in Blob blob);
48 void readAsBinaryString(in Blob blob);
49 void readAsText(in Blob blob, in [Optional] DOMString encoding);
50 void readAsDataURL(in Blob blob);
FileReaderSync.idl 33 Conditional=BLOB,
37 [CallWith=ScriptExecutionContext] ArrayBuffer readAsArrayBuffer(in Blob blob)
39 [CallWith=ScriptExecutionContext, ConvertScriptString] DOMString readAsBinaryString(in Blob blob)
41 [CallWith=ScriptExecutionContext, ConvertScriptString] DOMString readAsText(in Blob blob, in [Optional] DOMString encoding)
43 [CallWith=ScriptExecutionContext, ConvertScriptString] DOMString readAsDataURL(in Blob blob)
FileReaderSync.h 34 #if ENABLE(BLOB)
44 class Blob;
57 PassRefPtr<ArrayBuffer> readAsArrayBuffer(ScriptExecutionContext*, Blob*, ExceptionCode&);
58 String readAsBinaryString(ScriptExecutionContext*, Blob*, ExceptionCode&);
59 String readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionCode& ec)
61 return readAsText(scriptExecutionContext, blob, "", ec);
63 String readAsText(ScriptExecutionContext*, Blob*, const String& encoding, ExceptionCode&);
64 String readAsDataURL(ScriptExecutionContext*, Blob*, ExceptionCode&);
69 void startLoading(ScriptExecutionContext*, FileReaderLoader&, Blob*, ExceptionCode&)
    [all...]
Blob.h 44 class Blob : public RefCounted<Blob> {
46 static PassRefPtr<Blob> create(PassOwnPtr<BlobData> blobData, long long size)
48 return adoptRef(new Blob(blobData, size));
52 static PassRefPtr<Blob> create(const KURL& srcURL, const String& type, long long size)
54 return adoptRef(new Blob(srcURL, type, size));
57 virtual ~Blob();
65 #if ENABLE(BLOB)
66 PassRefPtr<Blob> webkitSlice(long long start, long long end = std::numeric_limits<long long>::max(), const String& contentType = String()) const;
70 Blob(PassOwnPtr<BlobData>, long long size)
    [all...]
Blob.cpp 32 #include "Blob.h"
40 Blob::Blob(PassOwnPtr<BlobData> blobData, long long size)
46 // Create a new internal URL and register it with the provided blob data.
51 Blob::Blob(const KURL& srcURL, const String& type, long long size)
55 // Create a new internal URL and register it with the same blob data as the source URL.
60 Blob::~Blob()
65 #if ENABLE(BLOB)
    [all...]
WebKitBlobBuilder.cpp 36 #include "Blob.h"
88 #if ENABLE(BLOB)
100 void WebKitBlobBuilder::append(Blob* blob)
102 if (!blob)
104 if (blob->isFile()) {
105 // If the blob is file that is not snapshoted, capture the snapshot now.
107 File* file = static_cast<File*>(blob);
115 long long blobSize = static_cast<long long>(blob->size());
117 m_items.append(BlobDataItem(blob->url(), 0, blobSize))
127 RefPtr<Blob> blob = Blob::create(blobData.release(), m_size); local
    [all...]
FileReader.h 34 #if ENABLE(BLOB)
48 class Blob;
66 void readAsArrayBuffer(Blob*);
67 void readAsBinaryString(Blob*);
68 void readAsText(Blob*, const String& encoding = "");
69 void readAsDataURL(Blob*);
125 void readInternal(Blob*, FileReaderLoader::ReadType);
132 RefPtr<Blob> m_blob;
143 #endif // ENABLE(BLOB)
WebKitBlobBuilder.h 41 class Blob;
50 void append(Blob*);
53 #if ENABLE(BLOB)
57 PassRefPtr<Blob> getBlob(const String& contentType = String());
  /libcore/luni/src/main/java/java/sql/
Blob.java 24 * A Java interface representing the SQL {@code BLOB} type.
26 * An SQL {@code BLOB} type stores a large array of binary data (bytes) as the
29 * The {@code java.sql.Blob} interface provides methods for setting and
30 * retrieving data in the {@code Blob}, for querying {@code Blob} data length,
31 * and for searching for data within the {@code Blob}.
33 public interface Blob {
36 * Retrieves this {@code Blob} object as a binary stream.
38 * @return a binary {@code InputStream} giving access to the {@code Blob}
41 * if an error occurs accessing the {@code Blob}
    [all...]
  /external/webkit/Source/WebCore/html/
FormDataList.h 24 #include "Blob.h"
37 Item(PassRefPtr<Blob> blob) : m_blob(blob) { }
40 Blob* blob() const { return m_blob.get(); } function in class:WebCore::FormDataList::Item
44 RefPtr<Blob> m_blob;
64 void appendBlob(const String& key, PassRefPtr<Blob> blob)
67 appendBlob(blob);
    [all...]
DOMURL.cpp 28 #if ENABLE(BLOB)
56 String DOMURL::createObjectURL(Blob* blob)
60 return m_scriptExecutionContext->createPublicBlobURL(blob).string();
72 #endif // ENABLE(BLOB)
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/protocols/
webkit 3 blob:
  /external/wpa_supplicant/
config_none.c 41 struct wpa_config_blob *blob; local
52 for (blob = config->blobs; blob; blob = blob->next) {
  /external/wpa_supplicant_6/wpa_supplicant/
config_none.c 41 struct wpa_config_blob *blob; local
52 for (blob = config->blobs; blob; blob = blob->next) {
  /external/wpa_supplicant_8/wpa_supplicant/
config_none.c 41 struct wpa_config_blob *blob; local
52 for (blob = config->blobs; blob; blob = blob->next) {
  /libcore/luni/src/test/java/libcore/sqlite/
OldBlobTest.java 19 import SQLite.Blob;
29 private static Blob testBlob = null;
35 testBlob = new Blob();
42 db.exec("create table B(id integer primary key, val blob)",null);
47 // can not fill Blob with data at this point...
55 .getResourceAsStream("/blob.c");
86 Blob blob = db.open_blob(dbFile.getPath(), "B", "val", 1, true); local
89 OutputStream os = blob.getOutputStream();
93 InputStream is = blob.getInputStream()
    [all...]
  /frameworks/base/libs/utils/
BlobCache.cpp 80 sp<Blob> dummyKey(new Blob(key, keySize, false));
87 sp<Blob> keyBlob(new Blob(key, keySize, true));
88 sp<Blob> valueBlob(new Blob(value, valueSize, true));
109 sp<Blob> valueBlob(new Blob(value, valueSize, true));
110 sp<Blob> oldValueBlob(mCacheEntries[index].getValue());
140 sp<Blob> dummyKey(new Blob(key, keySize, false))
    [all...]
  /external/chromium/chrome/browser/sync/protocol/
encryption.proto 17 // Encrypted sync data consists of two parts: a key name and a blob. Key name is
18 // the name of the key that was used to encrypt blob and blob is encrypted data
31 optional string blob = 2;
  /external/chromium/chrome/browser/sync/syncable/
blob.h 15 typedef std::vector<uint8> Blob;
  /external/webkit/LayoutTests/storage/
sql-data-types-expected.txt 5 PASS: property 'blob' ok, type was string
sql-data-types.js 19 blob: "supercalifragilistic"
40 i = "blob"; shouldBeSameTypeAndValue(i, testValues[i], rs[i]);
60 tx.executeSql("INSERT INTO DataTypeTestTable (id, real, timestamp, text, blob) VALUES (?,?,?,?,?)",
61 [testValues.id, testValues.real, testValues.timestamp, testValues.text, testValues.blob],
70 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTypeTestTable (id INTEGER UNIQUE, real REAL, timestamp INTEGER, text TEXT, blob BLOB)", [],
  /frameworks/base/include/utils/
BlobCache.h 39 // Create an empty blob cache. The blob cache will cache key/value pairs
128 // A Blob is an immutable sized unstructured data blob.
129 class Blob : public RefBase {
131 Blob(const void* data, size_t size, bool copyData);
132 ~Blob();
134 bool operator<(const Blob& rhs) const;
141 Blob(const Blob&)
    [all...]

Completed in 370 milliseconds

1 2 3 4 5 6 7 8 91011>>