Searched refs:copy_uint32_from_buf (Results 1 – 5 of 5) sorted by relevance
/system/keymaster/include/keymaster/ |
D | serializable.h | 156 inline bool copy_uint32_from_buf(const uint8_t** buf_ptr, const uint8_t* end, T* value) { in copy_uint32_from_buf() function 181 if (!copy_uint32_from_buf(buf_ptr, end, count)) in copy_uint32_array_from_buf() 193 if (!copy_uint32_from_buf(buf_ptr, end, &(*data)[i])) in copy_uint32_array_from_buf()
|
D | android_keymaster_messages.h | 140 return copy_uint32_from_buf(buf_ptr, end, &algorithm); in Deserialize() 166 return copy_uint32_from_buf(buf_ptr, end, &algorithm) && in Deserialize() 167 copy_uint32_from_buf(buf_ptr, end, &purpose); in Deserialize()
|
/system/keymaster/ |
D | authorization_set.cpp | 342 if (!copy_uint32_from_buf(buf_ptr, end, ¶m->tag)) in deserialize() 350 return copy_uint32_from_buf(buf_ptr, end, ¶m->enumerated); in deserialize() 353 return copy_uint32_from_buf(buf_ptr, end, ¶m->integer); in deserialize() 371 if (!copy_uint32_from_buf(buf_ptr, end, ¶m->blob.data_length) || in deserialize() 372 !copy_uint32_from_buf(buf_ptr, end, &offset)) in deserialize() 426 if (!copy_uint32_from_buf(buf_ptr, end, &elements_count) || in DeserializeElementsData() 427 !copy_uint32_from_buf(buf_ptr, end, &elements_size)) { in DeserializeElementsData()
|
D | android_keymaster_messages.cpp | 68 if (!copy_uint32_from_buf(buf_ptr, end, &error)) in Deserialize() 146 return copy_uint32_from_buf(buf_ptr, end, &purpose) && in Deserialize() 227 retval = copy_uint32_from_buf(buf_ptr, end, &input_consumed); in NonErrorDeserialize() 329 !copy_uint32_from_buf(buf_ptr, end, &key_format) || in Deserialize() 372 copy_uint32_from_buf(buf_ptr, end, &key_format) && in Deserialize() 511 if (!copy_uint32_from_buf(buf_ptr, end, &entry_count) || !AllocateChain(entry_count)) in NonErrorDeserialize()
|
D | serializable.cpp | 51 if (!copy_uint32_from_buf(buf_ptr, end, size)) in copy_size_and_data_from_buf()
|