Home
last modified time | relevance | path

Searched refs:copy_uint32_from_buf (Results 1 – 5 of 5) sorted by relevance

/system/keymaster/include/keymaster/
Dserializable.h156 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()
Dandroid_keymaster_messages.h140 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/
Dauthorization_set.cpp342 if (!copy_uint32_from_buf(buf_ptr, end, &param->tag)) in deserialize()
350 return copy_uint32_from_buf(buf_ptr, end, &param->enumerated); in deserialize()
353 return copy_uint32_from_buf(buf_ptr, end, &param->integer); in deserialize()
371 if (!copy_uint32_from_buf(buf_ptr, end, &param->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()
Dandroid_keymaster_messages.cpp68 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()
Dserializable.cpp51 if (!copy_uint32_from_buf(buf_ptr, end, size)) in copy_size_and_data_from_buf()