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

  /external/webkit/Source/WebCore/webaudio/
AudioChannelMerger.cpp 84 AudioChannel* inputChannel = input->bus()->channel(j);
86 outputChannel->copyFrom(inputChannel);
  /frameworks/base/libs/androidfw/tests/
InputChannel_test.cpp 43 sp<InputChannel> inputChannel = new InputChannel(String8("channel name"), pipe.sendFd);
45 EXPECT_STREQ("channel name", inputChannel->getName().string())
47 EXPECT_EQ(pipe.sendFd, inputChannel->getFd())
50 inputChannel.clear(); // destroys input channel
60 sp<InputChannel> serverChannel, clientChannel;
62 status_t result = InputChannel::openInputChannelPair(String8("channel name"),
111 sp<InputChannel> serverChannel, clientChannel;
113 status_t result = InputChannel::openInputChannelPair(String8("channel name")
    [all...]
  /frameworks/base/services/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 50 jobject receiverObj, const sp<InputChannel>& inputChannel,
77 jobject receiverObj, const sp<InputChannel>& inputChannel,
80 mInputConsumer(inputChannel), mMessageQueue(messageQueue),
229 sp<InputChannel> inputChannel = android_view_InputChannel_getInputChannel(env,
231 if (inputChannel == NULL) {
232 jniThrowRuntimeException(env, "InputChannel is not initialized.");
243 receiverObj, inputChannel, messageQueue)
    [all...]
android_app_NativeActivity.cpp 110 AInputQueue::AInputQueue(const sp<InputChannel>& channel, int workWrite) :
407 inputChannel = NULL;
446 if (inputChannel != NULL) {
448 env->DeleteGlobalRef(inputChannel);
450 inputChannel = NULL;
453 inputChannel = env->NewGlobalRef(_channel);
454 sp<InputChannel> ic =
478 jobject inputChannel;
    [all...]
  /frameworks/base/services/jni/
com_android_server_input_InputWindowHandle.cpp 35 jfieldID inputChannel;
90 gInputWindowHandleClassInfo.inputChannel);
92 mInfo->inputChannel = android_view_InputChannel_getInputChannel(env, inputChannelObj);
95 mInfo->inputChannel.clear();
235 GET_FIELD_ID(gInputWindowHandleClassInfo.inputChannel, clazz,
236 "inputChannel", "Landroid/view/InputChannel;");
com_android_server_input_InputManagerService.cpp 171 status_t registerInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel,
173 status_t unregisterInputChannel(JNIEnv* env, const sp<InputChannel>& inputChannel);
379 const sp<InputChannel>& inputChannel,
382 inputChannel, inputWindowHandle, monitor);
386 const sp<InputChannel>& inputChannel) {
387 return mInputManager->getDispatcher()->unregisterInputChannel(inputChannel);
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
InputMonitor.java 27 import android.view.InputChannel;
191 final InputChannel inputChannel = child.mInputChannel;
193 if (inputChannel == null || inputWindowHandle == null || child.mRemoved) {
  /frameworks/base/services/input/
InputWindow.h 115 sp<InputChannel> inputChannel;
164 inline sp<InputChannel> getInputChannel() const {
165 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/Contacts/src/com/android/contacts/vcard/
ImportVCardActivity.java 388 ReadableByteChannel inputChannel = null;
392 inputChannel = Channels.newChannel(resolver.openInputStream(sourceUri));
396 while (inputChannel.read(buffer) != -1) {
410 if (inputChannel != null) {
412 inputChannel.close();
414 Log.w(LOG_TAG, "Failed to close inputChannel.");
    [all...]

Completed in 717 milliseconds