Searched defs:input (Results 101 - 125 of 182) sorted by relevance

12345678

/frameworks/base/services/core/java/com/android/server/input/
H A DPersistentDataStore.java17 package com.android.server.input;
30 import android.hardware.input.TouchCalibration;
58 * Manages persistent state recorded by the input manager service as an XML file.
63 * <input-mananger-state>
64 * <input-devices>
65 * <input-device descriptor="xxxxx" keyboard-layout="yyyyy" />
66 * >input-devices>
67 * >/input-manager-state>
85 mAtomicFile = new AtomicFile(new File("/data/system/input-manager-state.xml"));
246 Slog.w(InputManagerService.TAG, "Failed to load input manage
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/
H A Dcolorspace.cpp57 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
58 uint8* const pInput = static_cast<uint8*>(env->GetDirectBufferAddress(input));
96 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
97 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
111 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
112 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
154 JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) {
155 Rgba* pInput = static_cast<Rgba*>(env->GetDirectBufferAddress(input));
56 nativeYuv420pToRgba8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
95 nativeArgb8888ToRgba8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
110 nativeRgba8888ToHsva8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
153 nativeRgba8888ToYcbcra8888( JNIEnv* env, jclass clazz, jobject input, jobject output, jint width, jint height) argument
/frameworks/compile/mclinker/lib/LD/
H A DGarbageCollection.cpp126 // traverse all the input relocations to setup the reached sections
127 Module::obj_iterator input, inEnd = m_Module.obj_end(); local
128 for (input = m_Module.obj_begin(); input != inEnd; ++input) {
129 LDContext::sect_iterator rs, rsEnd = (*input)->context()->relocSectEnd();
130 for (rs = (*input)->context()->relocSectBegin(); rs != rsEnd; ++rs) {
134 // 2. it has no reloc data. (All symbols in the input relocs are in the
153 // only the target symbols defined in the input fragments can make the
183 // input section
346 Module::obj_iterator input, inEnd = m_Module.obj_end(); local
[all...]
/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/data-binding/compiler/src/main/java/android/databinding/tool/
H A DLayoutBinder.java291 public Expr parse(String input, boolean isTwoWay, @Nullable Location locationInFile) { argument
292 final Expr parsed = mExpressionParser.parse(input, locationInFile);
/frameworks/minikin/tests/
H A DFontFamilyTest.cpp33 static const FontLanguages& createFontLanguages(const std::string& input) { argument
35 uint32_t langId = FontLanguageListCache::getId(input);
39 static FontLanguage createFontLanguage(const std::string& input) { argument
41 uint32_t langId = FontLanguageListCache::getId(input);
/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...]
H A DIGraphicBufferProducer_test.cpp57 // Parameters for a generic "valid" input for queueBuffer.
117 // Create a generic "valid" input for queueBuffer
123 // Builder pattern to slightly vary *almost* correct input
361 // A generic "valid" input
362 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
366 ASSERT_OK(mProducer->queueBuffer(dequeuedSlot, input, &output));
383 EXPECT_EQ(BAD_VALUE, mProducer->queueBuffer(dequeuedSlot, input, &output));
391 // A generic "valid" input
392 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
395 EXPECT_EQ(BAD_VALUE, mProducer->queueBuffer(/*slot*/-1, input,
403 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
420 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
434 IGraphicBufferProducer::QueueBufferInput input = local
443 IGraphicBufferProducer::QueueBufferInput input = local
456 IGraphicBufferProducer::QueueBufferInput input = local
469 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
518 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
596 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
696 IGraphicBufferProducer::QueueBufferInput input = CreateBufferInput(); local
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCommandParams.java186 GetInputParams(CommandDetails cmdDet, Input input) { argument
188 mInput = input;
/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...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/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...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/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...]
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreCipherSpiBase.java91 * {@code engineDoFinal} start ignoring input data.
320 protected final byte[] engineUpdate(byte[] input, int inputOffset, int inputLen) { argument
338 output = mMainDataStreamer.update(input, inputOffset, inputLen);
372 protected final int engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, argument
374 byte[] outputCopy = engineUpdate(input, inputOffset, inputLen);
388 protected final int engineUpdate(ByteBuffer input, ByteBuffer output) argument
390 if (input == null) {
391 throw new NullPointerException("input == null");
397 int inputSize = input.remaining();
399 if (input
425 engineUpdateAAD(byte[] input, int inputOffset, int inputLen) argument
487 engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
528 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
545 engineDoFinal(ByteBuffer input, ByteBuffer output) argument
[all...]
/frameworks/base/media/mca/filterfw/jni/
H A Djni_shader_program.cpp105 // Get the input frames
108 jobject input = env->GetObjectArrayElement(inputs, i); local
109 const GLFrame* input_frame = ConvertFromJava<GLFrame>(env, input);
110 if (!input || !input_frame) {
111 ALOGE("ShaderProgram: invalid input frame %d!", i);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonRipple.java360 public float getInterpolation(float input) { argument
361 return 1 - (float) Math.pow(400, -input * 1.4);
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64LDBackend.cpp128 // same name in input
377 Module::obj_iterator input, inEnd = pModule.obj_end(); local
378 for (input = pModule.obj_begin(); input != inEnd; ++input) {
379 LDContext::sect_iterator rs, rsEnd = (*input)->context()->relocSectEnd();
380 for (rs = (*input)->context()->relocSectBegin(); rs != rsEnd; ++rs) {
/frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
H A DBindingExpressionLexer.java99 public BindingExpressionLexer(CharStream input) { argument
100 super(input);
/frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
H A DXMLParser.java40 public XMLParser(TokenStream input) { argument
41 super(input);
/frameworks/native/services/surfaceflinger/
H A DMonitoredProducer.cpp87 status_t MonitoredProducer::queueBuffer(int slot, const QueueBufferInput& input, argument
89 return mProducer->queueBuffer(slot, input, output);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardUtils.java483 * such kind of input but must never output it unless the target is very specific
484 * to the device which is able to parse the malformed input.
655 * Guesses the format of input image. Currently just the first few bytes are used.
658 * @param input Image as byte array.
661 public static String guessImageType(final byte[] input) { argument
662 if (input == null) {
665 if (input.length >= 3 && input[0] == 'G' && input[1] == 'I' && input[
[all...]
/frameworks/av/drm/libmediadrm/
H A DDrm.cpp668 Vector<uint8_t> const &input,
683 return mPlugin->encrypt(sessionId, keyId, input, iv, output);
688 Vector<uint8_t> const &input,
703 return mPlugin->decrypt(sessionId, keyId, input, iv, output);
666 encrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
686 decrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.cpp553 Vector<uint8_t> const &input,
558 ALOGD("MockDrmPlugin::encrypt(sessionId=%s, keyId=%s, input=%s, iv=%s)",
561 vectorToString(input).string(),
572 // byte[] input -> mock-input
575 mByteArrayProperties.add(String8("mock-input"), input);
592 Vector<uint8_t> const &input,
597 ALOGD("MockDrmPlugin::decrypt(sessionId=%s, keyId=%s, input=%s, iv=%s)",
600 vectorToString(input)
551 encrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
590 decrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
[all...]
/frameworks/av/media/libmedia/
H A DIDrm.cpp425 Vector<uint8_t> const &input,
433 writeVector(data, input);
447 Vector<uint8_t> const &input,
455 writeVector(data, input);
848 Vector<uint8_t> sessionId, keyId, input, iv, output; local
851 readVector(data, input);
853 uint32_t result = encrypt(sessionId, keyId, input, iv, output);
862 Vector<uint8_t> sessionId, keyId, input, iv, output; local
865 readVector(data, input);
867 uint32_t result = decrypt(sessionId, keyId, input, i
423 encrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
445 decrypt(Vector<uint8_t> const &sessionId, Vector<uint8_t> const &keyId, Vector<uint8_t> const &input, Vector<uint8_t> const &iv, Vector<uint8_t> &output) argument
[all...]
/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...]

Completed in 8726 milliseconds

12345678