Home
last modified time | relevance | path

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

/cts/suite/audio_quality/client/src/com/android/cts/audiotest/
DAudioProtocol.java64 private ByteBuffer mReplyBuffer = ByteBuffer.allocate(PROTOCOL_SIMPLE_REPLY_SIZE); field in AudioProtocol
457 mReplyBuffer.clear(); in sendReplyWithData()
458 mReplyBuffer.putInt((cmd & 0xffff) | 0x43210000); in sendReplyWithData()
459 mReplyBuffer.putInt(errorCode); in sendReplyWithData()
460 mReplyBuffer.putInt(len); in sendReplyWithData()
463 mOutput.write(mReplyBuffer.array(), 0, PROTOCOL_SIMPLE_REPLY_SIZE); in sendReplyWithData()