Lines Matching refs:tempTouchState

1957     TouchState tempTouchState;  in findTouchedWindowTargetsLocked()  local
1962 tempTouchState.copyFrom(*oldState); in findTouchedWindowTargetsLocked()
1965 bool isSplit = tempTouchState.split; in findTouchedWindowTargetsLocked()
1966 bool switchedDevice = tempTouchState.deviceId >= 0 && tempTouchState.displayId >= 0 && in findTouchedWindowTargetsLocked()
1967 (tempTouchState.deviceId != entry.deviceId || tempTouchState.source != entry.source || in findTouchedWindowTargetsLocked()
1968 tempTouchState.displayId != displayId); in findTouchedWindowTargetsLocked()
1978 if (switchedDevice && tempTouchState.down && !down && !isHoverAction) { in findTouchedWindowTargetsLocked()
1988 tempTouchState.reset(); in findTouchedWindowTargetsLocked()
1989 tempTouchState.down = down; in findTouchedWindowTargetsLocked()
1990 tempTouchState.deviceId = entry.deviceId; in findTouchedWindowTargetsLocked()
1991 tempTouchState.source = entry.source; in findTouchedWindowTargetsLocked()
1992 tempTouchState.displayId = displayId; in findTouchedWindowTargetsLocked()
2021 findTouchedWindowAtLocked(displayId, x, y, &tempTouchState, in findTouchedWindowTargetsLocked()
2038 newTouchedWindowHandle = tempTouchState.getFirstForegroundWindowHandle(); in findTouchedWindowTargetsLocked()
2085 findTouchedGestureMonitorsLocked(displayId, tempTouchState.portalWindows)) in findTouchedWindowTargetsLocked()
2086 : tempTouchState.gestureMonitors; in findTouchedWindowTargetsLocked()
2121 tempTouchState.addOrUpdateWindow(newTouchedWindowHandle, targetFlags, pointerIds); in findTouchedWindowTargetsLocked()
2122 } else if (tempTouchState.windows.empty()) { in findTouchedWindowTargetsLocked()
2125 tempTouchState.split = true; in findTouchedWindowTargetsLocked()
2128 tempTouchState.addGestureMonitors(newGestureMonitors); in findTouchedWindowTargetsLocked()
2134 if (!tempTouchState.down) { in findTouchedWindowTargetsLocked()
2148 tempTouchState.isSlippery()) { in findTouchedWindowTargetsLocked()
2153 tempTouchState.getFirstForegroundWindowHandle(); in findTouchedWindowTargetsLocked()
2154 newTouchedWindowHandle = findTouchedWindowAtLocked(displayId, x, y, &tempTouchState); in findTouchedWindowTargetsLocked()
2170 tempTouchState.addOrUpdateWindow(oldTouchedWindowHandle, in findTouchedWindowTargetsLocked()
2194 tempTouchState.addOrUpdateWindow(newTouchedWindowHandle, targetFlags, pointerIds); in findTouchedWindowTargetsLocked()
2209 tempTouchState.addOrUpdateWindow(mLastHoverWindowHandle, in findTouchedWindowTargetsLocked()
2222 tempTouchState.addOrUpdateWindow(newHoverWindowHandle, in findTouchedWindowTargetsLocked()
2232 for (const TouchedWindow& touchedWindow : tempTouchState.windows) { in findTouchedWindowTargetsLocked()
2242 bool hasGestureMonitor = !tempTouchState.gestureMonitors.empty(); in findTouchedWindowTargetsLocked()
2259 tempTouchState.getFirstForegroundWindowHandle(); in findTouchedWindowTargetsLocked()
2262 for (const TouchedWindow& touchedWindow : tempTouchState.windows) { in findTouchedWindowTargetsLocked()
2266 tempTouchState.addOrUpdateWindow(windowInfoHandle, in findTouchedWindowTargetsLocked()
2283 tempTouchState.getFirstForegroundWindowHandle(); in findTouchedWindowTargetsLocked()
2291 tempTouchState in findTouchedWindowTargetsLocked()
2306 for (const TouchedWindow& touchedWindow : tempTouchState.windows) { in findTouchedWindowTargetsLocked()
2311 for (const TouchedMonitor& touchedMonitor : tempTouchState.gestureMonitors) { in findTouchedWindowTargetsLocked()
2318 tempTouchState.filterNonAsIsTouchWindows(); in findTouchedWindowTargetsLocked()
2352 tempTouchState.reset(); in findTouchedWindowTargetsLocked()
2355 tempTouchState.deviceId = entry.deviceId; in findTouchedWindowTargetsLocked()
2356 tempTouchState.source = entry.source; in findTouchedWindowTargetsLocked()
2357 tempTouchState.displayId = displayId; in findTouchedWindowTargetsLocked()
2362 tempTouchState.reset(); in findTouchedWindowTargetsLocked()
2377 for (size_t i = 0; i < tempTouchState.windows.size();) { in findTouchedWindowTargetsLocked()
2378 TouchedWindow& touchedWindow = tempTouchState.windows[i]; in findTouchedWindowTargetsLocked()
2382 tempTouchState.windows.erase(tempTouchState.windows.begin() + i); in findTouchedWindowTargetsLocked()
2394 if (tempTouchState.displayId >= 0) { in findTouchedWindowTargetsLocked()
2395 mTouchStatesByDisplay[displayId] = tempTouchState; in findTouchedWindowTargetsLocked()