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

1 2

  /cts/tests/tests/media/libaudiojni/
Blob.h 52 class Blob {
54 Blob(size_t size) :
61 Blob(void *data, size_t size) :
67 ~Blob() {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/
blob.py 25 class Blob(object):
26 """Blob object"""
property.py 29 from boto.sdb.db.blob import Blob
246 data_type = Blob
247 type_name = "blob"
251 if not isinstance(value, Blob):
256 b = Blob(value=value, id=id)
  /libcore/ojluni/src/main/java/java/sql/
Blob.java 34 * <code>BLOB</code> value. An SQL <code>BLOB</code> is a built-in type
36 * a database table. By default drivers implement <code>Blob</code> using
37 * an SQL <code>locator(BLOB)</code>, which means that a
38 * <code>Blob</code> object contains a logical pointer to the
39 * SQL <code>BLOB</code> data rather than the data itself.
40 * A <code>Blob</code> object is valid for the duration of the
46 * access an SQL <code>BLOB</code> value.
47 * The <code>Blob</code> interface provides methods for getting the
48 * length of an SQL <code>BLOB</code> (Binary Large Object) value
    [all...]
  /external/clang/lib/Frontend/
SerializedDiagnosticReader.cpp 183 StringRef Blob;
184 unsigned RecID = Stream.readRecord(BlockOrCode, Record, &Blob);
195 if ((EC = visitCategoryRecord(Record[0], Blob)))
205 Record[5], Record[6], Blob)))
212 if ((EC = visitDiagFlagRecord(Record[0], Blob)))
220 if ((EC = visitFilenameRecord(Record[0], Record[1], Record[2], Blob)))
229 Location(Record[4], Record[5], Record[6], Record[7]), Blob)))
TestModuleFileExtension.cpp 30 Abv->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // message
66 StringRef Blob;
67 unsigned RecCode = Stream.readRecord(Entry.ID, Record, &Blob);
70 StringRef Message = Blob.substr(0, Record[0]);
  /system/security/keystore/
blob.cpp 26 #include "blob.h"
31 Blob::Blob(const uint8_t* value, size_t valueLength, const uint8_t* info, uint8_t infoLength,
36 ALOGW("Provided blob length too large");
58 Blob::Blob(blob b) {
62 Blob::Blob() {
66 bool Blob::isEncrypted() const
    [all...]
blob.h 29 /* Here is the file format. There are two parts in blob.value, the secret and
31 * can be found in blob.length. The description is stored after the secret in
32 * plaintext, and its size is specified in blob.info. The total size of the two
34 * the second is the blob's type, and the third byte is flags. Fields other
35 * than blob.info, blob.length, and blob.value are modified by encryptBlob()
52 struct __attribute__((packed)) blob { struct
77 class Blob {
79 Blob(const uint8_t* value, size_t valueLength, const uint8_t* info, uint8_t infoLength
    [all...]
  /external/clang/test/Index/
print-type.cpp 45 struct Blob {
49 int Blob::*member_pointer;
55 auto autoBlob = new Blob();
127 // CHECK: StructDecl=Blob:45:8 (Definition) [type=Blob] [typekind=Record] [isPOD=1] [nbFields=2]
129 // CHECK: VarDecl=member_pointer:49:12 (Definition) [type=int Blob::*] [typekind=MemberPointer] [isPOD=1]
137 // CHECK: VarDecl=autoBlob:55:6 (Definition) [type=Blob *] [typekind=Auto] [canonicaltype=Blob *] [canonicaltypekind=Pointer] [isPOD=1]
138 // CHECK: CXXNewExpr= [type=Blob *] [typekind=Pointer] [isPOD=1] [pointeetype=Blob] [pointeekind=Record
    [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...]
  /system/core/include/utils/
BlobCache.h 40 // Create an empty blob cache. The blob cache will cache key/value pairs
120 // A Blob is an immutable sized unstructured data blob.
121 class Blob : public RefBase {
123 Blob(const void* data, size_t size, bool copyData);
124 ~Blob();
126 bool operator<(const Blob& rhs) const;
133 Blob(const Blob&)
    [all...]
  /system/core/libutils/
BlobCache.cpp 83 sp<Blob> dummyKey(new Blob(key, keySize, false));
90 sp<Blob> keyBlob(new Blob(key, keySize, true));
91 sp<Blob> valueBlob(new Blob(value, valueSize, true));
112 sp<Blob> valueBlob(new Blob(value, valueSize, true));
113 sp<Blob> oldValueBlob(mCacheEntries[index].getValue());
143 sp<Blob> dummyKey(new Blob(key, keySize, false))
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 97 Blob = 5 // 32-bit aligned array of 8-bit characters.
125 case Blob:
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 492 StringRef Blob;
493 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob);
550 if (Blob.data()) {
551 outs() << " blob data = ";
554 outs().write_escaped(Blob, /*hex=*/true) << "'";
557 for (unsigned i = 0, e = Blob.size(); i != e; ++i)
558 if (!isprint(static_cast<unsigned char>(Blob[i]))) {
564 outs() << "'" << Blob << "'";
566 outs() << "unprintable, " << Blob.size() << " bytes.";
  /external/skia/src/gpu/batches/
GrAtlasTextBatch.h 23 typedef GrAtlasTextBlob Blob;
26 Blob* fBlob;
  /frameworks/native/include/binder/
Parcel.h 198 // Writes a blob to the parcel.
199 // If the blob is small, then it is stored in-place, otherwise it is
203 // The caller should call release() on the blob after writing its contents.
206 // Write an existing immutable blob file descriptor to the parcel.
207 // This allows the client to send the same blob to multiple processes
208 // as long as it keeps a dup of the blob file descriptor handy for later.
332 // Reads a blob from the parcel.
333 // The caller should call release() on the blob after reading its contents.
432 class Blob {
434 Blob();
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/sdb/db/manager/
sdbmanager.py 27 from boto.sdb.db.blob import Blob
70 Blob: (self.encode_blob, self.decode_blob),
354 raise SDBPersistenceError("Invalid Blob ID: %s" % value.id)
376 return Blob(file=key, id="s3://%s/%s" % (key.bucket.name, key.name))
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 169 StringRef Blob;
170 switch ((IndexRecordTypes)Cursor.readRecord(Entry.ID, Record, &Blob)) {
222 (const unsigned char *)Blob.data() + Record[0],
223 (const unsigned char *)Blob.data() + sizeof(uint32_t),
224 (const unsigned char *)Blob.data(), IdentifierIndexReaderTrait());
574 StringRef Blob;
575 unsigned Code = InStream.readRecord(Entry.ID, Record, &Blob);
627 (const unsigned char *)Blob.data() + Record[0],
628 (const unsigned char *)Blob.data() + sizeof(uint32_t),
629 (const unsigned char *)Blob.data()))
    [all...]
ASTReader.cpp     [all...]
  /frameworks/native/libs/binder/
Parcel.cpp 94 // Maximum size of a blob to transfer in-place.
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 507 ** [sqlite3_blob_close | close] all [BLOB handles], and
511 ** outstanding [prepared statements], [BLOB handles], and/or
513 ** of resources is deferred until all [prepared statements], [BLOB handles],
637 #define SQLITE_TOOBIG 18 /* String or BLOB exceeds size limit */
    [all...]
  /external/sqlite/dist/
sqlite3.c 507 ** [sqlite3_blob_close | close] all [BLOB handles], and
511 ** outstanding [prepared statements], [BLOB handles], and/or
513 ** of resources is deferred until all [prepared statements], [BLOB handles],
637 #define SQLITE_TOOBIG 18 /* String or BLOB exceeds size limit */
    [all...]
  /external/guice/extensions/persist/lib/
db4o-6.4.14.8131-java5.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 6828 milliseconds

1 2