Home | History | Annotate | Download | only in os

Lines Matching defs:writePtr

685                 int writePtr = 0;
687 Memory.pokeInt(buf, writePtr, status, ByteOrder.BIG_ENDIAN);
688 writePtr += 4;
692 final int len = Math.min(rawMsg.length, buf.length - writePtr);
693 System.arraycopy(rawMsg, 0, buf, writePtr, len);
694 writePtr += len;
697 Libcore.os.write(mCommFd, buf, 0, writePtr);