Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/bluetooth/le/
H A 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()
/aosp12/frameworks/base/core/jni/
H A Dandroid_os_Debug.cpp471 if (otherArray == NULL) { in android_os_Debug_getDirtyPagesPid()
477 otherArray[j++] = stats[i].pss; in android_os_Debug_getDirtyPagesPid()
478 otherArray[j++] = stats[i].swappablePss; in android_os_Debug_getDirtyPagesPid()
479 otherArray[j++] = stats[i].rss; in android_os_Debug_getDirtyPagesPid()
480 otherArray[j++] = stats[i].privateDirty; in android_os_Debug_getDirtyPagesPid()
481 otherArray[j++] = stats[i].sharedDirty; in android_os_Debug_getDirtyPagesPid()
482 otherArray[j++] = stats[i].privateClean; in android_os_Debug_getDirtyPagesPid()
483 otherArray[j++] = stats[i].sharedClean; in android_os_Debug_getDirtyPagesPid()
484 otherArray[j++] = stats[i].swappedOut; in android_os_Debug_getDirtyPagesPid()
485 otherArray[j++] = stats[i].swappedOutPss; in android_os_Debug_getDirtyPagesPid()
[all …]