Searched refs:input (Results 201 - 225 of 278) sorted by relevance

1234567891011>>

/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java1144 * @return A locally acceptable formatting of the input, or the raw input if
1854 * @return the input string, with alpha letters converted to numeric
1856 * an input of "1-800-GOOG-411" will return "1-800-4664-411".
1858 public static String convertKeypadLettersToDigits(String input) { argument
1859 if (input == null) {
1860 return input;
1862 int len = input.length();
1864 return input;
1867 char[] out = input
[all...]
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4enc_lib.h60 void blockIdct_SSE(Short *input);
190 PV_STATUS RC_UpdateBXRCParams(void *input);
H A Dmp4lib_int.h86 BitstreamEncVideo *stream; /* library bitstream buffer (input buffer) */
326 VideoEncFrameIO *input; /* original input frame */ member in struct:tagVideoEncData
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java597 BackupDataInput input = new BackupDataInput(data.getFileDescriptor());
599 BackupAgent.this.onRestore(input, appVersionCode, newState);
/frameworks/base/services/java/com/android/server/wm/
H A DDragState.java19 import com.android.server.input.InputApplicationHandle;
20 import com.android.server.input.InputWindowHandle;
96 if (WindowManagerService.DEBUG_DRAG) Slog.d(WindowManagerService.TAG, "registering drag input channel");
98 Slog.e(WindowManagerService.TAG, "Duplicate register of drag input channel");
152 if (WindowManagerService.DEBUG_DRAG) Slog.d(WindowManagerService.TAG, "unregistering drag input channel");
154 Slog.e(WindowManagerService.TAG, "Unregister of nonexistent drag input channel");
283 // stop intercepting input
H A DAppWindowToken.java21 import com.android.server.input.InputApplicationHandle;
59 // The input dispatching timeout for this application token in nanoseconds.
105 // Input application handle used by the input dispatcher.
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphReader.java183 public SetFilterInputCommand(String filterName, String input, Object value) { argument
185 mFilterInput = input;
261 } else if (localName.equals("input")) {
384 throw new SAXException("Found 'input' element outside of 'filter' "
388 // Get input name and value
392 throw new SAXException("No value specified for input '" + inputName + "' "
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java24 import android.hardware.input.InputManager;
114 * input by hex digits.
583 * Get an array of KeyEvent objects that if put into the input stream
/frameworks/base/core/jni/
H A Dandroid_view_InputChannel.cpp24 #include <input/InputTransport.h>
105 ALOGW("Cannot set dispose callback because input channel object has not been initialized.");
133 message.appendFormat("Could not open input channel pair. status=%d", result);
180 "Other object already has a native input channel.");
194 "This object already has a native input channel.");
208 "Could not read input channel file descriptors from parcel.");
H A Dandroid_view_KeyEvent.cpp24 #include <input/Input.h>
H A Dandroid_view_InputEventReceiver.cpp32 #include <input/InputTransport.h>
96 ALOGD("channel '%s' ~ Initializing input event receiver.", getInputChannelName());
112 ALOGD("channel '%s' ~ Disposing input event receiver.", getInputChannelName());
120 ALOGD("channel '%s' ~ Finished input event.", getInputChannelName());
160 // This error typically occurs when the publisher has closed the input channel
163 ALOGD("channel '%s' ~ Publisher closed input channel or an error occurred. "
196 message.appendFormat("Failed to finish input event. status=%d", status);
220 ALOGD("channel '%s' ~ Consuming input events, consumeBatches=%s, frameTime=%lld.",
254 ALOGD("channel '%s' ~ Dispatching batched input event pending notification.",
260 ALOGE("Exception dispatching batched input event
[all...]
H A Dandroid_view_InputEventSender.cpp32 #include <input/InputTransport.h>
86 ALOGD("channel '%s' ~ Initializing input event sender.", getInputChannelName());
103 ALOGD("channel '%s' ~ Disposing input event sender.", getInputChannelName());
157 // This error typically occurs when the consumer has closed the input channel
160 ALOGD("channel '%s' ~ Consumer closed input channel or an error occurred. "
253 message.appendFormat("Failed to initialize input event sender. status=%d", status);
/frameworks/base/media/java/android/media/
H A DMediaCodec.java67 * Each codec maintains a number of input and output buffers that are
73 * input nor output buffers, subsequent calls to {@link #dequeueInputBuffer}
78 * Once the client has an input buffer available it can fill it with data
106 * Once the client reaches the end of the input data it signals the end of
107 * the input stream by specifying a flag of {@link #BUFFER_FLAG_END_OF_STREAM} in the call to
115 * Any input or output buffers the client may own at the point of the flush are
165 * Instantiate a decoder supporting input data of the given mime type.
183 * @param type The mime type of the input data.
233 * @param format The format of the input data (decoder) or the desired
270 * Requests a Surface to use as the input t
633 getBuffers(boolean input) argument
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp221 JNIEnv *env, bool input, jobjectArray *bufArray) const {
225 input
476 // Tell the MediaCodec that we want to use a Surface as input.
796 JNIEnv *env, jobject thiz, jboolean input) {
807 status_t err = codec->getBuffers(env, input, &buffers);
220 getBuffers( JNIEnv *env, bool input, jobjectArray *bufArray) const argument
795 android_media_MediaCodec_getBuffers( JNIEnv *env, jobject thiz, jboolean input) argument
H A Dandroid_media_MediaDrm.cpp1109 Vector<uint8_t> input(JByteArrayToVector(env, jinput));
1113 status_t err = drm->encrypt(sessionId, keyId, input, iv, output);
1140 Vector<uint8_t> input(JByteArrayToVector(env, jinput));
1144 status_t err = drm->decrypt(sessionId, keyId, input, iv, output);
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.h60 // - tex_sampler_<n>: The n'th input texture. For instance, use tex_sampler_0
61 // for the first input texture. Must be a uniform sampler2D.
64 // If more input textures are given than the shader can handle, this will result
71 // A default vertex shader is used, which renders the input texture to a
72 // rectangular region of the output texture. You can modify the input and
95 // Process the given input frames and write the result to the output frame.
102 bool Process(const std::vector<const GLTextureHandle*>& input,
120 // input to the output. Note that transformations may be applied to achieve
131 // Set the program to read from a subregion of the input frame, given by
133 // normalized between 0.0 and 1.0. If this region exceeds the input fram
[all...]
/frameworks/base/services/input/tests/
H A DInputDispatcher_test.cpp20 #include <linux/input.h>
/frameworks/native/include/input/
H A DInputTransport.h21 * Native input transport.
25 * The InputPublisher and InputConsumer each handle one end-point of an input channel.
26 * The InputPublisher is used by the input dispatcher to send events to the application.
27 * The InputConsumer is used by the application to receive events from the input dispatcher.
30 #include <input/Input.h>
41 * Intermediate representation used to send input events and related signals.
122 * An input channel consists of a local unix domain socket used to send and receive
123 * input messages across processes. Each channel has a descriptive name for debugging purposes.
127 * The input channel is closed when all references to it are released.
136 /* Creates a pair of input channel
[all...]
H A DKeyCharacterMap.h26 #include <input/Input.h>
H A DVelocityTracker.h20 #include <input/Input.h>
/frameworks/base/services/java/com/android/server/input/
H A DInputManagerService.java17 package com.android.server.input;
47 import android.hardware.input.IInputDevicesChangedListener;
48 import android.hardware.input.IInputManager;
49 import android.hardware.input.InputManager;
50 import android.hardware.input.KeyboardLayout;
101 private static final String EXCLUDED_DEVICES_PATH = "etc/excluded-input-devices.xml";
109 // Pointer to native input manager service object.
123 // List of currently registered input devices changed listeners by process id.
144 // State for the currently installed input filter.
196 // 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/core/java/android/widget/
H A DDatePicker.java741 TextView input = (TextView) spinner.findViewById(R.id.numberpicker_input);
742 input.setImeOptions(imeOptions);
773 // changed the value via the IME and there is a next input the IME will
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java27 import android.hardware.input.InputManager;

Completed in 1214 milliseconds

1234567891011>>