Searched refs:headerBytes (Results 1 – 3 of 3) sorted by relevance
106 final byte[] headerBytes = new byte[HEADER_LENGTH]; in receiveMessage()107 Streams.readFully(mRemoteIn, headerBytes); in receiveMessage()108 final ByteBuffer header = ByteBuffer.wrap(headerBytes); in receiveMessage()
277 final byte[] headerBytes = new byte[HEADER_LENGTH]; in readMessage()278 Streams.readFully(mInput, headerBytes); in readMessage()279 final ByteBuffer header = ByteBuffer.wrap(headerBytes); in readMessage()316 return mConnectionContext.decodeMessageFromPeer(data, headerBytes); in readMessage()
221 int headerBytes = readExactly(fd, buf, 0, 9); in consumeNativeCrashData() local222 if (headerBytes != 9) { in consumeNativeCrashData()