Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/bluetooth/
DFastPairAdvertiser.java192 ByteBuffer accountKeyAdvertisement = null; in advertiseAccountKeys() local
195 accountKeyAdvertisement = ByteBuffer.allocate(size + 4); // filter + 3b flags + 1b salt in advertiseAccountKeys()
196 accountKeyAdvertisement.put(ACCOUNT_KEY_FILTER_FLAGS); // Reserved Flags byte in advertiseAccountKeys()
197 accountKeyAdvertisement.put((byte) (size << 4)); // Length Type and Size, 0bLLLLTTTT in advertiseAccountKeys()
198 accountKeyAdvertisement.put(accountKeyFilter); // Account Key Bloom Results in advertiseAccountKeys()
199 accountKeyAdvertisement.put(SALT_FIELD_DESCRIPTOR); // Salt Field/Size, 0bLLLLTTTT in advertiseAccountKeys()
200 accountKeyAdvertisement.put(salt); // The actual 1 byte of salt in advertiseAccountKeys()
202 accountKeyAdvertisement = ByteBuffer.allocate(2); in advertiseAccountKeys()
203 accountKeyAdvertisement.put((byte) 0x00); // Reserved Flags Byte in advertiseAccountKeys()
204 accountKeyAdvertisement.put((byte) 0x00); // Empty Keys Byte in advertiseAccountKeys()
[all …]