Lines Matching refs:address

153     public static native byte peekByte(long address);
155 public static int peekInt(long address, boolean swap) {
156 int result = peekIntNative(address);
162 private static native int peekIntNative(long address);
164 public static long peekLong(long address, boolean swap) {
165 long result = peekLongNative(address);
171 private static native long peekLongNative(long address);
173 public static short peekShort(long address, boolean swap) {
174 short result = peekShortNative(address);
180 private static native short peekShortNative(long address);
182 public static native void peekByteArray(long address, byte[] dst, int dstOffset, int byteCount);
183 public static native void peekCharArray(long address, char[] dst, int dstOffset, int charCount, boolean swap);
184 public static native void peekDoubleArray(long address, double[] dst, int dstOffset, int doubleCount, boolean swap);
185 public static native void peekFloatArray(long address, float[] dst, int dstOffset, int floatCount, boolean swap);
186 public static native void peekIntArray(long address, int[] dst, int dstOffset, int intCount, boolean swap);
187 public static native void peekLongArray(long address, long[] dst, int dstOffset, int longCount, boolean swap);
188 public static native void peekShortArray(long address, short[] dst, int dstOffset, int shortCount, boolean swap);
190 public static native void pokeByte(long address, byte value);
192 public static void pokeInt(long address, int value, boolean swap) {
196 pokeIntNative(address, value);
198 private static native void pokeIntNative(long address, int value);
200 public static void pokeLong(long address, long value, boolean swap) {
204 pokeLongNative(address, value);
206 private static native void pokeLongNative(long address, long value);
208 public static void pokeShort(long address, short value, boolean swap) {
212 pokeShortNative(address, value);
214 private static native void pokeShortNative(long address, short value);
216 public static native void pokeByteArray(long address, byte[] src, int offset, int count);
217 public static native void pokeCharArray(long address, char[] src, int offset, int count, boolean swap);
218 public static native void pokeDoubleArray(long address, double[] src, int offset, int count, boolean swap);
219 public static native void pokeFloatArray(long address, float[] src, int offset, int count, boolean swap);
220 public static native void pokeIntArray(long address, int[] src, int offset, int count, boolean swap);
221 public static native void pokeLongArray(long address, long[] src, int offset, int count, boolean swap);
222 public static native void pokeShortArray(long address, short[] src, int offset, int count, boolean swap);