Home
last modified time | relevance | path

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

/frameworks/base/core/jni/
Dandroid_view_MotionEvent.cpp92 MotionEvent* destEvent = android_view_MotionEvent_getNativePtr(env, eventObj); in android_view_MotionEvent_obtainAsCopy() local
93 if (!destEvent) { in android_view_MotionEvent_obtainAsCopy()
94 destEvent = new MotionEvent(); in android_view_MotionEvent_obtainAsCopy()
95 android_view_MotionEvent_setNativePtr(env, eventObj, destEvent); in android_view_MotionEvent_obtainAsCopy()
98 destEvent->copyFrom(event, true); in android_view_MotionEvent_obtainAsCopy()
578 MotionEvent* destEvent = reinterpret_cast<MotionEvent*>(destNativePtr); in android_view_MotionEvent_nativeCopy() local
579 if (!destEvent) { in android_view_MotionEvent_nativeCopy()
580 destEvent = new MotionEvent(); in android_view_MotionEvent_nativeCopy()
583 destEvent->copyFrom(sourceEvent, keepHistory); in android_view_MotionEvent_nativeCopy()
584 return reinterpret_cast<jlong>(destEvent); in android_view_MotionEvent_nativeCopy()