Searched refs:otherArray (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/bluetooth/le/
H A DBluetoothLeUtils.java82 static boolean equals(SparseArray<byte[]> array, SparseArray<byte[]> otherArray) { argument
83 if (array == otherArray) {
86 if (array == null || otherArray == null) {
89 if (array.size() != otherArray.size()) {
95 if (array.keyAt(i) != otherArray.keyAt(i) ||
96 !Arrays.equals(array.valueAt(i), otherArray.valueAt(i))) {
/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp474 jint* otherArray = (jint*)env->GetPrimitiveArrayCritical(otherIntArray, 0); local
475 if (otherArray == NULL) {
481 otherArray[j++] = stats[i].pss;
482 otherArray[j++] = stats[i].swappablePss;
483 otherArray[j++] = stats[i].privateDirty;
484 otherArray[j++] = stats[i].sharedDirty;
485 otherArray[j++] = stats[i].privateClean;
486 otherArray[j++] = stats[i].sharedClean;
487 otherArray[j++] = stats[i].swappedOut;
490 env->ReleasePrimitiveArrayCritical(otherIntArray, otherArray,
[all...]

Completed in 230 milliseconds