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

/hardware/ril/mock-ril/src/cpp/
H A Dnode_buffer.h69 struct Blob_* blob() const { return blob_; } function in class:Buffer
H A Dnode_buffer.cpp95 Blob * blob = (Blob*) malloc(sizeof(Blob)); local
96 if (!blob) return NULL;
98 blob->data = (char*) malloc(length);
99 if (!blob->data) {
101 free(blob);
106 blob->length = length;
107 blob->refs = 0;
109 return blob;
113 static inline void blob_ref(Blob *blob) { argument
114 blob
118 blob_unref(Blob *blob) argument
[all...]
/hardware/libhardware/tests/keymaster/
H A Dkeymaster_test.cpp61 friend std::ostream &operator<<(std::ostream &stream, const UniqueBlob& blob);
67 std::ostream &operator<<(std::ostream &stream, const UniqueBlob& blob) { argument
68 const size_t length = blob.mLength;
71 const uint8_t* data = blob.get();
459 << "Should not be able to succeed with NULL destination blob";
486 UniqueBlob blob(key_blob, key_blob_length);

Completed in 14 milliseconds