/frameworks/native/services/inputflinger/ |
InputApplication.cpp | 25 // --- InputApplicationHandle --- 27 InputApplicationHandle::InputApplicationHandle() : 31 InputApplicationHandle::~InputApplicationHandle() { 35 void InputApplicationHandle::releaseInfo() {
|
InputApplication.h | 43 class InputApplicationHandle : public RefBase { 75 InputApplicationHandle(); 76 virtual ~InputApplicationHandle();
|
InputWindow.cpp | 68 InputWindowHandle::InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle) : 69 inputApplicationHandle(inputApplicationHandle), mInfo(NULL) {
|
InputWindow.h | 166 const sp<InputApplicationHandle> inputApplicationHandle; 202 explicit InputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle);
|
InputDispatcher.h | 210 virtual nsecs_t notifyANR(const sp<InputApplicationHandle>& inputApplicationHandle, 318 const sp<InputApplicationHandle>& inputApplicationHandle) = 0; 392 virtual void setFocusedApplication(const sp<InputApplicationHandle>& inputApplicationHandle); 603 sp<InputApplicationHandle> inputApplicationHandle; [all...] |
InputDispatcher.cpp | 453 && touchedWindowHandle->inputApplicationHandle [all...] |
/frameworks/base/services/core/java/com/android/server/input/ |
InputApplicationHandle.java | 25 public final class InputApplicationHandle { 42 public InputApplicationHandle(Object appWindowToken) {
|
InputWindowHandle.java | 35 public final InputApplicationHandle inputApplicationHandle; 99 public InputWindowHandle(InputApplicationHandle inputApplicationHandle, 101 this.inputApplicationHandle = inputApplicationHandle;
|
InputManagerService.java | 224 InputApplicationHandle application); [all...] |
/frameworks/base/services/core/jni/ |
com_android_server_input_InputApplicationHandle.h | 27 class NativeInputApplicationHandle : public InputApplicationHandle { 41 extern sp<InputApplicationHandle> android_server_InputApplicationHandle_getHandle(
|
com_android_server_input_InputWindowHandle.h | 29 NativeInputWindowHandle(const sp<InputApplicationHandle>& inputApplicationHandle,
|
com_android_server_input_InputApplicationHandle.cpp | 17 #define LOG_TAG "InputApplicationHandle" 85 sp<InputApplicationHandle> android_server_InputApplicationHandle_getHandle( 138 int res = jniRegisterNativeMethods(env, "com/android/server/input/InputApplicationHandle", 144 FIND_CLASS(clazz, "com/android/server/input/InputApplicationHandle");
|
com_android_server_input_InputWindowHandle.cpp | 35 jfieldID inputApplicationHandle; 65 const sp<InputApplicationHandle>& inputApplicationHandle, jweak objWeak) : 66 InputWindowHandle(inputApplicationHandle), 183 gInputWindowHandleClassInfo.inputApplicationHandle); 184 sp<InputApplicationHandle> inputApplicationHandle = 189 handle = new NativeInputWindowHandle(inputApplicationHandle, objWeak); 239 GET_FIELD_ID(gInputWindowHandleClassInfo.inputApplicationHandle, 241 "inputApplicationHandle", "Lcom/android/server/input/InputApplicationHandle;") [all...] |
com_android_server_input_InputManagerService.cpp | 143 const sp<InputApplicationHandle>& inputApplicationHandle) { 144 if (inputApplicationHandle == NULL) { 147 return static_cast<NativeInputApplicationHandle*>(inputApplicationHandle.get())-> 241 virtual nsecs_t notifyANR(const sp<InputApplicationHandle>& inputApplicationHandle, 670 nsecs_t NativeInputManager::notifyANR(const sp<InputApplicationHandle>& inputApplicationHandle, 680 getInputApplicationHandleObjLocalRef(env, inputApplicationHandle); 786 sp<InputApplicationHandle> applicationHandle [all...] |
/frameworks/base/services/core/java/com/android/server/wm/ |
InputConsumerImpl.java | 23 import com.android.server.input.InputApplicationHandle; 29 final InputApplicationHandle mApplicationHandle; 46 mApplicationHandle = new InputApplicationHandle(null);
|
DragState.java | 58 import com.android.server.input.InputApplicationHandle; 135 InputApplicationHandle mDragApplicationHandle; 146 mDragApplicationHandle = new InputApplicationHandle(null);
|
InputMonitor.java | 50 import com.android.server.input.InputApplicationHandle; 219 public long notifyANR(InputApplicationHandle inputApplicationHandle, 231 if (appWindowToken == null && inputApplicationHandle != null) { 232 appWindowToken = (AppWindowToken)inputApplicationHandle.appWindowToken; 516 final InputApplicationHandle handle = newApp.mInputApplicationHandle;
|
TaskPositioner.java | 56 import com.android.server.input.InputApplicationHandle; 126 InputApplicationHandle mDragApplicationHandle; 268 mDragApplicationHandle = new InputApplicationHandle(null);
|
AppWindowToken.java | 69 import com.android.server.input.InputApplicationHandle; 166 final InputApplicationHandle mInputApplicationHandle; 228 mInputApplicationHandle = new InputApplicationHandle(this); [all...] |
/frameworks/native/services/inputflinger/tests/ |
InputDispatcher_test.cpp | 55 virtual nsecs_t notifyANR(const sp<InputApplicationHandle>&,
|