HomeSort by relevance Sort by last modified time
    Searched defs:inputChannel (Results 1 - 24 of 24) sorted by null

  /frameworks/native/libs/input/tests/
InputChannel_test.cpp 44 sp<InputChannel> inputChannel = new InputChannel("channel name", pipe.sendFd);
46 EXPECT_STREQ("channel name", inputChannel->getName().c_str())
48 EXPECT_EQ(pipe.sendFd, inputChannel->getFd())
51 inputChannel.clear(); // destroys input channel
61 sp<InputChannel> serverChannel, clientChannel;
63 status_t result = InputChannel::openInputChannelPair("channel name",
112 sp<InputChannel> serverChannel, clientChannel;
114 status_t result = InputChannel::openInputChannelPair("channel name"
    [all...]
  /frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
InputConsumerController.java 29 import android.view.InputChannel;
65 public InputEventReceiver(InputChannel inputChannel, Looper looper) {
66 super(inputChannel, looper, Choreographer.getSfInstance());
147 final InputChannel inputChannel = new InputChannel();
150 mWindowManager.createInputConsumer(mToken, mName, inputChannel);
154 mInputEventReceiver = new InputEventReceiver(inputChannel, Looper.myLooper());
  /frameworks/base/services/core/java/com/android/server/input/
InputWindowHandle.java 20 import android.view.InputChannel;
44 public InputChannel inputChannel;
  /frameworks/base/core/jni/
android_view_InputChannel.cpp 17 #define LOG_TAG "InputChannel-JNI"
38 jfieldID mPtr; // native object attached to the DVM InputChannel
46 explicit NativeInputChannel(const sp<InputChannel>& inputChannel);
49 inline sp<InputChannel> getInputChannel() { return mInputChannel; }
55 sp<InputChannel> mInputChannel;
62 NativeInputChannel::NativeInputChannel(const sp<InputChannel>& inputChannel) :
63 mInputChannel(inputChannel), mDisposeCallback(NULL) {
96 sp<InputChannel> android_view_InputChannel_getInputChannel(JNIEnv* env, jobject inputChannelObj)
    [all...]
android_view_InputEventReceiver.cpp 55 jobject receiverWeak, const sp<InputChannel>& inputChannel,
92 jobject receiverWeak, const sp<InputChannel>& inputChannel,
95 mInputConsumer(inputChannel), mMessageQueue(messageQueue),
341 sp<InputChannel> inputChannel = android_view_InputChannel_getInputChannel(env,
343 if (inputChannel == NULL) {
344 jniThrowRuntimeException(env, "InputChannel is not initialized.");
355 receiverWeak, inputChannel, messageQueue)
    [all...]
android_view_InputEventSender.cpp 55 jobject senderWeak, const sp<InputChannel>& inputChannel,
83 jobject senderWeak, const sp<InputChannel>& inputChannel,
86 mInputPublisher(inputChannel), mMessageQueue(messageQueue),
241 sp<InputChannel> inputChannel = android_view_InputChannel_getInputChannel(env,
243 if (inputChannel == NULL) {
244 jniThrowRuntimeException(env, "InputChannel is not initialized.");
255 senderWeak, inputChannel, messageQueue)
    [all...]
  /frameworks/base/services/core/jni/
com_android_server_input_InputWindowHandle.cpp 36 jfieldID inputChannel;
94 gInputWindowHandleClassInfo.inputChannel);
96 mInfo->inputChannel = android_view_InputChannel_getInputChannel(env, inputChannelObj);
99 mInfo->inputChannel.clear();
243 GET_FIELD_ID(gInputWindowHandleClassInfo.inputChannel, clazz,
244 "inputChannel", "Landroid/view/InputChannel;");
com_android_server_input_InputManagerService.cpp 209 status_t registerInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel,
211 status_t unregisterInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel);
452 const sp<InputChannel>& inputChannel,
456 inputChannel, inputWindowHandle, monitor);
460 const sp<InputChannel>& inputChannel) {
462 return mInputManager->getDispatcher()->unregisterInputChannel(inputChannel);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/vcard/
ImportVCardActivity.java 458 ReadableByteChannel inputChannel = null;
462 inputChannel = Channels.newChannel(resolver.openInputStream(sourceUri));
466 while (inputChannel.read(buffer) != -1) {
476 if (inputChannel != null) {
478 inputChannel.close();
480 Log.w(LOG_TAG, "Failed to close inputChannel.");
    [all...]
  /frameworks/native/services/inputflinger/
InputWindow.h 117 sp<InputChannel> inputChannel;
171 inline sp<InputChannel> getInputChannel() const {
172 return mInfo ? mInfo->inputChannel : NULL;
InputDispatcher.h 150 sp<InputChannel> inputChannel;
338 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
339 const sp<InputChannel>& toChannel) = 0;
346 virtual status_t registerInputChannel(const sp<InputChannel>& inputChannel,
348 virtual status_t unregisterInputChannel(const sp<InputChannel>& inputChannel) = 0;
395 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
396 const sp<InputChannel>& toChannel)
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
InputMonitor.java 47 import android.view.InputChannel;
116 super(service, null /* token */, name, null /* inputChannel */, clientPid, clientUser);
182 void createInputConsumer(IBinder token, String name, InputChannel inputChannel, int clientPid,
189 inputChannel, clientPid, clientUser);
652 final InputChannel inputChannel = w.mInputChannel;
654 if (inputChannel == null || inputWindowHandle == null || w.mRemoved
WindowManagerService.java 206 import android.view.InputChannel;
    [all...]
  /packages/apps/Launcher3/quickstep/libs/
sysui_shared.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-8.0.0_r4-robolectric-0.jar 
android-all-o-preview-4-robolectric-0.jar 
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 
android-all-6.0.0_r1-robolectric-0.jar 
  /prebuilts/tools/common/m2/repository/com/koushikdutta/async/androidasync/2.1.3/
androidasync-2.1.3.jar 
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-5.1.1_r9-robolectric-1.jar 

Completed in 329 milliseconds