| 808 | } |
| 809 | |
| 810 | private static class NativeMappedArray extends Memory implements PostCallRead { |
| 811 | private final NativeMapped[] original; |
| 812 | public NativeMappedArray(NativeMapped[] arg) { |
| 813 | super(Native.getNativeSize(arg.getClass(), arg)); |
| 814 | this.original = arg; |
| 815 | setValue(0, original, original.getClass()); |
| 816 | } |
| 817 | @Override |
| 818 | public void read() { |
| 819 | getValue(0, original.getClass(), original); |
| 820 | } |
| 821 | } |
| 822 | |
| 823 | private static class PointerArray extends Memory implements PostCallRead { |
| 824 | private final Pointer[] original; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…