Home
last modified time | relevance | path

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

/aosp14/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/
H A DBluetoothMidiDevice.java54 private static final int MAX_PACKET_SIZE = 512; field in BluetoothMidiDevice
82 = new BluetoothPacketEncoder(mPacketReceiver, MAX_PACKET_SIZE);
85 = new BluetoothPacketDecoder(MAX_PACKET_SIZE);
139 if (!gatt.requestMtu(MAX_PACKET_SIZE)) {
207 mPacketEncoder.setMaxPacketSize(Math.min(mtu, MAX_PACKET_SIZE));
208 mPacketDecoder.setMaxPacketSize(Math.min(mtu, MAX_PACKET_SIZE));
/aosp14/frameworks/base/media/java/android/media/midi/
H A DMidiPortImpl.java39 public static final int MAX_PACKET_SIZE = 1024; field in MidiPortImpl
54 public static final int MAX_PACKET_DATA_SIZE = MAX_PACKET_SIZE - DATA_PACKET_OVERHEAD;
H A DMidiOutputPort.java57 byte[] buffer = new byte[MidiPortImpl.MAX_PACKET_SIZE];
H A DMidiInputPort.java50 private final byte[] mBuffer = new byte[MidiPortImpl.MAX_PACKET_SIZE];
/aosp14/system/core/fs_mgr/libsnapshot/snapuserd/dm-snapshot-merge/
H A Dsnapuserd_server.h36 static constexpr uint32_t MAX_PACKET_SIZE = 512; variable
H A Dsnapuserd_server.cpp111 char msg[MAX_PACKET_SIZE]; in Recv()
/aosp14/frameworks/base/core/java/com/android/internal/usb/
H A DDumpUtils.java138 dump.write("max_packet_size", UsbEndPointProto.MAX_PACKET_SIZE, in writeEndpoint()