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

  /system/security/keystore/
blob.cpp 135 memset(&mBlob, 0, sizeof(mBlob));
144 mBlob.length = valueLength;
145 memcpy(mBlob.value, value, valueLength);
147 mBlob.info = infoLength;
148 memcpy(mBlob.value + valueLength, info, infoLength);
150 mBlob.version = CURRENT_BLOB_VERSION;
151 mBlob.type = uint8_t(type);
154 mBlob.flags = KEYSTORE_FLAG_ENCRYPTED;
156 mBlob.flags = KEYSTORE_FLAG_NONE
    [all...]
blob.h 94 ~Blob() { mBlob = {}; }
96 const uint8_t* getValue() const { return mBlob.value; }
98 int32_t getLength() const { return mBlob.length; }
100 const uint8_t* getInfo() const { return mBlob.value + mBlob.length; }
101 uint8_t getInfoLength() const { return mBlob.info; }
103 uint8_t getVersion() const { return mBlob.version; }
114 bool isFallback() const { return mBlob.flags & KEYSTORE_FLAG_FALLBACK; }
117 void setVersion(uint8_t version) { mBlob.version = version; }
118 BlobType getType() const { return BlobType(mBlob.type);
    [all...]
  /frameworks/minikin/libs/minikin/
MinikinInternal.h 62 : mBlob(hb_face_reference_table(face.get(), tag)) {}
64 : mBlob(hb_face_reference_table(hb_font_get_face(font.get()), tag)) {}
67 return reinterpret_cast<const uint8_t*>(hb_blob_get_data(mBlob.get(), nullptr));
70 inline size_t size() const { return (size_t)hb_blob_get_length(mBlob.get()); }
75 HbBlobUniquePtr mBlob;
  /frameworks/base/core/jni/
android_os_HwBlob.h 72 sp<JHwBlob> mBlob;
android_os_HwBlob.cpp 167 info->mBlob = blob;
185 err = info.mBlob->writeEmbeddedToParcel(parcel, handle, info.mOffset);
210 err = info.mBlob->writeEmbeddedToParcel(parcel, handle, info.mOffset);

Completed in 500 milliseconds