Searched refs:input (Results 176 - 200 of 224) sorted by relevance

123456789

/frameworks/base/services/input/tests/
H A DInputDispatcher_test.cpp20 #include <linux/input.h>
/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java17 package com.android.server.input;
45 import android.hardware.input.IInputManager;
46 import android.hardware.input.IInputDevicesChangedListener;
47 import android.hardware.input.InputManager;
48 import android.hardware.input.KeyboardLayout;
96 private static final String EXCLUDED_DEVICES_PATH = "etc/excluded-input-devices.xml";
104 // Pointer to native input manager service object.
117 // List of currently registered input devices changed listeners by process id.
138 // State for the currently installed input filter.
189 // Maximum number of milliseconds to wait for input even
[all...]
H A DPersistentDataStore.java17 package com.android.server.input;
48 * Manages persistent state recorded by the input manager service as an XML file.
53 * &lt;input-mananger-state>
54 * &lt;input-devices>
55 * &lt;input-device descriptor="xxxxx" keyboard-layout="yyyyy" />
56 * &gt;input-devices>
57 * &gt;/input-manager-state>
75 mAtomicFile = new AtomicFile(new File("/data/system/input-manager-state.xml"));
194 Slog.w(InputManagerService.TAG, "Failed to load input manager persistent store data.", ex);
197 Slog.w(InputManagerService.TAG, "Failed to load input manage
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLLogWrapper.java930 private ByteBuffer toByteBuffer(int byteCount, Buffer input) { argument
933 if (input instanceof ByteBuffer) {
934 ByteBuffer input2 = (ByteBuffer) input;
944 } else if (input instanceof CharBuffer) {
945 CharBuffer input2 = (CharBuffer) input;
956 } else if (input instanceof ShortBuffer) {
957 ShortBuffer input2 = (ShortBuffer) input;
968 } else if (input instanceof IntBuffer) {
969 IntBuffer input2 = (IntBuffer) input;
980 } else if (input instanceo
[all...]
/frameworks/base/libs/hwui/
H A DFontRenderer.cpp1153 const uint8_t* input = source + y * width; local
1161 const uint8_t *i = input + (x - radius);
1179 currentPixel = (float) input[validW];
1202 const uint8_t* input = source + x; local
1205 const uint8_t *i = input + ((y - radius) * width);
1223 const uint8_t *i = input + validH * width;
/frameworks/base/core/java/android/widget/
H A DDatePicker.java717 TextView input = (TextView) spinner.findViewById(R.id.numberpicker_input);
718 input.setImeOptions(imeOptions);
749 // changed the value via the IME and there is a next input the IME will
H A DTextView.java839 Log.w(LOG_TAG, "Failure reading input extras", e);
841 Log.w(LOG_TAG, "Failure reading input extras", e);
914 // If no input type was specified, we will default to generic
921 // If set, the input type overrides what was set using the deprecated singleLine flag.
1082 * However, TextViews that have input or movement methods *are*
1194 // Hide the soft input if the currently active TextView is disabled
1339 * to disallow user input. Note that this method has significant and
1340 * subtle interactions with soft keyboards and other input method:
1359 public void setKeyListener(KeyListener input) { argument
1360 setKeyListenerOnly(input);
1381 setKeyListenerOnly(KeyListener input) argument
[all...]
/frameworks/native/libs/gui/
H A DSurfaceTextureClient.cpp245 ISurfaceTexture::QueueBufferInput input(timestamp, crop, mScalingMode,
247 status_t err = mSurfaceTexture->queueBuffer(i, input, &output);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4lib_int.h86 BitstreamEncVideo *stream; /* library bitstream buffer (input buffer) */
326 VideoEncFrameIO *input; /* original input frame */ member in struct:tagVideoEncData
/frameworks/base/cmds/pm/src/com/android/commands/pm/
H A DPm.java940 * @param input String containing hex-encoded bytes
941 * @return input as an array of bytes
943 private byte[] hexToBytes(String input) { argument
944 if (input == null) {
948 final int inputLength = input.length();
961 input.substring(inputIndex, inputIndex + 2), 16);
/frameworks/base/core/java/android/view/
H A DInputDevice.java20 import android.hardware.input.InputManager;
30 * Describes the capabilities of a particular input device.
32 * Each input device may support multiple classes of input. For example, a multi-function
36 * Some input devices present multiple distinguishable sources of input.
39 * As a further wrinkle, different kinds of input sources uses different coordinate systems
40 * to describe motion events. Refer to the comments on the input source constants for
59 * A mask for input source classes.
61 * Each distinct input sourc
[all...]
/frameworks/base/native/android/
H A Dinput.cpp17 #define LOG_TAG "input"
20 #include <android/input.h>
/frameworks/base/services/input/
H A DEventHub.h37 #include <linux/input.h>
89 /* The input device is a keyboard or has buttons. */
92 /* The input device is an alpha-numeric keyboard (not just a dial pad). */
95 /* The input device is a touchscreen or a touchpad (either single-touch or multi-touch). */
98 /* The input device is a cursor device such as a trackball or mouse. */
101 /* The input device is a multi-touch touchscreen. */
104 /* The input device is a directional pad (implies keyboard, has DPAD keys). */
107 /* The input device is a gamepad (implies keyboard, has BUTTON keys). */
110 /* The input device has switches. */
113 /* The input devic
[all...]
/frameworks/base/services/java/com/android/server/wm/
H A DAppWindowToken.java21 import com.android.server.input.InputApplicationHandle;
54 // The input dispatching timeout for this application token in nanoseconds.
97 // Input application handle used by the input dispatcher.
/frameworks/base/tests/touchlag/
H A Dtouchlag.cpp23 #include <linux/input.h>
170 fd = open("/dev/input/event1", O_RDONLY);
/frameworks/base/core/java/android/provider/
H A DMediaStore.java723 InputStream input = cr.openInputStream(url);
724 Bitmap bitmap = BitmapFactory.decodeStream(input);
725 input.close();
/frameworks/base/services/java/com/android/server/
H A DDropBoxManagerService.java189 InputStream input = entry.getInputStream();
196 int n = input.read(buffer, read, buffer.length - read);
224 read = input.read(buffer);
H A DVibratorService.java25 import android.hardware.input.InputManager;
394 // For now, we choose to ignore the presence of input devices that have vibrators
/frameworks/rs/
H A Drsg_generator.c608 FILE* input = fopen(rsgFile, "r"); local
610 char choice = fgetc(input);
611 fclose(input);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A DarmCOMM.h181 * Description: Clips the input between MAX and MIN value
204 * Description: Clips the input between MAX and MIN value
235 * [in] shift Divides the input "v" by "2^shift"
414 * Returns the result of rounded right shift operation of input by the scalefactor
416 * output = Saturate_in_16Bits( ( RightShift( (Round(input) , scaleFactor ) )
419 * [in] input The input to be operated on
429 OMX_S32 input,
436 * Returns the result of saturating left-shift operation on input
437 * Or rounded Right shift if the input Shif
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A DarmCOMM.h181 * Description: Clips the input between MAX and MIN value
204 * Description: Clips the input between MAX and MIN value
235 * [in] shift Divides the input "v" by "2^shift"
414 * Returns the result of rounded right shift operation of input by the scalefactor
416 * output = Saturate_in_16Bits( ( RightShift( (Round(input) , scaleFactor ) )
419 * [in] input The input to be operated on
429 OMX_S32 input,
436 * Returns the result of saturating left-shift operation on input
437 * Or rounded Right shift if the input Shif
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
H A DarmCOMM.h181 * Description: Clips the input between MAX and MIN value
204 * Description: Clips the input between MAX and MIN value
235 * [in] shift Divides the input "v" by "2^shift"
414 * Returns the result of rounded right shift operation of input by the scalefactor
416 * output = Saturate_in_16Bits( ( RightShift( (Round(input) , scaleFactor ) )
419 * [in] input The input to be operated on
429 OMX_S32 input,
436 * Returns the result of saturating left-shift operation on input
437 * Or rounded Right shift if the input Shif
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h105 audio_io_handle_t input,
170 virtual status_t closeInput(audio_io_handle_t input);
653 // input + output devices for RecordThread
1272 RecordThread *checkRecordThread_l(audio_io_handle_t input) const;
1363 AudioStreamIn *input,
1470 // When controlling an auxiliary effect, the EffectModule also provides an input buffer used by
1565 effect_config_t mConfig; // input and output audio configuration
1653 // input buffer used by the track as accumulation buffer.
1761 int16_t *mInBuffer; // chain input buffer
1767 bool mOwnInBuffer; // true if the chain owns its input buffe
[all...]
/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java17 package android.hardware.input;
42 * Provides information about input devices and available key layouts.
72 * The input manager service locates available keyboard layouts
85 * &lt;action android:name="android.hardware.input.action.QUERY_KEYBOARD_LAYOUTS" />
87 * &lt;meta-data android:name="android.hardware.input.metadata.KEYBOARD_LAYOUTS"
112 * <a href="http://source.android.com/tech/input/key-character-map-files.html">
118 "android.hardware.input.action.QUERY_KEYBOARD_LAYOUTS";
129 "android.hardware.input.metadata.KEYBOARD_LAYOUTS";
158 * Waits for previous events to be dispatched so that the input dispatcher can
159 * determine whether input even
[all...]
/frameworks/base/include/androidfw/
H A DInput.h21 * Native input event structures.
24 #include <android/input.h>
36 * Additional private constants not defined in ndk/ui/input.h.
53 * Indicates that an input device has switches.
54 * This input source flag is hidden from the API because switches are only used by the system
84 * Declare a concrete type for the NDK's input event forward declaration.
91 * Declare a concrete type for the NDK's input device forward declaration.
105 * Flags that flow alongside events in the input dispatch system to help with certain
127 /* These flags are set by the input dispatcher. */
129 // Indicates that the input even
[all...]

Completed in 701 milliseconds

123456789