Home
last modified time | relevance | path

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

/system/bt/gd/common/
Dbyte_array.h34 class ByteArray : public packet::CustomFieldFixedSizeInterface<ByteArray<LENGTH>>,
35 public storage::Serializable<ByteArray<LENGTH>> {
38 ByteArray() = default;
39 ByteArray(const uint8_t (&d)[kLength]) { in ByteArray() function
42 ByteArray(std::array<uint8_t, kLength> a) : bytes(std::move(a)) {} in ByteArray() function
55 bool operator<(const ByteArray& rhs) const {
58 bool operator==(const ByteArray& rhs) const {
61 bool operator>(const ByteArray& rhs) const {
64 bool operator<=(const ByteArray& rhs) const {
67 bool operator>=(const ByteArray& rhs) const {
[all …]
Dbyte_array_test.cc23 using bluetooth::common::ByteArray;
32 ByteArray<16> byte_array(data); in TEST()
34 for (int i = 0; i < ByteArray<16>::kLength; i++) { in TEST()
40 auto byte_array = ByteArray<16>::FromString(test_bytes); in TEST()
43 for (int i = 0; i < ByteArray<16>::kLength; i++) { in TEST()
49 ByteArray<16> byte_array = { in TEST()
/system/security/keystore2/aidl/android/security/attestationmanager/
DIAttestationManager.aidl19 import android.security.attestationmanager.ByteArray;
33 ByteArray[] attestDevice( in attestDevice()
DByteArray.aidl23 parcelable ByteArray {
/system/bt/gd/security/record/
Dsecurity_record_storage.cc56 common::ByteArray<23> byte_array(peerid); in SetLeData()
74 common::ByteArray<28> byte_array(penc_keys); in SetLeData()
89 common::ByteArray<21> byte_array(psrk_keys); in SetLeData()
145 auto peerid = common::ByteArray<23>::FromString(*device.Le().GetPeerId()); in LoadSecurityRecords()
158 …auto peer_encryption_keys = common::ByteArray<28>::FromString(*device.Le().GetPeerEncryptionKeys()… in LoadSecurityRecords()
172 common::ByteArray<21>::FromString(*device.Le().GetPeerSignatureResolvingKeys()); in LoadSecurityRecords()
/system/bt/gd/hci/
Dlink_key.h24 using LinkKey = common::ByteArray<16>;
/system/bt/gd/storage/
Dadapter_config.h67 …GENERATE_PROPERTY_GETTER_SETTER_REMOVER(LeIdentityResolvingKey, common::ByteArray<16>, "LE_LOCAL_K…
Dadapter_config_test.cc23 using bluetooth::common::ByteArray;
Dclassic_device_test.cc25 using bluetooth::common::ByteArray;