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

  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
ChannelMergerNode.cpp 90 AudioChannel* inputChannel = input->bus()->channel(j);
92 outputChannel->copyFrom(inputChannel);
  /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...]
  /frameworks/base/services/core/java/com/android/server/input/
InputWindowHandle.java 20 import android.view.InputChannel;
40 public InputChannel inputChannel;
  /frameworks/base/core/jni/
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/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();
242 GET_FIELD_ID(gInputWindowHandleClassInfo.inputChannel, clazz,
243 "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/base/services/core/java/com/android/server/wm/
InputMonitor.java 29 import android.view.InputChannel;
273 final InputChannel inputChannel = child.mInputChannel;
275 if (inputChannel == null || inputWindowHandle == null || child.mRemoved) {
  /frameworks/native/services/inputflinger/
InputWindow.h 114 sp<InputChannel> inputChannel;
166 inline sp<InputChannel> getInputChannel() const {
167 return mInfo ? mInfo->inputChannel : NULL;
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...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ImportVCardActivity.java 384 ReadableByteChannel inputChannel = null;
388 inputChannel = Channels.newChannel(resolver.openInputStream(sourceUri));
392 while (inputChannel.read(buffer) != -1) {
406 if (inputChannel != null) {
408 inputChannel.close();
410 Log.w(LOG_TAG, "Failed to close inputChannel.");
    [all...]
  /device/asus/flo/camera/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]
  /device/lge/hammerhead/camera/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]
  /device/moto/shamu/camera/QCamera2/HAL3/
QCamera3HWI.cpp     [all...]
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 

Completed in 510 milliseconds