HomeSort by relevance Sort by last modified time
    Searched defs:Blob (Results 1 - 10 of 10) sorted by null

  /external/webkit/WebCore/html/
Blob.cpp 32 #include "Blob.h"
38 Blob::Blob(const String& path)
43 unsigned long long Blob::size() const
Blob.h 41 class Blob : public RefCounted<Blob> {
43 static PassRefPtr<Blob> create(const String& path)
45 return adoptRef(new Blob(path));
48 virtual ~Blob() { }
54 Blob(const String& path);
  /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...]
  /libcore/sqlite-jdbc/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;
35 int ret = blob.size - pos
158 private Blob blob; field in class:BlobW
    [all...]
  /hardware/ril/mock-ril/src/cpp/
node_buffer.cpp 82 // Each javascript Buffer object is backed by a Blob object.
83 // the Blob is just a C-level chunk of bytes.
90 typedef struct Blob_ Blob;
93 static inline Blob * blob_new(size_t length) {
95 Blob * blob = (Blob*) malloc(sizeof(Blob)); local
96 if (!blob) return NULL;
98 blob->data = (char*) malloc(length)
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 

Completed in 98 milliseconds