Home
last modified time | relevance | path

Searched refs:otherInfo (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/android/service/watchdog/
DExplicitHealthCheckService.java246 PackageConfig otherInfo = (PackageConfig) other; in equals() local
247 return Objects.equals(otherInfo.getHealthCheckTimeoutMillis(), in equals()
249 && Objects.equals(otherInfo.getPackageName(), mPackageName); in equals()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/
DApplicationsState.java628 for (ApplicationInfo otherInfo : mApplications) { in removePackage()
629 if (!otherInfo.enabled) { in removePackage()
637 for (ApplicationInfo otherInfo : mApplications) { in removePackage()
638 if (AppUtils.isInstant(otherInfo)) { in removePackage()
/frameworks/native/services/inputflinger/
DInputDispatcher.cpp1799 const InputWindowInfo* otherInfo = otherHandle->getInfo(); in isWindowObscuredAtPointLocked() local
1800 if (otherInfo->displayId == displayId in isWindowObscuredAtPointLocked()
1801 && otherInfo->visible && !otherInfo->isTrustedOverlay() in isWindowObscuredAtPointLocked()
1802 && otherInfo->frameContainsPoint(x, y)) { in isWindowObscuredAtPointLocked()
1819 const InputWindowInfo* otherInfo = otherHandle->getInfo(); in isWindowObscuredLocked() local
1820 if (otherInfo->displayId == displayId in isWindowObscuredLocked()
1821 && otherInfo->visible && !otherInfo->isTrustedOverlay() in isWindowObscuredLocked()
1822 && otherInfo->overlaps(windowInfo)) { in isWindowObscuredLocked()
/frameworks/base/core/java/android/view/accessibility/
DAccessibilityNodeInfo.java3617 final TouchDelegateInfo otherInfo = other.mTouchDelegateInfo; in init() local
3618 mTouchDelegateInfo = (otherInfo != null) in init()
3619 ? new TouchDelegateInfo(otherInfo.mTargetMap, true) : null; in init()