HomeSort by relevance Sort by last modified time
    Searched defs:dstPos (Results 1 - 3 of 3) sorted by null

  /dalvik/vm/native/
java_lang_System.cpp 119 int dstPos = args[3];
143 if (srcPos < 0 || dstPos < 0 || length < 0 ||
145 dstPos > (int) dstArray->length - length)
148 "src.length=%d srcPos=%d dst.length=%d dstPos=%d length=%d",
149 srcArray->length, srcPos, dstArray->length, dstPos, length);
171 srcType, dstArray->contents, dstPos,
178 memmove((u1*) dstArray->contents + dstPos,
185 move16((u1*) dstArray->contents + dstPos * 2,
192 move32((u1*) dstArray->contents + dstPos * 4,
202 move32((u1*) dstArray->contents + dstPos * 8
    [all...]
  /frameworks/base/core/java/android/net/
NetworkStatsHistory.java 372 final int dstPos = index + 1;
375 System.arraycopy(bucketStart, index, bucketStart, dstPos, length);
376 if (activeTime != null) System.arraycopy(activeTime, index, activeTime, dstPos, length);
377 if (rxBytes != null) System.arraycopy(rxBytes, index, rxBytes, dstPos, length);
378 if (rxPackets != null) System.arraycopy(rxPackets, index, rxPackets, dstPos, length);
379 if (txBytes != null) System.arraycopy(txBytes, index, txBytes, dstPos, length);
380 if (txPackets != null) System.arraycopy(txPackets, index, txPackets, dstPos, length);
381 if (operations != null) System.arraycopy(operations, index, operations, dstPos, length);
  /frameworks/base/services/java/com/android/server/am/
ActivityStack.java     [all...]

Completed in 280 milliseconds