Home
last modified time | relevance | path

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

/system/keymaster/include/keymaster/
Dkeymaster_tags.h233 size_t bytes_len) {
234 return keymaster_param_blob(tag, reinterpret_cast<const uint8_t*>(bytes), bytes_len);
245 size_t bytes_len) {
246 return keymaster_param_blob(tag, reinterpret_cast<const uint8_t*>(bytes), bytes_len);
Dauthorization_set.h402 bool push_back(TypedTag<KM_BYTES, Tag> tag, const void* bytes, size_t bytes_len) { in push_back() argument
403 return push_back(keymaster_param_blob(tag, static_cast<const uint8_t*>(bytes), bytes_len)); in push_back()
420 bool push_back(TypedTag<KM_BIGNUM, Tag> tag, const void* bytes, size_t bytes_len) { in push_back() argument
421 return push_back(keymaster_param_blob(tag, static_cast<const uint8_t*>(bytes), bytes_len)); in push_back()
430 bool push_back(TypedTag<Type, Tag> tag, const void* bytes, size_t bytes_len) { in push_back() argument
431 return push_back(Authorization(tag, bytes, bytes_len)); in push_back()
/system/core/fs_mgr/
Dfs_mgr_avb.cpp63 static bool hex_to_bytes(uint8_t* bytes, size_t bytes_len, const std::string& hex) { in hex_to_bytes() argument
69 if (hex.size() / 2 > bytes_len) { in hex_to_bytes()
86 static std::string bytes_to_hex(const uint8_t* bytes, size_t bytes_len) { in bytes_to_hex() argument
92 for (size_t i = 0; i < bytes_len; i++) { in bytes_to_hex()
/system/core/init/
Dutil.h52 std::string bytes_to_hex(const uint8_t *bytes, size_t bytes_len);
Dutil.cpp277 std::string bytes_to_hex(const uint8_t* bytes, size_t bytes_len) { in bytes_to_hex() argument
279 for (size_t i = 0; i < bytes_len; i++) in bytes_to_hex()