Searched defs:Blob (Results 1 - 5 of 5) sorted by path

/frameworks/base/cmds/keystore/
H A Dkeystore.cpp170 class Blob { class
172 Blob(uint8_t* value, int32_t valueLength, uint8_t* info, uint8_t infoLength) { function in class:Blob
180 Blob(blob b) { function in class:Blob
184 Blob() {} function in class:Blob
324 Blob masterKeyBlob(mMasterKey, sizeof(mMasterKey), mSalt, sizeof(mSalt));
335 // the AES key, then we create the Blob to use with decryptBlob
352 Blob masterKeyBlob(rawBlob);
424 ResponseCode get(const char* filename, Blob* keyBlob) {
428 ResponseCode put(const char* filename, Blob* keyBlob) {
571 Blob keyBlo
[all...]
/frameworks/base/include/binder/
H A DParcel.h237 class Blob { class in class:android::Parcel
239 Blob();
240 ~Blob();
255 class ReadableBlob : public Blob {
261 class WritableBlob : public Blob {
/frameworks/base/include/utils/
H A DBlobCache.h128 // A Blob is an immutable sized unstructured data blob.
129 class Blob : public RefBase { class in class:android::BlobCache
131 Blob(const void* data, size_t size, bool copyData);
132 ~Blob();
134 bool operator<(const Blob& rhs) const;
141 Blob(const Blob&);
142 void operator=(const Blob&);
150 // mOwnsData indicates whether or not this Blob object should free the
151 // memory pointed to by mData when the Blob get
[all...]
/frameworks/base/libs/binder/
H A DParcel.cpp745 int fd = ashmem_create_region("Parcel Blob", len);
1553 // --- Parcel::Blob ---
1555 Parcel::Blob::Blob() : function in class:android::Parcel::Blob
1559 Parcel::Blob::~Blob() {
1563 void Parcel::Blob::release() {
1570 void Parcel::Blob::init(bool mapped, void* data, size_t size) {
1576 void Parcel::Blob::clear() {
/frameworks/base/libs/utils/
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
312 BlobCache::Blob::Blob(const void* data, size_t size, bool copyData): function in class:android::BlobCache::Blob
[all...]

Completed in 113 milliseconds