HomeSort by relevance Sort by last modified time
    Searched refs:mBlob (Results 1 - 3 of 3) sorted by null

  /system/security/keystore/
blob.cpp 33 memset(&mBlob, 0, sizeof(mBlob));
42 mBlob.length = valueLength;
43 memcpy(mBlob.value, value, valueLength);
45 mBlob.info = infoLength;
46 memcpy(mBlob.value + valueLength, info, infoLength);
48 mBlob.version = CURRENT_BLOB_VERSION;
49 mBlob.type = uint8_t(type);
52 mBlob.flags = KEYSTORE_FLAG_ENCRYPTED;
54 mBlob.flags = KEYSTORE_FLAG_NONE
    [all...]
blob.h 85 const uint8_t* getValue() const { return mBlob.value; }
87 int32_t getLength() const { return mBlob.length; }
89 const uint8_t* getInfo() const { return mBlob.value + mBlob.length; }
90 uint8_t getInfoLength() const { return mBlob.info; }
92 uint8_t getVersion() const { return mBlob.version; }
97 bool isFallback() const { return mBlob.flags & KEYSTORE_FLAG_FALLBACK; }
100 void setVersion(uint8_t version) { mBlob.version = version; }
101 BlobType getType() const { return BlobType(mBlob.type); }
102 void setType(BlobType type) { mBlob.type = uint8_t(type);
    [all...]
  /frameworks/minikin/libs/minikin/
MinikinInternal.h 55 HbBlob(hb_blob_t* blob) : mBlob(blob) {
59 hb_blob_destroy(mBlob);
63 const char* data = hb_blob_get_data(mBlob, nullptr);
69 hb_blob_get_data(mBlob, &length);
74 hb_blob_t* mBlob;

Completed in 93 milliseconds