Searched refs:origData (Results 1 – 1 of 1) sorted by relevance
345 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() local361 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()