Searched refs:bytes_len (Results 1 – 5 of 5) sorted by relevance
/system/core/fs_mgr/libfs_avb/ |
D | util.cpp | 49 bool HexToBytes(uint8_t* bytes, size_t bytes_len, const std::string& hex) { in HexToBytes() argument 55 if (hex.size() / 2 > bytes_len) { in HexToBytes() 72 std::string BytesToHex(const uint8_t* bytes, size_t bytes_len) { in BytesToHex() argument 78 for (size_t i = 0; i < bytes_len; i++) { in BytesToHex()
|
D | util.h | 51 bool HexToBytes(uint8_t* bytes, size_t bytes_len, const std::string& hex); 53 std::string BytesToHex(const uint8_t* bytes, size_t bytes_len);
|
/system/keymaster/include/keymaster/ |
D | keymaster_tags.h | 237 size_t bytes_len) { 238 return keymaster_param_blob(tag, reinterpret_cast<const uint8_t*>(bytes), bytes_len); 249 size_t bytes_len) { 250 return keymaster_param_blob(tag, reinterpret_cast<const uint8_t*>(bytes), bytes_len);
|
D | authorization_set.h | 403 bool push_back(TypedTag<KM_BYTES, Tag> tag, const void* bytes, size_t bytes_len) { in push_back() argument 404 return push_back(keymaster_param_blob(tag, static_cast<const uint8_t*>(bytes), bytes_len)); in push_back() 421 bool push_back(TypedTag<KM_BIGNUM, Tag> tag, const void* bytes, size_t bytes_len) { in push_back() argument 422 return push_back(keymaster_param_blob(tag, static_cast<const uint8_t*>(bytes), bytes_len)); in push_back() 431 bool push_back(TypedTag<Type, Tag> tag, const void* bytes, size_t bytes_len) { in push_back() argument 432 return push_back(Authorization(tag, bytes, bytes_len)); in push_back()
|
/system/apex/apexd/ |
D | apex_file.cpp | 189 std::string bytes_to_hex(const uint8_t* bytes, size_t bytes_len) { in bytes_to_hex() argument 193 for (size_t i = 0; i < bytes_len; i++) { in bytes_to_hex()
|