Home
last modified time | relevance | path

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

/packages/services/Car/service/src/com/android/car/trust/
DBLEMessageV1Factory.java125 boolean isPayloadEncrypted) { in makeBLEMessage() argument
131 .setIsPayloadEncrypted(isPayloadEncrypted) in makeBLEMessage()
146 int maxSize, boolean isPayloadEncrypted) { in makeBLEMessages() argument
148 int maxPayloadSize = maxSize - getProtoHeaderSize(operation, isPayloadEncrypted); in makeBLEMessages()
151 bleMessages.add(makeBLEMessage(payload, operation, isPayloadEncrypted)); in makeBLEMessages()
163 .setIsPayloadEncrypted(isPayloadEncrypted) in makeBLEMessages()
177 static int getProtoHeaderSize(OperationType operation, boolean isPayloadEncrypted) { in getProtoHeaderSize() argument
179 isPayloadEncrypted ? (BOOLEAN_FIELD_ENCODING_SIZE + FIELD_NUMBER_ENCODING_SIZE) : 0; in getProtoHeaderSize()
DCarTrustAgentBleManager.java461 boolean isPayloadEncrypted) { in sendUnlockMessage() argument
465 sendMessage(device, writeCharacteristic, message, operation, isPayloadEncrypted); in sendUnlockMessage()
469 boolean isPayloadEncrypted) { in sendEnrollmentMessage() argument
473 sendMessage(device, writeCharacteristic, message, operation, isPayloadEncrypted); in sendEnrollmentMessage()
520 byte[] message, OperationType operation, boolean isPayloadEncrypted) { in sendMessage() argument
527 mMtuSize, isPayloadEncrypted); in sendMessage()