Searched defs:input (Results 151 - 175 of 189) sorted by relevance

12345678

/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java17 package android.hardware.input;
52 * Provides information about input devices and available key layouts.
87 * The input manager service locates available keyboard layouts
100 * <action android:name="android.hardware.input.action.QUERY_KEYBOARD_LAYOUTS" />
102 * <meta-data android:name="android.hardware.input.metadata.KEYBOARD_LAYOUTS"
128 * <a href="http://source.android.com/tech/input/key-character-map-files.html">
134 "android.hardware.input.action.QUERY_KEYBOARD_LAYOUTS";
145 "android.hardware.input.metadata.KEYBOARD_LAYOUTS";
174 * Waits for previous events to be dispatched so that the input dispatcher can
175 * determine whether input even
[all...]
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.cpp173 bool ShaderProgram::Process(const std::vector<const GLTextureHandle*>& input, argument
175 // TODO: This can be optimized: If the input and output are the same, as in
194 for (unsigned i = 0; i < input.size(); ++i) {
195 // Get the current input frame and make sure it is a GL frame
196 if (input[i]) {
198 const GLuint tex_id = input[i]->GetTextureId();
199 const GLenum target = input[i]->GetTextureTarget();
201 ALOGE("ShaderProgram: invalid texture id at input: %d!", i);
217 bool ShaderProgram::Process(const std::vector<const GLFrame*>& input, GLFrame* output) { argument
218 std::vector<const GLTextureHandle*> textures(input
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DImageShader.java250 public void process(FrameImage2D input, FrameImage2D output) { argument
251 TextureSource texSource = input.lockTextureSource();
257 input.unlock();
271 for (FrameImage2D input : inputs) {
272 input.unlock();
624 + " number of input textures! Missing uniform " + inputTextureUniformName(i)
627 GLToolbox.checkGlError("Binding input texture " + i);
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMLDBackend.cpp78 // Create input symbol.
87 // The output symbol is simply an alias to the input symbol.
152 // them from input
199 // same name in input
410 // directly from the input file.
558 // traverse all the input relocations to find the relocation sections applying
560 Module::const_obj_iterator input, inEnd = pModule.obj_end(); local
561 for (input = pModule.obj_begin(); input != inEnd; ++input) {
824 Module::obj_iterator input, inEnd = pModule.obj_end(); local
[all...]
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonLDBackend.cpp479 // same name in input
552 Module::obj_iterator input, inEnd = pModule.obj_end(); local
553 for (input = pModule.obj_begin(); input != inEnd; ++input) {
554 LDContext::sect_iterator rs, rsEnd = (*input)->context()->relocSectEnd();
555 for (rs = (*input)->context()->relocSectBegin(); rs != rsEnd; ++rs) {
956 // If the input section's size is zero, we got a NULL region.
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DExpr.java274 private static boolean isUnreadElevated(Dependency input) { argument
275 return input.isElevated() && !input.getDependant().isRead();
488 private static boolean hasNestedCannotRead(Dependency input) { argument
489 return input.isConditional() || input.getOther().hasNestedCannotRead();
619 for (Dependency input : getDependencies()) {
620 boolean dependencyReady = input.getOther().isRead() || (justRead != null &&
621 justRead.contains(input.getOther()));
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp794 size_t input = 0; local
797 AudioRecord::getMinFrameCount(&input, sampleRate,
798 AUDIO_FORMAT_PCM_16_BIT, AUDIO_CHANNEL_IN_MONO) != NO_ERROR || input <= 0) {
802 ALOGD("reported frame count: output %zu, input %zu", output, input);
807 if (input < sampleCount * 2) {
808 input = sampleCount * 2;
810 ALOGD("adjusted frame count: output %zu, input %zu", output, input);
821 AUDIO_CHANNEL_IN_MONO, input, NUL
880 int16_t input[sampleCount]; local
[all...]
/frameworks/rs/api/
H A DSpecification.cpp76 static vector<string> convertToTypeVector(const string& input) { argument
79 stringstream stream(input);
803 cerr << "Error opening input file: " << mSpecFileName << "\n";
/frameworks/av/media/libmedia/
H A DAudioSystem.cpp517 "frameCount %zu deviceId %d", event == AUDIO_OUTPUT_OPENED ? "output" : "input",
525 event == AUDIO_OUTPUT_CLOSED ? "output" : "input", ioDesc->mIoHandle);
529 event == AUDIO_OUTPUT_CLOSED ? "output" : "input", ioDesc->mIoHandle);
555 event == AUDIO_OUTPUT_CONFIG_CHANGED ? "output" : "input",
577 // Do we have a stale mInBuffSize or are we requesting the input buffer size for new values
837 audio_io_handle_t *input,
850 attr, input, session, pid, uid,
854 status_t AudioSystem::startInput(audio_io_handle_t input, argument
859 return aps->startInput(input, session);
862 status_t AudioSystem::stopInput(audio_io_handle_t input, argument
836 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
870 releaseInput(audio_io_handle_t input, audio_session_t session) argument
[all...]
H A DIAudioFlinger.cpp177 audio_io_handle_t input,
196 data.writeInt32((int32_t) input);
527 audio_io_handle_t *input,
534 if (input == NULL || config == NULL || device == NULL) {
540 data.writeInt32(*input);
548 *input = AUDIO_IO_HANDLE_NONE;
553 *input = AUDIO_IO_HANDLE_NONE;
556 *input = (audio_io_handle_t)reply.readInt32();
562 virtual status_t closeInput(int input) argument
566 data.writeInt32(input);
176 openRecord( audio_io_handle_t input, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, const String16& opPackageName, size_t *pFrameCount, audio_input_flags_t *flags, pid_t pid, pid_t tid, int clientUid, audio_session_t *sessionId, size_t *notificationFrames, sp<IMemory>& cblk, sp<IMemory>& buffers, status_t *status) argument
526 openInput(audio_module_handle_t module, audio_io_handle_t *input, audio_config_t *config, audio_devices_t *device, const String8& address, audio_source_t source, audio_input_flags_t flags) argument
983 audio_io_handle_t input = (audio_io_handle_t) data.readInt32(); local
1179 audio_io_handle_t input = (audio_io_handle_t)data.readInt32(); local
[all...]
H A DIAudioPolicyService.cpp281 audio_io_handle_t *input,
297 if (input == NULL) {
298 ALOGE("getInputForAttr NULL input - shouldn't happen");
318 *input = (audio_io_handle_t)reply.readInt32();
322 virtual status_t startInput(audio_io_handle_t input, argument
327 data.writeInt32(input);
333 virtual status_t stopInput(audio_io_handle_t input, argument
338 data.writeInt32(input);
344 virtual void releaseInput(audio_io_handle_t input, argument
349 data.writeInt32(input);
280 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
971 audio_io_handle_t input = AUDIO_IO_HANDLE_NONE; local
984 audio_io_handle_t input = static_cast <audio_io_handle_t>(data.readInt32()); local
992 audio_io_handle_t input = static_cast <audio_io_handle_t>(data.readInt32()); local
1000 audio_io_handle_t input = static_cast <audio_io_handle_t>(data.readInt32()); local
[all...]
/frameworks/base/media/java/android/media/
H A DMediaDrm.java387 * internal error in processing unrelated to input parameters. This error
1033 @NonNull byte[] keyId, @NonNull byte[] input, @NonNull byte[] iv);
1038 @NonNull byte[] keyId, @NonNull byte[] input, @NonNull byte[] iv);
1088 * @param input the data to encrypt
1093 @NonNull byte[] keyid, @NonNull byte[] input, @NonNull byte[] iv) {
1094 return encryptNative(MediaDrm.this, mSessionId, keyid, input, iv);
1101 * @param input the data to encrypt
1106 @NonNull byte[] keyid, @NonNull byte[] input, @NonNull byte[] iv) {
1107 return decryptNative(MediaDrm.this, mSessionId, keyid, input, iv);
1031 encryptNative( @onNull MediaDrm drm, @NonNull byte[] sessionId, @NonNull byte[] keyId, @NonNull byte[] input, @NonNull byte[] iv) argument
1036 decryptNative( @onNull MediaDrm drm, @NonNull byte[] sessionId, @NonNull byte[] keyId, @NonNull byte[] input, @NonNull byte[] iv) argument
1092 encrypt( @onNull byte[] keyid, @NonNull byte[] input, @NonNull byte[] iv) argument
1105 decrypt( @onNull byte[] keyid, @NonNull byte[] input, @NonNull byte[] iv) argument
H A DMediaScanner.java740 private boolean convertGenreCode(String input, String expected) { argument
741 String output = getGenreName(input);
745 Log.d(TAG, "'" + input + "' -> '" + output + "', expected '" + expected + "'");
H A DMediaCodec.java53 In broad terms, a codec processes input data to generate output data. It processes data
54 asynchronously and uses a set of input and output buffers. At a simplistic level, you request
55 (or receive) an empty input buffer, fill it up with data and send it to the codec for
114 CodecCapabilities#COLOR_FormatSurface} and it can be used with an input or output Surface.</li>
116 CodecCapabilities#COLOR_FormatYUV420Flexible}): These can be used with an input/output Surface,
219 as the first input buffer is dequeued, the codec moves to the Running sub-state, where it spends
220 most of its life. When you queue an input buffer with the {@linkplain #BUFFER_FLAG_END_OF_STREAM
222 codec no longer accepts further input buffers, but still generates output buffers until the
277 Since {@link android.os.Build.VERSION_CODES#LOLLIPOP}, you can query the resulting input and
281 If you want to process raw input vide
2739 getFormatNative(boolean input) argument
2899 cacheBuffers(boolean input) argument
3397 getBuffers(boolean input) argument
3400 getBuffer(boolean input, int index) argument
3403 getImage(boolean input, int index) argument
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_MediaCodec.cpp387 status_t JMediaCodec::getFormat(JNIEnv *env, bool input, jobject *format) const { argument
390 err = input ? mCodec->getInputFormat(&msg) : mCodec->getOutputFormat(&msg);
409 JNIEnv *env, bool input, jobjectArray *bufArray) const {
413 input
432 env, !input /* readOnly */, true /* clearBuffer */, buffer, &byteBuffer);
494 JNIEnv *env, bool input, size_t index, jobject *buf) const {
498 input
507 env, !input /* readOnly */, input /* clearBuffer */, buffer, buf);
511 JNIEnv *env, bool input, size_
408 getBuffers( JNIEnv *env, bool input, jobjectArray *bufArray) const argument
493 getBuffer( JNIEnv *env, bool input, size_t index, jobject *buf) const argument
510 getImage( JNIEnv *env, bool input, size_t index, jobject *buf) const argument
1500 android_media_MediaCodec_getFormatNative( JNIEnv *env, jobject thiz, jboolean input) argument
1546 android_media_MediaCodec_getBuffers( JNIEnv *env, jobject thiz, jboolean input) argument
1572 android_media_MediaCodec_getBuffer( JNIEnv *env, jobject thiz, jboolean input, jint index) argument
1598 android_media_MediaCodec_getImage( JNIEnv *env, jobject thiz, jboolean input, jint index) argument
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DMultiSelectManager.java292 void onLongPress(InputEvent input) { argument
295 if (!input.isOverItem()) {
299 handleAdapterEvent(input);
303 boolean onSingleTapUp(InputEvent input) { argument
310 if (!input.isOverItem()) {
316 handleAdapterEvent(input);
325 private void handleAdapterEvent(InputEvent input) { argument
326 if (mRanger != null && input.isShiftKeyDown()) {
327 mRanger.snapSelection(input.getItemPosition());
334 int position = input
1188 shouldStop(InputEvent input) argument
1198 processInputEvent(InputEvent input) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java1148 * @return A locally acceptable formatting of the input, or the raw input if
2175 * @return the input string, with alpha letters converted to numeric
2177 * an input of "1-800-GOOG-411" will return "1-800-4664-411".
2179 public static String convertKeypadLettersToDigits(String input) { argument
2180 if (input == null) {
2181 return input;
2183 int len = input.length();
2185 return input;
2188 char[] out = input
[all...]
/frameworks/base/tools/aapt2/compile/
H A DPng.cpp81 std::istream* input = reinterpret_cast<std::istream*>(png_get_io_ptr(readPtr)); local
82 if (!input->read(reinterpret_cast<char*>(data), length)) {
1193 bool Png::process(const Source& source, std::istream* input, BigBuffer* outBuffer, argument
1198 if (!input->read(reinterpret_cast<char*>(signature), kPngSignatureSize)) {
1231 png_set_read_fn(readPtr, (png_voidp) input, readDataFromStream);
/frameworks/base/tools/aapt2/link/
H A DLink.cpp836 std::unique_ptr<ResourceTable> loadStaticLibrary(const std::string& input, argument
839 input, outError);
857 bool mergeStaticLibrary(const std::string& input, bool override) { argument
859 mContext->getDiagnostics()->note(DiagMessage() << "merging static library " << input);
864 io::ZipFileCollection::create(input, &errorStr);
866 mContext->getDiagnostics()->error(DiagMessage(input) << errorStr);
872 mContext->getDiagnostics()->error(DiagMessage(input) << "invalid static library");
878 mContext->getDiagnostics()->error(DiagMessage(input)
896 result = mTableMerger->mergeOverlay(Source(input), table.get(), collection.get());
898 result = mTableMerger->merge(Source(input), tabl
997 mergeArchive(const std::string& input, bool override) argument
[all...]
/frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
H A DBindingExpressionParser.java96 public BindingExpressionParser(TokenStream input) { argument
97 super(input);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4lib_int.h87 BitstreamEncVideo *stream; /* library bitstream buffer (input buffer) */
327 VideoEncFrameIO *input; /* original input frame */ member in struct:tagVideoEncData
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp1169 // indicate output device change to all input threads for pre processing
1469 audio_io_handle_t input,
1541 RecordThread *thread = checkRecordThread_l(input);
1563 ALOGV("openRecord() lSessionId: %d input %d", lSessionId, input);
2075 audio_io_handle_t *input,
2088 sp<RecordThread> thread = openInput_l(module, input, config, *devices, address, source, flags);
2091 // notify client processes of the new input creation
2099 audio_io_handle_t *input,
2108 *input
1468 openRecord( audio_io_handle_t input, uint32_t sampleRate, audio_format_t format, audio_channel_mask_t channelMask, const String16& opPackageName, size_t *frameCount, audio_input_flags_t *flags, pid_t pid, pid_t tid, int clientUid, audio_session_t *sessionId, size_t *notificationFrames, sp<IMemory>& cblk, sp<IMemory>& buffers, status_t *status) argument
2074 openInput(audio_module_handle_t module, audio_io_handle_t *input, audio_config_t *config, audio_devices_t *devices, const String8& address, audio_source_t source, audio_input_flags_t flags) argument
2098 openInput_l(audio_module_handle_t module, audio_io_handle_t *input, audio_config_t *config, audio_devices_t devices, const String8& address, audio_source_t source, audio_input_flags_t flags) argument
2231 closeInput(audio_io_handle_t input) argument
2236 closeInput_nonvirtual(audio_io_handle_t input) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_DngCreator.cpp513 ALOGE("%s: Exception while reading from input into byte buffer.", __FUNCTION__);
546 InputStripSource(JNIEnv* env, Input& input, uint32_t ifd, uint32_t width, uint32_t height,
568 InputStripSource::InputStripSource(JNIEnv* env, Input& input, uint32_t ifd, uint32_t width, argument
570 uint32_t bytesPerSample, uint32_t samplesPerPixel) : mIfd(ifd), mInput(&input),
600 "Error encountered while skip bytes in input stream.");
2211 ALOGV("%s: Using input-type strip source.", __FUNCTION__);
2285 ALOGV("%s: Using input-type strip source.", __FUNCTION__);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1597 /// update the output section flags based on input section flags.
1599 // union the flags from input
1604 // if there is an input section is not SHF_MERGE, clean this flag
1608 // if there is an input section is not SHF_STRINGS, clean this flag
2038 // 2. check the stack info from the input objects
2057 // 2.2 there are no stack note sections in all input objects
2278 } // for each input description
2512 // To merge input's relocation sections into output's relocation sections.
2514 // If we are generating relocatables (-r), move input relocation sections
2517 Module::obj_iterator input, inEn local
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 1167 milliseconds

12345678