OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mBlob
(Results
1 - 2
of
2
) sorted by null
/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
;
/system/security/keystore/
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
...]
Completed in 364 milliseconds