Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/bluetooth/le/
DBluetoothLeUtils.java82 static boolean equals(SparseArray<byte[]> array, SparseArray<byte[]> otherArray) { in equals() argument
83 if (array == otherArray) { in equals()
86 if (array == null || otherArray == null) { in equals()
89 if (array.size() != otherArray.size()) { in equals()
95 if (array.keyAt(i) != otherArray.keyAt(i) || in equals()
96 !Arrays.equals(array.valueAt(i), otherArray.valueAt(i))) { in equals()
/frameworks/base/core/jni/
Dandroid_os_Debug.cpp486 jint* otherArray = (jint*)env->GetPrimitiveArrayCritical(otherIntArray, 0); in android_os_Debug_getDirtyPagesPid() local
487 if (otherArray == NULL) { in android_os_Debug_getDirtyPagesPid()
493 otherArray[j++] = stats[i].pss; in android_os_Debug_getDirtyPagesPid()
494 otherArray[j++] = stats[i].swappablePss; in android_os_Debug_getDirtyPagesPid()
495 otherArray[j++] = stats[i].privateDirty; in android_os_Debug_getDirtyPagesPid()
496 otherArray[j++] = stats[i].sharedDirty; in android_os_Debug_getDirtyPagesPid()
497 otherArray[j++] = stats[i].privateClean; in android_os_Debug_getDirtyPagesPid()
498 otherArray[j++] = stats[i].sharedClean; in android_os_Debug_getDirtyPagesPid()
499 otherArray[j++] = stats[i].swappedOut; in android_os_Debug_getDirtyPagesPid()
500 otherArray[j++] = stats[i].swappedOutPss; in android_os_Debug_getDirtyPagesPid()
[all …]