Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/util/
DEventLog.java173 byte[] newBytes = new byte[headerLength + TAG_LENGTH + payload.length]; in withNewData()
175 System.arraycopy(mBuffer.array(), 0, newBytes, 0, headerLength + TAG_LENGTH); in withNewData() local
177 System.arraycopy(payload, 0, newBytes, headerLength + TAG_LENGTH, payload.length); in withNewData()
178 Event result = new Event(newBytes); in withNewData()