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

1 2

  /external/chromium/chrome/browser/sync/syncable/
blob.h 15 typedef std::vector<uint8> Blob;
  /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"
49 void BlobURLRegistry::registerURL(SecurityOrigin* origin, const KURL& publicURL, URLRegistrable* blob)
51 ASSERT(&blob->registry() == this);
52 BlobRegistry::registerBlobURL(origin, publicURL, static_cast<Blob*>(blob)->url());
67 Blob::Blob()
73 // Create a new internal URL and register it with the provided blob data.
78 Blob::Blob(PassOwnPtr<BlobData> blobData, long long size
    [all...]
Blob.h 47 class Blob : public ScriptWrappable, public URLRegistrable, public RefCounted<Blob> {
49 static PassRefPtr<Blob> create()
51 return adoptRef(new Blob);
54 static PassRefPtr<Blob> create(PassOwnPtr<BlobData> blobData, long long size)
56 return adoptRef(new Blob(blobData, size));
60 static PassRefPtr<Blob> create(const KURL& srcURL, const String& type, long long size)
62 return adoptRef(new Blob(srcURL, type, size));
65 virtual ~Blob();
76 PassRefPtr<Blob> slice(long long start = 0, long long end = std::numeric_limits<long long>::max(), const String& c (…)
    [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/chromium_org/third_party/WebKit/Source/web/
WebBlob.cpp 36 #include "core/fileapi/Blob.h"
48 RefPtr<Blob> blob = Blob::create(blobData.release(), size); local
49 return WebBlob(blob);
56 Blob* blob = V8Blob::toNative(object); local
57 ASSERT(blob);
58 return WebBlob(blob);
87 WebBlob::WebBlob(const WTF::PassRefPtr<WebCore::Blob>& 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...]
  /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 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_org/third_party/WebKit/Source/core/platform/network/
BlobData.h 104 // Constructor for Blob type.
106 : type(Blob)
130 Blob,
140 // For Blob or URL type.
  /frameworks/native/include/binder/
Parcel.h 128 // Writes a blob to the parcel.
129 // If the blob is small, then it is stored in-place, otherwise it is
131 // The caller should call release() on the blob after writing its contents.
187 // Reads a blob from the parcel.
188 // The caller should call release() on the blob after reading its contents.
250 class Blob {
252 Blob();
253 ~Blob();
301 class ReadableBlob : public Blob {
307 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';
218 StringRef Blob,
225 StringRef Blob,
439 StringRef Blob,
443 if (Blob.size() > 65536) {
449 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 60 // Maximum size of a blob to transfer in-place.
780 int fd = ashmem_create_region("Parcel Blob", len);
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
native_backend_kwallet_x_unittest.cc 40 typedef std::basic_string<uint8_t> Blob; // std::string is binary-safe.
73 Blob* value) const {
98 const Blob& value) {
106 typedef std::map<std::string, Blob> Folder;
410 TestKWallet::Blob value;
434 TestKWallet::Blob(bytes, length)) ? 0 : 1);
450 TestKWallet::Blob value;
    [all...]
  /external/clang/lib/Serialization/
GlobalModuleIndex.cpp 165 StringRef Blob;
166 switch ((IndexRecordTypes)Cursor.readRecord(Entry.ID, Record, &Blob)) {
213 (const unsigned char *)Blob.data() + Record[0],
214 (const unsigned char *)Blob.data(),
547 StringRef Blob;
548 unsigned Code = InStream.readRecord(Entry.ID, Record, &Blob);
596 (const unsigned char *)Blob.data() + Record[0],
597 (const unsigned char *)Blob.data()));
714 // Create a blob abbreviation
718 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
    [all...]
ASTReader.cpp 728 StringRef Blob;
730 unsigned RecCode = Cursor.readRecord(Code, Record, &Blob);
736 Info.LexicalDecls = reinterpret_cast<const KindDeclIDPair*>(Blob.data());
737 Info.NumLexicalDecls = Blob.size() / sizeof(KindDeclIDPair);
745 StringRef Blob;
747 unsigned RecCode = Cursor.readRecord(Code, Record, &Blob);
754 (const unsigned char *)Blob.data() + Record[0],
755 (const unsigned char *)Blob.data(),
871 StringRef Blob;
872 switch (SLocEntryCursor.readRecord(E.ID, Record, &Blob)) {
    [all...]
  /system/security/keystore/
keystore.cpp 366 /* Here is the file format. There are two parts in blob.value, the secret and
368 * can be found in blob.length. The description is stored after the secret in
369 * plaintext, and its size is specified in blob.info. The total size of the two
371 * the second is the blob's type, and the third byte is flags. Fields other
372 * than blob.info, blob.length, and blob.value are modified by encryptBlob()
389 struct __attribute__((packed)) blob { struct
411 class Blob {
413 Blob(const uint8_t* value, int32_t valueLength, const uint8_t* info, uint8_t infoLength
    [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 

Completed in 616 milliseconds

1 2