Home
last modified time | relevance | path

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

/system/gatekeeper/
Dgatekeeper_messages.cpp39 static inline void append_to_buffer(uint8_t **buffer, const SizedBuffer *to_append) { in append_to_buffer() argument
40 memcpy(*buffer, &to_append->length, sizeof(to_append->length)); in append_to_buffer()
41 *buffer += sizeof(to_append->length); in append_to_buffer()
42 if (to_append->length != 0) { in append_to_buffer()
43 memcpy(*buffer, to_append->buffer.get(), to_append->length); in append_to_buffer()
44 *buffer += to_append->length; in append_to_buffer()