Home | History | Annotate | Download | only in keystore

Lines Matching refs:mBlob

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); }
108 struct blob mBlob;