Lines Matching refs:newArgs
178 NotifyMotionArgs newArgs = processMotion(args); in notifyMotion() local
180 mNextListener.notify(newArgs); in notifyMotion()
234 NotifyMotionArgs newArgs(args); in processMouseEventLocked() local
235 newArgs.displayId = displayId; in processMouseEventLocked()
243 newArgs.pointerCoords[0].setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_X, deltaX); in processMouseEventLocked()
244 newArgs.pointerCoords[0].setAxisValue(AMOTION_EVENT_AXIS_RELATIVE_Y, deltaY); in processMouseEventLocked()
252 newArgs.pointerCoords[0].setAxisValue(AMOTION_EVENT_AXIS_X, x); in processMouseEventLocked()
253 newArgs.pointerCoords[0].setAxisValue(AMOTION_EVENT_AXIS_Y, y); in processMouseEventLocked()
254 newArgs.xCursorPosition = x; in processMouseEventLocked()
255 newArgs.yCursorPosition = y; in processMouseEventLocked()
260 return newArgs; in processMouseEventLocked()
267 NotifyMotionArgs newArgs(args); in processTouchpadEventLocked() local
268 newArgs.displayId = displayId; in processTouchpadEventLocked()
279 newArgs.pointerCoords[0].setAxisValue(AMOTION_EVENT_AXIS_X, x); in processTouchpadEventLocked()
280 newArgs.pointerCoords[0].setAxisValue(AMOTION_EVENT_AXIS_Y, y); in processTouchpadEventLocked()
281 newArgs.xCursorPosition = x; in processTouchpadEventLocked()
282 newArgs.yCursorPosition = y; in processTouchpadEventLocked()
290 for (uint32_t i = 0; i < newArgs.getPointerCount(); i++) { in processTouchpadEventLocked()
291 newArgs.pointerCoords[i].setAxisValue(AMOTION_EVENT_AXIS_X, in processTouchpadEventLocked()
293 newArgs.pointerCoords[i].setAxisValue(AMOTION_EVENT_AXIS_Y, in processTouchpadEventLocked()
296 newArgs.xCursorPosition = x; in processTouchpadEventLocked()
297 newArgs.yCursorPosition = y; in processTouchpadEventLocked()
299 return newArgs; in processTouchpadEventLocked()