HomeSort by relevance Sort by last modified time
    Searched refs:inputChannel (Results 1 - 25 of 34) sorted by null

1 2

  /frameworks/base/core/jni/
android_view_InputChannel.h 27 const sp<InputChannel>& inputChannel, void* data);
29 extern sp<InputChannel> android_view_InputChannel_getInputChannel(JNIEnv* env,
32 /* Sets a callback that is invoked when the InputChannel DVM object is disposed (or finalized).
android_view_InputChannel.cpp 17 #define LOG_TAG "InputChannel-JNI"
36 jfieldID mPtr; // native object attached to the DVM InputChannel
44 NativeInputChannel(const sp<InputChannel>& inputChannel);
47 inline sp<InputChannel> getInputChannel() { return mInputChannel; }
53 sp<InputChannel> mInputChannel;
60 NativeInputChannel::NativeInputChannel(const sp<InputChannel>& inputChannel) :
61 mInputChannel(inputChannel), mDisposeCallback(NULL) {
94 sp<InputChannel> android_view_InputChannel_getInputChannel(JNIEnv* env, jobject inputChannelObj)
    [all...]
android_view_InputEventReceiver.cpp 53 jobject receiverWeak, const sp<InputChannel>& inputChannel,
90 jobject receiverWeak, const sp<InputChannel>& inputChannel,
93 mInputConsumer(inputChannel), mMessageQueue(messageQueue),
335 sp<InputChannel> inputChannel = android_view_InputChannel_getInputChannel(env,
337 if (inputChannel == NULL) {
338 jniThrowRuntimeException(env, "InputChannel is not initialized.");
349 receiverWeak, inputChannel, messageQueue)
    [all...]
android_view_InputEventSender.cpp 52 jobject senderWeak, const sp<InputChannel>& inputChannel,
80 jobject senderWeak, const sp<InputChannel>& inputChannel,
83 mInputPublisher(inputChannel), mMessageQueue(messageQueue),
235 sp<InputChannel> inputChannel = android_view_InputChannel_getInputChannel(env,
237 if (inputChannel == NULL) {
238 jniThrowRuntimeException(env, "InputChannel is not initialized.");
249 senderWeak, inputChannel, messageQueue)
    [all...]
  /frameworks/base/core/java/android/view/
InputEventSender.java 40 private InputChannel mInputChannel;
44 InputChannel inputChannel, MessageQueue messageQueue);
52 * @param inputChannel The input channel.
55 public InputEventSender(InputChannel inputChannel, Looper looper) {
56 if (inputChannel == null) {
57 throw new IllegalArgumentException("inputChannel must not be null");
63 mInputChannel = inputChannel;
66 inputChannel, mMessageQueue)
    [all...]
InputEventReceiver.java 41 private InputChannel mInputChannel;
48 InputChannel inputChannel, MessageQueue messageQueue);
57 * @param inputChannel The input channel.
60 public InputEventReceiver(InputChannel inputChannel, Looper looper) {
61 if (inputChannel == null) {
62 throw new IllegalArgumentException("inputChannel must not be null");
68 mInputChannel = inputChannel;
71 inputChannel, mMessageQueue)
    [all...]
  /cts/apps/CtsVerifier/lib/colorchecker/
testingimage.cpp 34 int inputChannel, int inputRowSpan) {
38 inputRowSpan, inputHeight, inputChannel);
41 mChannels = inputChannel;
48 inputImage[i * inputRowSpan + j * inputChannel + k];
58 int inputChannel, int inputRowSpan,
60 mImage = new unsigned char[newHeight * newWidth * inputChannel];
63 newHeight, newWidth, inputChannel);
66 mChannels = inputChannel;
85 + (j * widthScale + m) * inputChannel + k];
  /frameworks/base/services/core/java/com/android/server/wm/
PointerEventDispatcher.java 19 import android.view.InputChannel;
34 public PointerEventDispatcher(InputChannel inputChannel) {
35 super(inputChannel, UiThread.getHandler().getLooper());
FakeWindowImpl.java 25 import android.view.InputChannel;
31 final InputChannel mServerChannel, mClientChannel;
45 InputChannel[] channels = InputChannel.openInputChannelPair(name);
60 mWindowHandle.inputChannel = mServerChannel;
InputMonitor.java 29 import android.view.InputChannel;
273 final InputChannel inputChannel = child.mInputChannel;
275 if (inputChannel == null || inputWindowHandle == null || child.mRemoved) {
WindowState.java 59 import android.view.InputChannel;
306 InputChannel mInputChannel;
    [all...]
DragState.java 35 import android.view.InputChannel;
56 InputChannel mServerChannel, mClientChannel;
99 InputChannel[] channels = InputChannel.openInputChannelPair("drag");
114 mDragWindowHandle.inputChannel = mServerChannel;
  /cts/apps/CtsVerifier/include/colorchecker/
testingimage.h 35 int inputChannel, int inputRowSpan,
  /frameworks/base/services/core/java/com/android/server/input/
InputWindowHandle.java 20 import android.view.InputChannel;
40 public InputChannel inputChannel;
InputManagerService.java 76 import android.view.InputChannel;
173 private static native void nativeRegisterInputChannel(long ptr, InputChannel inputChannel,
175 private static native void nativeUnregisterInputChannel(long ptr, InputChannel inputChannel);
186 InputChannel fromChannel, InputChannel toChannel);
447 public InputChannel monitorInput(String inputChannelName) {
452 InputChannel[] inputChannels = InputChannel.openInputChannelPair(inputChannelName)
    [all...]
  /frameworks/native/libs/input/tests/
InputChannel_test.cpp 44 sp<InputChannel> inputChannel = new InputChannel(String8("channel name"), pipe.sendFd);
46 EXPECT_STREQ("channel name", inputChannel->getName().string())
48 EXPECT_EQ(pipe.sendFd, inputChannel->getFd())
51 inputChannel.clear(); // destroys input channel
61 sp<InputChannel> serverChannel, clientChannel;
63 status_t result = InputChannel::openInputChannelPair(String8("channel name"),
112 sp<InputChannel> serverChannel, clientChannel;
114 status_t result = InputChannel::openInputChannelPair(String8("channel name")
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
ChannelMergerNode.cpp 91 AudioChannel* inputChannel = input->bus()->channel(j);
93 outputChannel->copyFrom(inputChannel);
  /frameworks/base/services/core/jni/
com_android_server_input_InputWindowHandle.cpp 36 jfieldID inputChannel;
95 gInputWindowHandleClassInfo.inputChannel);
97 mInfo->inputChannel = android_view_InputChannel_getInputChannel(env, inputChannelObj);
100 mInfo->inputChannel.clear();
245 GET_FIELD_ID(gInputWindowHandleClassInfo.inputChannel, clazz,
246 "inputChannel", "Landroid/view/InputChannel;");
com_android_server_input_InputManagerService.cpp 182 status_t registerInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel,
184 status_t unregisterInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel);
354 const sp<InputChannel>& inputChannel,
357 inputChannel, inputWindowHandle, monitor);
361 const sp<InputChannel>& inputChannel) {
362 return mInputManager->getDispatcher()->unregisterInputChannel(inputChannel);
    [all...]
  /frameworks/native/services/inputflinger/
InputDispatcher.h 145 sp<InputChannel> inputChannel;
333 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
334 const sp<InputChannel>& toChannel) = 0;
341 virtual status_t registerInputChannel(const sp<InputChannel>& inputChannel,
343 virtual status_t unregisterInputChannel(const sp<InputChannel>& inputChannel) = 0;
390 virtual bool transferTouchFocus(const sp<InputChannel>& fromChannel,
391 const sp<InputChannel>& toChannel)
    [all...]
InputWindow.h 119 sp<InputChannel> inputChannel;
172 inline sp<InputChannel> getInputChannel() const {
173 return mInfo ? mInfo->inputChannel : NULL;
InputDispatcher.cpp 222 unregisterInputChannel(mConnectionsByFd.valueAt(0)->inputChannel);
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
IInputMethodSessionWrapper.java 30 import android.view.InputChannel;
58 InputChannel mChannel;
62 InputMethodSession inputMethodSession, InputChannel channel) {
216 public ImeInputEventReceiver(InputChannel inputChannel, Looper looper) {
217 super(inputChannel, looper);
  /frameworks/base/media/java/android/media/tv/
ITvInputSessionWrapper.java 27 import android.view.InputChannel;
63 private InputChannel mChannel;
67 InputChannel channel) {
237 public TvInputEventReceiver(InputChannel inputChannel, Looper looper) {
238 super(inputChannel, looper);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ImportVCardActivity.java 386 ReadableByteChannel inputChannel = null;
390 inputChannel = Channels.newChannel(resolver.openInputStream(sourceUri));
394 while (inputChannel.read(buffer) != -1) {
408 if (inputChannel != null) {
410 inputChannel.close();
412 Log.w(LOG_TAG, "Failed to close inputChannel.");
    [all...]

Completed in 359 milliseconds

1 2