Searched refs:otherArray (Results 1 – 2 of 2) sorted by relevance
82 static boolean equals(SparseArray<byte[]> array, SparseArray<byte[]> otherArray) { in equals() argument83 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()
466 jint* otherArray = (jint*)env->GetPrimitiveArrayCritical(otherIntArray, 0); in android_os_Debug_getDirtyPagesPid() local467 if (otherArray == NULL) { in android_os_Debug_getDirtyPagesPid()473 otherArray[j++] = stats[i].pss; in android_os_Debug_getDirtyPagesPid()474 otherArray[j++] = stats[i].swappablePss; in android_os_Debug_getDirtyPagesPid()475 otherArray[j++] = stats[i].rss; in android_os_Debug_getDirtyPagesPid()476 otherArray[j++] = stats[i].privateDirty; in android_os_Debug_getDirtyPagesPid()477 otherArray[j++] = stats[i].sharedDirty; in android_os_Debug_getDirtyPagesPid()478 otherArray[j++] = stats[i].privateClean; in android_os_Debug_getDirtyPagesPid()479 otherArray[j++] = stats[i].sharedClean; in android_os_Debug_getDirtyPagesPid()480 otherArray[j++] = stats[i].swappedOut; in android_os_Debug_getDirtyPagesPid()[all …]