Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/input/
H A DInputManagerInternal.java145 public abstract InputChannel createInputChannel(String inputChannelName); in createInputChannel() method in InputManagerInternal
H A DNativeInputManagerService.java57 InputChannel createInputChannel(String name); in createInputChannel() method
292 public native InputChannel createInputChannel(String name); in createInputChannel() method in NativeInputManagerService.NativeImpl
H A DInputManagerService.java715 final InputChannel channel = createInputChannel(name); in createSpyWindowGestureMonitor()
793 public InputChannel createInputChannel(String name) { in createInputChannel() method in InputManagerService
794 return mNative.createInputChannel(name); in createInputChannel()
3264 public InputChannel createInputChannel(String inputChannelName) { in createInputChannel() method in InputManagerService.LocalService
3265 return InputManagerService.this.createInputChannel(inputChannelName); in createInputChannel()
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DInputConsumerImpl.java61 mClientChannel = mService.mInputManager.createInputChannel(name); in InputConsumerImpl()
H A DEmbeddedWindowController.java210 mInputChannel = mWmService.mInputManager.createInputChannel(name); in openInputChannel()
H A DLetterbox.java305 mClientChannel = mWmService.mInputManager.createInputChannel(name); in InputInterceptor()
H A DTaskPositioner.java212 mClientChannel = mService.mInputManager.createInputChannel(TAG); in register()
H A DDragState.java363 mClientChannel = mService.mInputManager.createInputChannel("drag"); in InputInterceptor()
H A DWindowState.java2647 mInputChannel = mWmService.mInputManager.createInputChannel(name); in openInputChannel()
/aosp14/frameworks/base/services/core/java/com/android/server/inputmethod/
H A DHandwritingModeController.java124 final InputChannel channel = mInputManagerInternal.createInputChannel(name); in initializeHandwritingSpy()
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/
H A DDesktopModeWindowDecorViewModel.java566 createInputChannel(displayId); in incrementEventReceiverTasks()
830 private void createInputChannel(int displayId) { in createInputChannel() method in DesktopModeWindowDecorViewModel
/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DSystemServicesTestRule.java287 doReturn(mInputChannel).when(mImService).createInputChannel(anyString());
/aosp14/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp280 base::Result<std::unique_ptr<InputChannel>> createInputChannel(const std::string& name);
539 base::Result<std::unique_ptr<InputChannel>> NativeInputManager::createInputChannel( in createInputChannel() function in android::NativeInputManager
542 return mInputManager->getDispatcher().createInputChannel(name); in createInputChannel()
1798 base::Result<std::unique_ptr<InputChannel>> inputChannel = im->createInputChannel(name); in nativeCreateInputChannel()