Searched refs:newBytes (Results 1 – 1 of 1) sorted by relevance
173 byte[] newBytes = new byte[headerLength + TAG_LENGTH + payload.length]; in withNewData()175 System.arraycopy(mBuffer.array(), 0, newBytes, 0, headerLength + TAG_LENGTH); in withNewData() local177 System.arraycopy(payload, 0, newBytes, headerLength + TAG_LENGTH, payload.length); in withNewData()178 Event result = new Event(newBytes); in withNewData()