Home
last modified time | relevance | path

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

/system/security/keystore/include/keystore/
Dkeystore_hidl_support.h82 const uint8_t* value_ptr = reinterpret_cast<const uint8_t*>(&value); in copy_bytes_to_iterator() local
83 return std::copy(value_ptr, value_ptr + sizeof(value), dest); in copy_bytes_to_iterator()
114 uint8_t* value_ptr = reinterpret_cast<uint8_t*>(value); in copy_bytes_from_iterator() local
115 std::copy(src, src + sizeof(T), value_ptr); in copy_bytes_from_iterator()
/system/keymaster/ng/include/
DKeyMintUtils.h116 const uint8_t* value_ptr = reinterpret_cast<const uint8_t*>(&value); in copy_bytes_to_iterator() local
117 return std::copy(value_ptr, value_ptr + sizeof(value), dest); in copy_bytes_to_iterator()
Dkeystore_hidl_support.h97 const uint8_t* value_ptr = reinterpret_cast<const uint8_t*>(&value); in copy_bytes_to_iterator() local
98 return std::copy(value_ptr, value_ptr + sizeof(value), dest); in copy_bytes_to_iterator()
/system/libufdt/utils/src/
Dmkdtimg_core.h28 int parse_option(char **option_ptr, char **value_ptr, char *line_str);
Dmkdtimg_core.c132 int parse_option(char **option_ptr, char **value_ptr, char *line_str) { in parse_option() argument
133 return split_str(option_ptr, value_ptr, line_str, '='); in parse_option()