Lines Matching refs:Blob
21 void Blob::Init(uint8_t *blob, unsigned int length)
26 HILOG_FATAL("Blob constructor malloc failed");
30 HILOG_FATAL("Blob constructor(length) memcpy_s failed");
36 void Blob::Init(Blob *blob, int start)
41 HILOG_FATAL("Blob constructor malloc failed");
44 HILOG_FATAL("Blob constructor(start) memcpy_s failed");
49 HILOG_FATAL("Blob constructor(start) memcpy_s failed");
55 void Blob::Init(Blob *blob, int start, int end)
70 HILOG_FATAL("Blob constructor malloc failed");
75 HILOG_FATAL("Blob constructor(start >= 0, end) memcpy_s failed");
79 HILOG_FATAL("Blob constructor(start >= 0, end) memcpy_s failed");
83 HILOG_FATAL("Blob constructor(start, end) memcpy_s failed");
87 HILOG_FATAL("Blob constructor(start, end) memcpy_s failed");
93 Blob::~Blob()
101 uint8_t Blob::GetByte(int index)
106 uint8_t *Blob::GetRaw()
111 unsigned int Blob::GetLength()
116 void Blob::ReadBytes(uint8_t *data, int length)