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

1 2

  /external/chromium_org/sync/syncable/
blob.h 15 typedef std::vector<uint8> Blob;
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
Blob.cpp 32 #include "core/fileapi/Blob.h"
39 #include "platform/blob/BlobRegistry.h"
40 #include "platform/blob/BlobURL.h"
57 Blob* blob = static_cast<Blob*>(registrableObject); local
58 BlobRegistry::registerPublicBlobURL(origin, publicURL, blob->blobDataHandle());
74 Blob::Blob(PassRefPtr<BlobDataHandle> dataHandle)
81 Blob::~Blob(
    [all...]
Blob.h 36 #include "platform/blob/BlobData.h"
48 class Blob : public RefCountedWillBeGarbageCollectedFinalized<Blob>, public ScriptWrappable, public URLRegistrable {
50 static PassRefPtrWillBeRawPtr<Blob> create()
52 return adoptRefWillBeNoop(new Blob(BlobDataHandle::create()));
55 static PassRefPtrWillBeRawPtr<Blob> create(PassRefPtr<BlobDataHandle> blobDataHandle)
57 return adoptRefWillBeNoop(new Blob(blobDataHandle));
60 virtual ~Blob();
63 virtual PassRefPtrWillBeRawPtr<Blob> slice(long long start, long long end, const String& contentType, ExceptionState&) const;
66 PassRefPtrWillBeRawPtr<Blob> slice(ExceptionState& exceptionState) cons
    [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/clang/test/Index/
print-type.cpp 45 struct Blob {
48 int Blob::*member_pointer;
118 // CHECK: StructDecl=Blob:45:8 (Definition) [type=Blob] [typekind=Record] [isPOD=1]
120 // CHECK: VarDecl=member_pointer:48:12 (Definition) [type=int Blob::*] [typekind=MemberPointer] [isPOD=1]
  /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 81 sp<Blob> dummyKey(new Blob(key, keySize, false));
88 sp<Blob> keyBlob(new Blob(key, keySize, true));
89 sp<Blob> valueBlob(new Blob(value, valueSize, true));
110 sp<Blob> valueBlob(new Blob(value, valueSize, true));
111 sp<Blob> oldValueBlob(mCacheEntries[index].getValue());
141 sp<Blob> dummyKey(new Blob(key, keySize, false))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/blob/
BlobData.h 106 // Constructor for Blob type.
108 : type(Blob)
132 Blob,
139 RefPtr<BlobDataHandle> blobDataHandle; // For Blob type.
184 // The value of the size property for a Blob who has this data.
185 // BlobDataItem::toEndOfFile if the Blob has a file whose size was not yet determined.
204 // For empty blob construction.
  /frameworks/native/include/binder/
Parcel.h 136 // Writes a blob to the parcel.
137 // If the blob is small, then it is stored in-place, otherwise it is
139 // The caller should call release() on the blob after writing its contents.
200 // Reads a blob from the parcel.
201 // The caller should call release() on the blob after reading its contents.
268 class Blob {
270 Blob();
271 ~Blob();
319 class ReadableBlob : public Blob {
325 class WritableBlob : public Blob {
    [all...]
  /external/chromium_org/third_party/smhasher/src/
Types.h 29 // Mix the given blob of data into the verification code
31 void MixVCode ( const void * blob, int len );
36 typedef void (*pfHash) ( const void * blob, const int len, const uint32_t seed, void * out );
192 class Blob
196 Blob()
204 Blob ( int x )
214 Blob ( const Blob & k )
222 Blob & operator = ( const Blob & k
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 50 const char *copyString(StringRef Blob) {
51 char *mem = Alloc.Allocate<char>(Blob.size() + 1);
52 memcpy(mem, Blob.data(), Blob.size());
53 mem[Blob.size()] = '\0';
226 StringRef Blob,
233 StringRef Blob,
448 StringRef Blob,
452 if (Blob.size() > 65536) {
458 if (allowEmptyString && Record.size() >= 1 && Blob.size() == 0)
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitCodes.h 96 Blob = 5 // 32-bit aligned array of 8-bit characters.
124 case Blob:
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 417 StringRef Blob;
418 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob);
449 if (Blob.data()) {
450 outs() << " blob data = ";
452 for (unsigned i = 0, e = Blob.size(); i != e; ++i)
453 if (!isprint(static_cast<unsigned char>(Blob[i]))) {
459 outs() << "'" << Blob << "'";
461 outs() << "unprintable, " << Blob.size() << " bytes.";
  /frameworks/native/libs/binder/
Parcel.cpp 64 // Maximum size of a blob to transfer in-place.
847 int fd = ashmem_create_region("Parcel Blob", len);
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
native_backend_kwallet_x_unittest.cc 44 typedef std::basic_string<uint8_t> Blob; // std::string is binary-safe.
77 Blob* value) const {
102 const Blob& value) {
110 typedef std::map<std::string, Blob> Folder;
536 TestKWallet::Blob value;
560 TestKWallet::Blob(bytes, length)) ? 0 : 1);
576 TestKWallet::Blob value;
    [all...]
  /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);
623 (const unsigned char *)Blob.data() + Record[0],
624 (const unsigned char *)Blob.data() + sizeof(uint32_t),
625 (const unsigned char *)Blob.data()))
    [all...]
ASTReader.cpp     [all...]
  /system/security/keystore/
keystore.cpp 441 /* Here is the file format. There are two parts in blob.value, the secret and
443 * can be found in blob.length. The description is stored after the secret in
444 * plaintext, and its size is specified in blob.info. The total size of the two
446 * the second is the blob's type, and the third byte is flags. Fields other
447 * than blob.info, blob.length, and blob.value are modified by encryptBlob()
464 struct __attribute__((packed)) blob { struct
486 class Blob {
488 Blob(const uint8_t* value, int32_t valueLength, const uint8_t* info, uint8_t infoLength
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 403 ** [sqlite3_blob_close | close] all [BLOB handles], and
407 ** outstanding [prepared statements], [BLOB handles], and/or
409 ** of resources is deferred until all [prepared statements], [BLOB handles],
532 #define SQLITE_TOOBIG 18 /* String or BLOB exceeds size limit */
    [all...]
  /external/sqlite/dist/
sqlite3.c 403 ** [sqlite3_blob_close | close] all [BLOB handles], and
407 ** outstanding [prepared statements], [BLOB handles], and/or
409 ** of resources is deferred until all [prepared statements], [BLOB handles],
532 #define SQLITE_TOOBIG 18 /* String or BLOB exceeds size limit */
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 1212 milliseconds

1 2