/external/proguard/src/proguard/classfile/visitor/ |
MultiMemberVisitor.java | 71 System.arraycopy(memberVisitors, 0,
|
/frameworks/base/core/java/android/nfc/ |
NdefMessage.java | 55 System.arraycopy(records, 0, mRecords, 0, records.length); 96 System.arraycopy(msg, 0, tmp, 0, msg.length); 97 System.arraycopy(record, 0, tmp, msg.length, record.length);
|
/frameworks/base/core/java/com/android/internal/util/ |
WithFramework.java | 38 System.loadLibrary("android_runtime"); 44 System.arraycopy(args, 1, newArgs, 0, newArgs.length); 50 System.err.println("Usage: dalvikvm " + WithFramework.class.getName()
|
/frameworks/base/core/tests/coretests/src/android/os/ |
BrightnessLimit.java | 57 Settings.System.putInt(getContentResolver(), Settings.System.SCREEN_BRIGHTNESS, 0);
|
/frameworks/base/obex/javax/obex/ |
ObexSession.java | 83 System.arraycopy(description, 1, realmString, 0, realmString.length); 157 System.arraycopy(userName, 0, header.mAuthResp, 38, userName.length); 164 System.arraycopy(challenge, 0, digest, 0, challenge.length); 167 System.arraycopy(password, 0, digest, challenge.length + 1, password.length); 173 System.arraycopy(ObexHelper.computeMd5Hash(digest), 0, header.mAuthResp, 2, 16); 178 System.arraycopy(challenge, 0, header.mAuthResp, 20, 16); 203 System.arraycopy(mChallengeDigest, 0, temp, 0, 16); 204 System.arraycopy(correctPassword, 0, temp, 16, correctPassword.length);
|
/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/ |
DateUtils.java | 50 return getKMLTimestamp(System.currentTimeMillis()); 58 c.setTimeInMillis(System.currentTimeMillis());
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
DashPathEffect_Delegate.java | 85 System.arraycopy(intervals, 0, mIntervals, 0, intervals.length);
|
/libcore/dalvik/src/main/java/dalvik/system/ |
TemporaryDirectory.java | 17 package dalvik.system; 31 /** system property name for the temporary directory */ 70 System.logE("Already set to: " + System.getProperty(PROPERTY)); 94 System.setProperty(PROPERTY, absolute);
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
DalvikThreadSampler.java | 17 package dalvik.system.profiler; 19 import dalvik.system.VMStack; 45 System.arraycopy(mutableStackTraceElements[depth], 0,
|
/libcore/luni/src/main/java/java/lang/ |
UnsafeByteSequence.java | 54 System.arraycopy(bytes, 0, newBytes, 0, count); 57 System.arraycopy(buffer, offset, bytes, count, length); 64 System.arraycopy(bytes, 0, newBytes, 0, count); 76 System.arraycopy(bytes, 0, result, 0, count);
|
/libcore/luni/src/main/java/java/nio/ |
CharArrayBuffer.java | 71 System.arraycopy(backingArray, offset + position, dst, srcOffset, charCount);
|
DoubleArrayBuffer.java | 71 System.arraycopy(backingArray, offset + position, dst, dstOffset, doubleCount);
|
FloatArrayBuffer.java | 71 System.arraycopy(backingArray, offset + position, dst, dstOffset, floatCount);
|
IntArrayBuffer.java | 71 System.arraycopy(backingArray, offset + position, dst, dstOffset, intCount);
|
LongArrayBuffer.java | 71 System.arraycopy(backingArray, offset + position, dst, dstOffset, longCount);
|
ShortArrayBuffer.java | 71 System.arraycopy(backingArray, offset + position, dst, dstOffset, shortCount);
|
/libcore/luni/src/main/java/java/security/ |
MessageDigestSpi.java | 137 System.arraycopy(tmp, 0, buf, offset, tmp.length);
|
/libcore/luni/src/main/java/java/util/ |
UnsafeArrayList.java | 39 System.arraycopy(array, 0, newArray, 0, size);
|
/libcore/luni/src/main/java/javax/crypto/spec/ |
DESKeySpec.java | 125 System.arraycopy(key, offset, this.key, 0, DES_KEY_LEN); 135 System.arraycopy(this.key, 0, result, 0, DES_KEY_LEN);
|
DESedeKeySpec.java | 54 System.arraycopy(key, 0, this.key, 0, DES_EDE_KEY_LEN); 80 System.arraycopy(key, offset, this.key, 0, DES_EDE_KEY_LEN); 90 System.arraycopy(this.key, 0, result, 0, DES_EDE_KEY_LEN);
|
IvParameterSpec.java | 48 System.arraycopy(iv, 0, this.iv, 0, iv.length); 69 System.arraycopy(iv, offset, this.iv, 0, byteCount); 79 System.arraycopy(iv, 0, res, 0, iv.length);
|
PSource.java | 93 System.arraycopy(p, 0, this.p, 0, p.length); 103 System.arraycopy(p, 0, result, 0, p.length);
|
RC2ParameterSpec.java | 67 System.arraycopy(iv, 0, this.iv, 0, 8); 97 System.arraycopy(iv, offset, this.iv, 0, 8); 119 System.arraycopy(iv, 0, result, 0, iv.length);
|
SecretKeySpec.java | 70 System.arraycopy(key, 0, this.key, 0, key.length); 111 System.arraycopy(key, offset, this.key, 0, len); 139 System.arraycopy(key, 0, result, 0, key.length);
|
/libcore/luni/src/main/java/libcore/io/ |
Base64.java | 124 System.arraycopy(out, 0, result, 0, outIndex);
|