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

  /external/chromium/chrome/browser/sync/syncable/
blob.h 15 typedef std::vector<uint8> Blob;
  /external/webkit/Source/WebCore/fileapi/
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...]
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...]
  /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/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...]
  /frameworks/native/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...]
  /frameworks/native/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/webkit/Source/WebCore/platform/network/
BlobData.h 103 // Constructor for Blob type.
105 : type(Blob)
116 enum { Data, File, Blob } type;
124 // For Blob type.
  /frameworks/native/include/binder/
Parcel.h 126 // Writes a blob to the parcel.
127 // If the blob is small, then it is stored in-place, otherwise it is
129 // The caller should call release() on the blob after writing its contents.
183 // Reads a blob from the parcel.
184 // The caller should call release() on the blob after reading its contents.
246 class Blob {
248 Blob();
249 ~Blob();
264 class ReadableBlob : public Blob {
270 class WritableBlob : public Blob {
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 43 llvm::StringRef makeString(const char *blob, unsigned blobLen);
56 llvm::StringRef CXLoadedDiagnosticSetImpl::makeString(const char *blob,
59 memcpy(mem, blob, bloblen);
428 const char *Blob;
430 unsigned recordID = Stream.ReadRecord(blockOrCode, Record, &Blob, &BlobLen);
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 95 Blob = 5 // 32-bit aligned array of 8-bit characters.
123 case Blob:
  /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...]
  /frameworks/native/libs/binder/
Parcel.cpp 59 // Maximum size of a blob to transfer in-place.
753 int fd = ashmem_create_region("Parcel Blob", len);
    [all...]
  /system/security/keystore/
keystore.cpp 254 /* Here is the file format. There are two parts in blob.value, the secret and
256 * can be found in blob.length. The description is stored after the secret in
257 * plaintext, and its size is specified in blob.info. The total size of the two
259 * the second is the blob's type, and the third byte is reserved. Fields other
260 * than blob.info, blob.length, and blob.value are modified by encryptBlob()
277 struct __attribute__((packed)) blob { struct
298 class Blob {
300 Blob(uint8_t* value, int32_t valueLength, uint8_t* info, uint8_t infoLength, BlobType type)
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp 735 const char *Blob;
738 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
744 Info.LexicalDecls = reinterpret_cast<const KindDeclIDPair*>(Blob);
753 const char *Blob;
756 unsigned RecCode = Cursor.ReadRecord(Code, Record, &Blob, &BlobLen);
763 (const unsigned char *)Blob + Record[0],
764 (const unsigned char *)Blob,
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 1032 milliseconds