OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pokeInt
(Results
1 - 7
of
7
) sorted by null
/libcore/luni/src/main/java/java/io/
DataOutputStream.java
179
Memory.
pokeInt
(scratch, 0, val, ByteOrder.BIG_ENDIAN);
RandomAccessFile.java
830
Memory.
pokeInt
(scratch, 0, val, ByteOrder.BIG_ENDIAN);
/libcore/luni/src/main/java/java/nio/
ReadWriteHeapByteBuffer.java
199
Memory.
pokeInt
(backingArray, offset + position, value, order);
207
Memory.
pokeInt
(backingArray, offset + index, value, order);
MemoryBlock.java
220
public final void
pokeInt
(int offset, int value, ByteOrder order) {
221
Memory.
pokeInt
(address + offset, value, order.needsSwap);
/libcore/luni/src/main/java/libcore/io/
Memory.java
91
public static void
pokeInt
(byte[] dst, int offset, int value, ByteOrder order) {
167
public static native void
pokeInt
(int address, int value, boolean swap);
/libcore/luni/src/main/java/java/net/
InetAddress.java
[
all
...]
PlainSocketImpl.java
417
Memory.
pokeInt
(replyBytes, 0, reply.getIP(), ByteOrder.BIG_ENDIAN);
Completed in 248 milliseconds