Home
last modified time | relevance | path

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

/packages/modules/NetworkStack/tests/unit/src/android/net/netlink/
DStructNdOptPref64Test.java89 byte[] rawBytes = HexEncoding.decode(hexBytes); in testParseCannedOption()
90 StructNdOptPref64 opt = StructNdOptPref64.parse(ByteBuffer.wrap(rawBytes)); in testParseCannedOption()
97 rawBytes = HexEncoding.decode(hexBytes); in testParseCannedOption()
98 opt = StructNdOptPref64.parse(ByteBuffer.wrap(rawBytes)); in testParseCannedOption()
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
DDigestMd5Utils.java88 byte[] rawBytes = new byte[8]; in createCnonce()
89 generator.nextBytes(rawBytes); in createCnonce()
91 return Base64.encodeToString(rawBytes, Base64.NO_WRAP); in createCnonce()
/packages/services/Telephony/src/com/android/phone/
DServiceStateProvider.java307 final byte[] rawBytes = values.getAsByteArray(SERVICE_STATE); in insert()
308 p.unmarshall(rawBytes, 0, rawBytes.length); in insert()
/packages/apps/Dialer/java/com/android/dialer/contactphoto/
DContactPhotoManagerImpl.java307 int rawBytes = 0; in dumpStats() local
313 rawBytes += h.bytes.length; in dumpStats()
324 + btk(rawBytes) in dumpStats()
328 + btk(rawBytes + bitmapBytes) in dumpStats()
334 + btk(safeDiv(rawBytes, numHolders)) in dumpStats()
/packages/apps/Contacts/src/com/android/contacts/
DContactPhotoManager.java771 int rawBytes = 0; in dumpStats() local
777 rawBytes += h.bytes.length; in dumpStats()
785 Log.d(TAG, "L1: " + btk(rawBytes) + " + " + btk(bitmapBytes) + " = " in dumpStats()
786 + btk(rawBytes + bitmapBytes) + ", " + numHolders + " holders, " in dumpStats()
788 + btk(safeDiv(rawBytes, numHolders)) in dumpStats()
/packages/apps/Car/libs/connected-device-lib/src/com/android/car/connecteddevice/ble/
DBleDeviceMessageStream.java147 byte[] rawBytes = bleDeviceMessage.toByteArray(); in writeMessage()
150 blePackets = BlePacketFactory.makeBlePackets(rawBytes, mMessageIdGenerator.next(), in writeMessage()