Home
last modified time | relevance | path

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

/system/chre/java/test/chqts/src/com/google/android/chre/test/chqts/
DContextHubGeneralTestExecutor.java345 byte[] origData = message.getMessageBody(); in hackMessageToNanoApp()
346 ByteBuffer newData = ByteBuffer.allocate(4 + origData.length); in hackMessageToNanoApp()
349 newData.put(origData); in hackMessageToNanoApp()
360 ByteBuffer origData = ByteBuffer.wrap(message.getMessageBody()); in hackMessageFromNanoApp() local
361 origData.order(ByteOrder.LITTLE_ENDIAN); in hackMessageFromNanoApp()
362 int newMessageType = origData.getInt(); in hackMessageFromNanoApp()
364 byte[] newData = new byte[origData.remaining()]; in hackMessageFromNanoApp()
365 origData.get(newData); in hackMessageFromNanoApp()