Searched defs:blob (Results 1 - 2 of 2) sorted by relevance

/hardware/libhardware/tests/keymaster/
H A Dkeymaster_test.cpp73 friend std::ostream &operator<<(std::ostream &stream, const UniqueBlob& blob);
79 std::ostream &operator<<(std::ostream &stream, const UniqueBlob& blob) { argument
80 const size_t length = blob.mLength;
83 const uint8_t* data = blob.get();
681 << "Should not be able to succeed with NULL destination blob";
700 << "Should not be able to succeed with NULL destination blob";
733 UniqueBlob blob(key_blob, key_blob_length);
/hardware/libhardware/include/hardware/
H A Dkeymaster_defs.h294 keymaster_blob_t blob; /* KM_BIGNUM and KM_BYTES*/ member in union:__anon1838::__anon1839
496 param.blob.data = (uint8_t*)bytes;
497 param.blob.data_length = bytes_len;
543 if (a->blob.data_length != 0 && b->blob.data_length == 0)
545 if (a->blob.data_length == 0 && b->blob.data_length == 0)
547 if (a->blob.data_length == 0 && b->blob.data_length > 0)
550 retval = memcmp(a->blob
[all...]

Completed in 82 milliseconds