Home
last modified time | relevance | path

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

/frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
DTransport.java129 int contentRemaining = contentLimit - contentPosition; in sendMessage() local
130 if (contentRemaining > Protocol.MAX_CONTENT_SIZE) { in sendMessage()
132 + contentRemaining + " > " + Protocol.MAX_CONTENT_SIZE); in sendMessage()
134 mOutputBuffer.putInt(contentRemaining); in sendMessage()
135 while (contentRemaining != 0) { in sendMessage()
137 if (contentRemaining <= outputAvailable) { in sendMessage()
146 contentRemaining -= outputAvailable; in sendMessage()