Searched refs:input (Results 151 - 175 of 431) sorted by relevance

1234567891011>>

/frameworks/native/include/input/
H A DVirtualKeyMap.h22 #include <input/Input.h>
/frameworks/native/libs/input/
H A DIInputFlinger.cpp24 #include <input/IInputFlinger.h>
42 IMPLEMENT_META_INTERFACE(InputFlinger, "android.input.IInputFlinger");
H A DKeyboard.cpp23 #include <input/Keyboard.h>
24 #include <input/InputEventLabels.h>
25 #include <input/KeyLayoutMap.h>
26 #include <input/KeyCharacterMap.h>
27 #include <input/InputDevice.h>
/frameworks/native/services/inputflinger/
H A DPointerControllerInterface.h20 #include <input/Input.h>
/frameworks/native/services/inputflinger/host/
H A DInputHost.h22 #include <hardware/input.h>
/frameworks/base/native/android/
H A DAndroid.mk12 input.cpp \
/frameworks/base/services/core/java/com/android/server/wm/
H A DInputConsumerImpl.java23 import com.android.server.input.InputApplicationHandle;
24 import com.android.server.input.InputWindowHandle;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DFlingAnimationUtils.java265 public float getInterpolation(float input) { argument
266 float t = mCrossfader.getInterpolation(input);
267 return (1 - t) * mInterpolator1.getInterpolation(input)
268 + t * mInterpolator2.getInterpolation(input);
288 public float getInterpolation(float input) { argument
289 float time = input * mDurationSeconds;
/frameworks/native/libs/gui/tests/
H A DBufferQueue_test.cpp68 void testBufferItem(const IGraphicBufferProducer::QueueBufferInput& input, argument
78 input.deflate(&timestamp, &isAutoTimestamp, &dataSpace, &crop,
147 IGraphicBufferProducer::QueueBufferInput input(0, false,
150 ASSERT_EQ(OK, mProducer->queueBuffer(slot, input, &output));
350 IGraphicBufferProducer::QueueBufferInput input(0, false,
353 ASSERT_EQ(OK, mProducer->queueBuffer(newSlot, input, &output));
380 IGraphicBufferProducer::QueueBufferInput input(0, false,
383 ASSERT_EQ(OK, mProducer->queueBuffer(slot, input, &output));
446 IGraphicBufferProducer::QueueBufferInput input(0, false,
449 ASSERT_EQ(OK, mProducer->queueBuffer(slot, input,
[all...]
/frameworks/base/core/java/android/text/format/
H A DTimeFormatter.java482 private static char brokenToLower(char input) { argument
483 if (input >= 'A' && input <= 'Z') {
484 return (char) (input - 'A' + 'a');
486 return input;
493 private static char brokenToUpper(char input) { argument
494 if (input >= 'a' && input <= 'z') {
495 return (char) (input - 'a' + 'A');
497 return input;
[all...]
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreAuthenticatedAESCipherSpi.java357 public byte[] update(byte[] input, int inputOffset, int inputLength) argument
359 byte[] output = mDelegate.update(input, inputOffset, inputLength);
371 public byte[] doFinal(byte[] input, int inputOffset, int inputLength, argument
373 byte[] output = mDelegate.doFinal(input, inputOffset, inputLength, signature,
414 public OperationResult update(byte[] input) { argument
416 keymasterArgs.addBytes(KeymasterDefs.KM_TAG_ASSOCIATED_DATA, input);
427 input.length, // inputConsumed
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureTarget.java109 // Add input port - will accept anything that's 4-channel.
211 // Get input frame
212 Frame input = pullInput("frame");
216 (float)input.getFormat().getWidth() / input.getFormat().getHeight();
228 int target = input.getFormat().getTarget();
230 gpuFrame = context.getFrameManager().duplicateFrameToTarget(input,
234 gpuFrame = input;
243 glEnv.setSurfaceTimestamp(input.getTimestamp());
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyInterfaceImpl.cpp261 audio_io_handle_t *input,
307 status = mAudioPolicyManager->getInputForAttr(attr, input, session, uid,
314 // enforce permission (if any) required for each type of input
334 LOG_ALWAYS_FATAL("getInputForAttr() encountered an invalid input type %d",
341 mAudioPolicyManager->releaseInput(*input, session);
348 // create audio pre processors according to input source
349 status_t status = audioPolicyEffects->addInputEffects(*input, attr->source, session);
351 ALOGW("Failed to add effects on input %d", *input);
357 status_t AudioPolicyService::startInput(audio_io_handle_t input, argument
260 getInputForAttr(const audio_attributes_t *attr, audio_io_handle_t *input, audio_session_t session, pid_t pid, uid_t uid, uint32_t samplingRate, audio_format_t format, audio_channel_mask_t channelMask, audio_input_flags_t flags, audio_port_handle_t selectedDeviceId) argument
368 stopInput(audio_io_handle_t input, audio_session_t session) argument
379 releaseInput(audio_io_handle_t input, audio_session_t session) argument
[all...]
H A DAudioPolicyInterfaceImplLegacy.cpp235 audio_io_handle_t *input,
269 *input = mpAudioPolicy->get_input(mpAudioPolicy, inputSource, samplingRate,
273 if (*input == AUDIO_IO_HANDLE_NONE) {
278 // create audio pre processors according to input source
279 status_t status = audioPolicyEffects->addInputEffects(*input, inputSource, session);
281 ALOGW("Failed to add effects on input %d", input);
287 status_t AudioPolicyService::startInput(audio_io_handle_t input, argument
295 return mpAudioPolicy->start_input(mpAudioPolicy, input);
298 status_t AudioPolicyService::stopInput(audio_io_handle_t input, argument
234 getInputForAttr(const audio_attributes_t *attr, audio_io_handle_t *input, audio_session_t session, pid_t pid __unused, uid_t uid __unused, uint32_t samplingRate, audio_format_t format, audio_channel_mask_t channelMask, audio_input_flags_t flags __unused, audio_port_handle_t selectedDeviceId __unused) argument
309 releaseInput(audio_io_handle_t input, audio_session_t session __unused) argument
[all...]
/frameworks/base/core/tests/overlaytests/OverlayTest/src/com/android/overlaytest/
H A DOverlayBaseTest.java26 InputStream input = null;
28 input = mResources.openRawResource(resId);
30 while ((ch = input.read()) != -1) {
35 input.close();
220 InputStream input = null;
224 input = mResources.openRawResource(resId);
225 reader = new BufferedReader(new InputStreamReader(input));
231 if (input != null) {
232 input.close();
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfEditor.java60 * @param input Seekable file descriptor to read from.
68 public PdfEditor(@NonNull ParcelFileDescriptor input) throws IOException { argument
69 if (input == null) {
70 throw new NullPointerException("input cannot be null");
75 Libcore.os.lseek(input.getFileDescriptor(), 0, OsConstants.SEEK_SET);
76 size = Libcore.os.fstat(input.getFileDescriptor()).st_size;
81 mInput = input;
H A DPdfRenderer.java137 * @param input Seekable file descriptor to read from.
143 public PdfRenderer(@NonNull ParcelFileDescriptor input) throws IOException { argument
144 if (input == null) {
145 throw new NullPointerException("input cannot be null");
150 Libcore.os.lseek(input.getFileDescriptor(), 0, OsConstants.SEEK_SET);
151 size = Libcore.os.fstat(input.getFileDescriptor()).st_size;
156 mInput = input;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
H A DCpuVideoTrackDecoder.java131 * Copy the input data to the output data applying the specified rotation.
133 * @param input The input image data
137 private void copyRotate(ByteBuffer input, ByteBuffer output, int rotation) { argument
165 PixelUtils.copyPixels(input, output, mWidth, mHeight, offset, pixStride, rowStride);
237 ByteBuffer input, ByteBuffer output, int colorFormat, int width, int height) {
240 ColorSpace.convertArgb8888ToRgba8888(input, output, width, height);
243 ColorSpace.convertYuv420pToRgba8888(input, output, width, height);
236 convertImage( ByteBuffer input, ByteBuffer output, int colorFormat, int width, int height) argument
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DGrainFilter.java153 // Get input frame
154 Frame input = pullInput("image");
155 FrameFormat inputFormat = input.getFormat();
183 Frame[] inputs = {input, noiseFrame};
H A DRedEyeFilter.java112 // Get input frame
113 Frame input = pullInput("image");
114 FrameFormat inputFormat = input.getFormat();
132 Frame[] inputs = {input, mRedEyeFrame};
H A DRotateFilter.java86 // Get input frame
87 Frame input = pullInput("image");
88 FrameFormat inputFormat = input.getFormat();
112 mProgram.process(input, output);
H A DStraightenFilter.java87 // Get input frame
88 Frame input = pullInput("image");
89 FrameFormat inputFormat = input.getFormat();
106 mProgram.process(input, output);
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp238 Input* input = new Input(pInputSection, pPolicy); local
239 (*out)->append(input);
240 return std::make_pair(std::make_pair(*out, input), true);
246 Input* input = new Input(pInputSection, pPolicy); local
247 output->append(input);
249 return std::make_pair(std::make_pair(output, input), true);
274 Input* input = new Input(pInputDesc); local
275 (*out)->append(input);
276 return std::make_pair(std::make_pair(*out, input), true);
282 Input* input local
[all...]
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMException.cpp37 "multiple maps for an input");
41 // Add mapping to the input-to-exdata map.
56 Input* input = *it; local
57 exData->addInputMap(input, ARMInputExMap::create(*input));
65 // Scan the input and collect all related sections.
94 // Remove this tuple from the input exception map.
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
H A DarmCOMM.c303 * Description: Clips the input between MAX and MIN value
339 * Description: Clips the input between MAX and MIN value
383 * [in] shift Divides the input "v" by "2^shift"
731 * Returns the result of rounded right shift operation of input by the scalefactor
733 * output = Saturate_in_16Bits( ( Right/LeftShift( (Round(input) , shift ) )
736 * [in] input The input to be operated on
745 OMX_S16 armSatRoundRightShift_S32_S16(OMX_S32 input, OMX_INT shift) argument
747 input = armSatRoundLeftShift_S32(input,
[all...]

Completed in 7897 milliseconds

1234567891011>>