HomeSort by relevance Sort by last modified time
    Searched refs:arraycopy (Results 1 - 25 of 938) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/obex/javax/obex/
PasswordAuthentication.java 56 System.arraycopy(userName, 0, mUserName, 0, userName.length);
60 System.arraycopy(password, 0, mPassword, 0, password.length);
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);
  /libcore/luni/src/main/java/java/security/spec/
EncodedKeySpec.java 38 System.arraycopy(encodedKey, 0,
51 System.arraycopy(encodedKey, 0, ret, 0, ret.length);
  /libcore/luni/src/main/java/javax/crypto/spec/
PBEParameterSpec.java 51 System.arraycopy(salt, 0, this.salt, 0, salt.length);
62 System.arraycopy(salt, 0, result, 0, salt.length);
PBEKeySpec.java 48 System.arraycopy(password, 0, this.password, 0, password.length);
92 System.arraycopy(password, 0, this.password, 0, password.length);
95 System.arraycopy(salt, 0, this.salt, 0, salt.length);
130 System.arraycopy(password, 0, this.password, 0, password.length);
133 System.arraycopy(salt, 0, this.salt, 0, salt.length);
158 System.arraycopy(password, 0, result, 0, password.length);
173 System.arraycopy(salt, 0, result, 0, salt.length);
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);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
RFC3394WrapEngine.java 87 System.arraycopy(iv, 0, block, 0, iv.length);
88 System.arraycopy(in, 0, block, iv.length, inLen);
96 System.arraycopy(block, 0, buf, 0, iv.length);
97 System.arraycopy(block, 8 * i, buf, iv.length, 8);
110 System.arraycopy(buf, 0, block, 0, 8);
111 System.arraycopy(buf, 8, block, 8 * i, 8);
140 System.arraycopy(in, 0, a, 0, iv.length);
141 System.arraycopy(in, iv.length, block, 0, inLen - iv.length);
151 System.arraycopy(a, 0, buf, 0, iv.length);
152 System.arraycopy(block, 8 * (i - 1), buf, iv.length, 8)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/
PrivateKeyImpl.java 52 System.arraycopy(encoding, 0, toReturn, 0, encoding.length);
63 System.arraycopy(encoding, 0, this.encoding, 0, encoding.length);
PublicKeyImpl.java 57 System.arraycopy(encoding, 0, result, 0, encoding.length);
69 System.arraycopy(encoding, 0, this.encoding, 0, encoding.length);
  /packages/apps/Camera/src/com/android/camera/
IntArray.java 28 System.arraycopy(mData, 0, temp, 0, mSize);
42 System.arraycopy(mData, 0, result, 0, mSize);
  /packages/apps/Camera2/src/com/android/camera/
IntArray.java 28 System.arraycopy(mData, 0, temp, 0, mSize);
42 System.arraycopy(mData, 0, result, 0, mSize);
  /packages/apps/LegacyCamera/src/com/android/camera/
IntArray.java 28 System.arraycopy(mData, 0, temp, 0, mSize);
42 System.arraycopy(mData, 0, result, 0, mSize);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Arrays.java 421 System.arraycopy(data, 0, copy, 0, data.length);
468 System.arraycopy(data, 0, copy, 0, data.length);
481 System.arraycopy(data, 0, copy, 0, data.length);
494 System.arraycopy(data, 0, copy, 0, data.length);
505 System.arraycopy(data, 0, tmp, 0, newLength);
509 System.arraycopy(data, 0, tmp, 0, data.length);
521 System.arraycopy(data, 0, tmp, 0, newLength);
525 System.arraycopy(data, 0, tmp, 0, data.length);
537 System.arraycopy(data, 0, tmp, 0, newLength);
541 System.arraycopy(data, 0, tmp, 0, data.length)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
KeyParameter.java 23 System.arraycopy(key, keyOff, this.key, 0, keyLen);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
NullCipher.java 37 System.arraycopy(src, srcoff, dst, dstoff, blockSize);
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
UnsafeByteSequence.java 53 System.arraycopy(bytes, 0, newBytes, 0, count);
56 System.arraycopy(buffer, offset, bytes, count, length);
63 System.arraycopy(bytes, 0, newBytes, 0, count);
74 System.arraycopy(bytes, 0, result, 0, count);
  /libcore/dex/src/main/java/com/android/dex/
ClassData.java 51 System.arraycopy(staticFields, 0, result, 0, staticFields.length);
52 System.arraycopy(instanceFields, 0, result, staticFields.length, instanceFields.length);
58 System.arraycopy(directMethods, 0, result, 0, directMethods.length);
59 System.arraycopy(virtualMethods, 0, result, directMethods.length, virtualMethods.length);
  /libcore/luni/src/test/java/libcore/java/lang/
OldSystemTest.java 30 // Test for method void java.lang.System.arraycopy(java.lang.Object,
37 System.arraycopy(new Object(), 0, b, 0, 0);
45 System.arraycopy(a, 0, new Object(), 0, 0);
53 System.arraycopy(new char[] {'a'}, 0, new String[1], 0, 1);
61 System.arraycopy(new String[] {"a"}, 0, new char[1], 0, 1);
69 System.arraycopy(new char[] {'a'}, 0, new int[1], 0, 1);
77 System.arraycopy(new Character[] {'a'}, 0, new Integer[1], 0, 1);
85 System.arraycopy(null, 0, new int[1], 0, 1);
93 System.arraycopy(new int[]{'1'}, 0, null, 0, 1);
100 System.arraycopy(a, a.length + 1, b, 0, 1)
    [all...]
ArrayStoreExceptionTest.java 66 System.arraycopy(src, 1, dest, 0, 5);
79 System.arraycopy(src, 0, dest, 0, 1);
90 System.arraycopy(src, 0, dest, 0, 1);
101 System.arraycopy(src, 0, dest, 0, 1);
112 System.arraycopy(src, 0, dest, 0, 1);
123 System.arraycopy(src, 0, dest, 0, 1);
139 System.arraycopy(src, 0, dest, 0, 1);
SystemTest.java 72 System.arraycopy(new char[5], 0, "Hello", 0, 3);
81 System.arraycopy("Hello", 0, new char[5], 0, 3);
90 System.arraycopy(new char[5], 0, new Object[5], 0, 3);
99 System.arraycopy(new Object[] { null, 5, "hello" }, 0,
109 System.arraycopy(null, 0, new char[5], 0, 3);
115 System.arraycopy(new char[5], 0, null, 0, 3);
  /art/test/011-array-copy/src/
Main.java 20 * System.arraycopy cases
36 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length);
38 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length);
42 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length);
87 System.arraycopy(byteArray, srcPos, byteArray, dstPos, length);
88 System.arraycopy(shortArray, srcPos, shortArray, dstPos, length);
89 System.arraycopy(intArray, srcPos, intArray, dstPos, length);
90 System.arraycopy(longArray, srcPos, longArray, dstPos, length);
  /dalvik/tests/011-array-copy/src/
Main.java 20 * System.arraycopy cases
36 System.arraycopy(stringArray, 0, objectArray, 0, stringArray.length);
38 System.arraycopy(objectArray, 0, stringArray, 0, stringArray.length);
42 System.arraycopy(objectArray, 0, stringArray, 0,stringArray.length);
87 System.arraycopy(byteArray, srcPos, byteArray, dstPos, length);
88 System.arraycopy(shortArray, srcPos, shortArray, dstPos, length);
89 System.arraycopy(intArray, srcPos, intArray, dstPos, length);
90 System.arraycopy(longArray, srcPos, longArray, dstPos, length);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectVector.java 97 System.arraycopy(v.m_map, 0, m_map, 0, m_firstFree);
135 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
159 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
185 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
212 System.arraycopy(m_map, 0, newMap, 0, m_firstFree + 1);
219 System.arraycopy(m_map, at, m_map, at + 1, m_firstFree - at);
260 System.arraycopy(m_map, i + 1, m_map, i - 1, m_firstFree - i);
285 System.arraycopy(m_map, i + 1, m_map, i, m_firstFree);
414 System.arraycopy(m_map, 0, newMap, 0, m_firstFree);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CTSBlockCipher.java 95 System.arraycopy(buf, blockSize, buf, 0, blockSize);
146 System.arraycopy(in, inOff, buf, bufOff, gapLen);
149 System.arraycopy(buf, blockSize, buf, 0, blockSize);
158 System.arraycopy(in, inOff, buf, bufOff, blockSize);
160 System.arraycopy(buf, blockSize, buf, 0, blockSize);
167 System.arraycopy(in, inOff, buf, bufOff, len);
231 System.arraycopy(block, 0, out, outOff + blockSize, len);
253 System.arraycopy(buf, blockSize, block, 0, len);
256 System.arraycopy(lastBlock, 0, out, outOff + blockSize, len);

Completed in 859 milliseconds

1 2 3 4 5 6 7 8 91011>>