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