Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/service/src/com/android/car/
H A DFastPairUtils.java55 ByteBuffer accountKeyAdvertisement = ByteBuffer.allocate(size + 4); in getAccountKeyAdvertisement() local
56 accountKeyAdvertisement.put((byte) 0); //reserved Flags byte in getAccountKeyAdvertisement()
57 accountKeyAdvertisement.put((byte) (size << 4)); in getAccountKeyAdvertisement()
58 accountKeyAdvertisement.put(bloomResults); in getAccountKeyAdvertisement()
59 accountKeyAdvertisement.put(SALT_FIELD_DESCRIPTOR); in getAccountKeyAdvertisement()
60 accountKeyAdvertisement.put(salt); in getAccountKeyAdvertisement()
62 return accountKeyAdvertisement.array(); in getAccountKeyAdvertisement()