Searched refs:Blob (Results 1 - 3 of 3) sorted by relevance

/system/core/include/utils/
H A DBlobCache.h120 // A Blob is an immutable sized unstructured data blob.
121 class Blob : public RefBase { class in class:android::BlobCache
123 Blob(const void* data, size_t size, bool copyData);
124 ~Blob();
126 bool operator<(const Blob& rhs) const;
133 Blob(const Blob&);
134 void operator=(const Blob&);
142 // mOwnsData indicates whether or not this Blob object should free the
143 // memory pointed to by mData when the Blob get
[all...]
/system/core/libutils/
H A DBlobCache.cpp80 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> dummyKe
296 BlobCache::Blob::Blob(const void* data, size_t size, bool copyData): function in class:android::BlobCache::Blob
[all...]
/system/security/keystore/
H A Dkeystore.cpp411 class Blob { class
413 Blob(const uint8_t* value, int32_t valueLength, const uint8_t* info, uint8_t infoLength, function in class:Blob
431 Blob(blob b) { function in class:Blob
435 Blob() {} function in class:Blob
700 Blob masterKeyBlob(mMasterKey, sizeof(mMasterKey), mSalt, sizeof(mSalt), TYPE_MASTER_KEY);
711 // the AES key, then we create the Blob to use with decryptBlob
728 Blob masterKeyBlob(rawBlob);
995 ResponseCode get(const char* filename, Blob* keyBlob, const BlobType type, uid_t uid) {
1043 ResponseCode put(const char* filename, Blob* keyBlob, uid_t uid) {
1102 Blob keyBlo
[all...]

Completed in 131 milliseconds