Searched refs:blob (Results 1 – 4 of 4) sorted by relevance
/hardware/samsung_slsi/exynos5/mobicore/common/LogWrapper/ |
D | log.h | 134 const void * blob, in LOG_I_Buf() argument 161 index += sprintf(&buffer[index], " (0x%08x, %d bytes)", (uint32_t)blob,sizeOfBlob); in LOG_I_Buf() 167 index += sprintf(&buffer[index], "Data at 0x%08x: ", (uint32_t)blob); in LOG_I_Buf() 191 index += sprintf(&buffer[index], "%02x ", ((const char *)blob)[i] ); in LOG_I_Buf() 205 char c = ((const char *)blob)[i]; in LOG_I_Buf() 209 blob = &(((const char *)blob)[blockLen]); in LOG_I_Buf()
|
/hardware/ril/mock-ril/src/cpp/ |
D | node_buffer.cpp | 95 Blob * blob = (Blob*) malloc(sizeof(Blob)); in blob_new() local 96 if (!blob) return NULL; in blob_new() 98 blob->data = (char*) malloc(length); in blob_new() 99 if (!blob->data) { in blob_new() 101 free(blob); in blob_new() 106 blob->length = length; in blob_new() 107 blob->refs = 0; in blob_new() 109 return blob; in blob_new() 113 static inline void blob_ref(Blob *blob) { in blob_ref() argument 114 blob->refs++; in blob_ref() [all …]
|
D | node_buffer.h | 69 struct Blob_* blob() const { return blob_; } in blob() function
|
/hardware/libhardware/tests/keymaster/ |
D | keymaster_test.cpp | 61 friend std::ostream &operator<<(std::ostream &stream, const UniqueBlob& blob); 67 std::ostream &operator<<(std::ostream &stream, const UniqueBlob& blob) { in operator <<() argument 68 const size_t length = blob.mLength; in operator <<() 71 const uint8_t* data = blob.get(); in operator <<() 486 UniqueBlob blob(key_blob, key_blob_length); in TEST_F() local
|