Searched refs:occlusionInfo (Results 1 – 2 of 2) sorted by relevance
3207 bool InputDispatcher::isTouchTrustedLocked(const TouchOcclusionInfo& occlusionInfo) const { in isTouchTrustedLocked()3208 if (occlusionInfo.hasBlockingOcclusion) { in isTouchTrustedLocked()3209 ALOGW("Untrusted touch due to occlusion by %s/%s", occlusionInfo.obscuringPackage.c_str(), in isTouchTrustedLocked()3210 occlusionInfo.obscuringUid.toString().c_str()); in isTouchTrustedLocked()3213 if (occlusionInfo.obscuringOpacity > mMaximumObscuringOpacityForTouch) { in isTouchTrustedLocked()3216 occlusionInfo.obscuringPackage.c_str(), occlusionInfo.obscuringUid.toString().c_str(), in isTouchTrustedLocked()3217 occlusionInfo.obscuringOpacity, mMaximumObscuringOpacityForTouch); in isTouchTrustedLocked()5255 TouchOcclusionInfo occlusionInfo = computeTouchOcclusionInfoLocked(window, x, y); in canWindowReceiveMotionLocked() local5256 if (!isTouchTrustedLocked(occlusionInfo)) { in canWindowReceiveMotionLocked()5259 for (const auto& log : occlusionInfo.debugInfo) { in canWindowReceiveMotionLocked()[all …]
582 bool isTouchTrustedLocked(const TouchOcclusionInfo& occlusionInfo) const REQUIRES(mLock);