Home | History | Annotate | Download | only in wm

Lines Matching refs:touchedWin

450         WindowState touchedWin = mDisplayContent.getTouchableWinAtPointLocked(x, y);
451 if (touchedWin != null && !isWindowNotified(touchedWin)) {
454 touchedWin = null;
461 if ((touchedWin != mTargetWindow) && (mTargetWindow != null)) {
473 if (touchedWin != null) {
475 Slog.d(TAG_WM, "sending DRAG_LOCATION to " + touchedWin);
477 DragEvent evt = obtainDragEvent(touchedWin, DragEvent.ACTION_DRAG_LOCATION,
479 touchedWin.mClient.dispatchDragEvent(evt);
480 if (myPid != touchedWin.mSession.mPid) {
487 mTargetWindow = touchedWin;
500 WindowState touchedWin = mDisplayContent.getTouchableWinAtPointLocked(x, y);
502 if (!isWindowNotified(touchedWin)) {
510 Slog.d(TAG_WM, "sending DROP to " + touchedWin);
513 final int targetUserId = UserHandle.getUserId(touchedWin.getOwningUid());
521 touchedWin.getOwningPackage(),
530 final IBinder token = touchedWin.mClient.asBinder();
531 DragEvent evt = obtainDragEvent(touchedWin, DragEvent.ACTION_DROP, x, y,
534 touchedWin.mClient.dispatchDragEvent(evt);
541 Slog.w(TAG_WM, "can't send drop notification to win " + touchedWin);
544 if (myPid != touchedWin.mSession.mPid) {