Home
last modified time | relevance | path

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

/aosp14/frameworks/base/services/core/java/com/android/server/input/
H A DNativeInputManagerService.java61 void removeInputChannel(IBinder connectionToken); in removeInputChannel() argument
298 public native void removeInputChannel(IBinder connectionToken); in removeInputChannel() argument
H A DInputManagerService.java801 public void removeInputChannel(IBinder connectionToken) { in removeInputChannel() argument
802 Objects.requireNonNull(connectionToken, "connectionToken must not be null"); in removeInputChannel()
803 mNative.removeInputChannel(connectionToken); in removeInputChannel()
/aosp14/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp284 status_t removeInputChannel(const sp<IBinder>& connectionToken);
551 status_t NativeInputManager::removeInputChannel(const sp<IBinder>& connectionToken) { in removeInputChannel() argument
553 return mInputManager->getDispatcher().removeInputChannel(connectionToken); in removeInputChannel()