Searched refs:descriptor (Results 26 - 50 of 54) sorted by relevance

123

/frameworks/compile/libbcc/runtime/BlocksRuntime/
H A DBlock_private.h68 struct Block_descriptor *descriptor; member in struct:Block_layout
/frameworks/native/include/binder/
H A DIBinder.h64 * @a descriptor. If it does, the base pointer to it is returned,
67 virtual sp<IInterface> queryLocalInterface(const String16& descriptor);
/frameworks/wilhelm/src/itf/
H A DIAudioIODeviceCapabilities.c58 *pDescriptor = *AudioInput_id_descriptors[0].descriptor;
124 *pDescriptor = *AudioOutput_id_descriptors[1].descriptor;
127 *pDescriptor = *AudioOutput_id_descriptors[2].descriptor;
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp185 effect_descriptor_t AudioEffect::descriptor() const function in class:android::AudioEffect
401 status_t AudioEffect::queryEffect(uint32_t index, effect_descriptor_t *descriptor) argument
405 return af->queryEffect(index, descriptor);
409 effect_descriptor_t *descriptor) /*const*/
413 return af->getEffectDescriptor(uuid, descriptor);
408 getEffectDescriptor(const effect_uuid_t *uuid, effect_descriptor_t *descriptor) argument
/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp430 jint descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor); local
436 int newFD = ::dup(descriptor);
439 descriptor = newFD;
443 SkFDStream* stream = new SkFDStream(descriptor, weOwnTheFD);
450 with the same descriptor. This is only required if we didn't dup the
451 file descriptor, but it is OK to do it all the time.
453 AutoFDSeek as(descriptor);
537 jint descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor); local
538 return ::lseek64(descriptor, 0, SEEK_CUR) != -1 ? JNI_TRUE : JNI_FALSE;
/frameworks/base/core/java/android/content/
H A DIContentProvider.java63 static final String descriptor = "android.content.IContentProvider"; field in interface:IContentProvider
/frameworks/base/core/jni/
H A Dandroid_view_InputDevice.cpp44 env->NewStringUTF(deviceInfo.getIdentifier().descriptor.string()));
H A Dcom_android_internal_os_ZygoteInit.cpp133 jobject clazz, jobject descriptor, jboolean flag)
139 fd = jniGetFDFromFileDescriptor(env, descriptor);
132 com_android_internal_os_ZygoteInit_setCloseOnExec(JNIEnv *env, jobject clazz, jobject descriptor, jboolean flag) argument
/frameworks/base/include/androidfw/
H A DInputDevice.h42 // A composite input device descriptor string that uniquely identifies the device
48 String8 descriptor; member in struct:android::InputDeviceIdentifier
/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java222 * Gets information about the input device with the specified descriptor.
223 * @param descriptor The input device descriptor.
227 public InputDevice getInputDeviceByDescriptor(String descriptor) { argument
228 if (descriptor == null) {
229 throw new IllegalArgumentException("descriptor must not be null.");
248 if (descriptor.equals(inputDevice.getDescriptor())) {
350 * Gets the keyboard layout with the specified descriptor.
352 * @param keyboardLayoutDescriptor The keyboard layout descriptor, as returned by
372 * Gets the current keyboard layout descriptor fo
[all...]
/frameworks/native/libs/binder/
H A DBinder.cpp42 sp<IInterface> IBinder::queryLocalInterface(const String16& descriptor) argument
/frameworks/base/core/java/android/view/
H A DInputDevice.java326 private InputDevice(int id, int generation, String name, String descriptor, argument
332 mDescriptor = descriptor;
408 * Gets the input device descriptor, which is a stable identifier for an input device.
410 * An input device descriptor uniquely identifies an input device. Its value
415 * same input device descriptor. This might happen in situations where a single
421 * The input device descriptor returned by {@link #getDescriptor} should only be
427 * @return The input device descriptor.
/frameworks/ex/common/java/com/android/common/widget/
H A DGroupingListAdapter.java280 // the group descriptor immediately preceding the supplied position.
310 long descriptor = mGroupMetadata[firstGroupToCheck];
311 cursorPosition = (int)(descriptor & GROUP_OFFSET_MASK);
/frameworks/wilhelm/src/android/
H A Dandroid_Effect.cpp642 effect_descriptor_t descriptor; local
654 res = android::AudioEffect::queryEffect(i, &descriptor);
656 (0 == memcmp(effectId, &descriptor.type, sizeof(effect_uuid_t)))) {
657 SL_LOGV("found effect %d %s", i, descriptor.name);
663 memcpy(fxDescrLoc, &descriptor, sizeof(effect_descriptor_t));
739 // an error occurred, reset the effect descriptor
/frameworks/base/tools/aidl/
H A Dgenerate_java_binder.cpp34 // descriptor
35 Field* descriptor = new Field(STATIC | FINAL | PRIVATE, local
37 descriptor->value = "\"" + interfaceType->QualifiedName() + "\"";
38 this->elements.push_back(descriptor);
498 // the interface descriptor transaction handler
505 // and the proxy-side method returning the descriptor directly
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DRenameClassAdapter.java71 * Renames a type descriptor, e.g. "Lcom.package.MyClass;"
139 descriptor sometimes so descriptors are renamed too.
160 // descriptor sometimes. This is the case with visitTypeInsn(type) and
170 * Renames a method descriptor, i.e. applies renameType to all arguments and to the
390 public void visitBaseType(char descriptor) { argument
391 mSv.visitBaseType(descriptor);
H A DAsmAnalyzer.java440 * Considers a descriptor string. The descriptor is converted to a {@link Type}
482 // desc is the class descriptor of the annotation class.
506 // desc is the class descriptor of the annotation class.
526 // desc is the field's descriptor (see Type).
545 // desc is the method's descriptor (see Type).
591 // desc is the field's descriptor (see Type).
641 // desc is the type descriptor of this local variable.
664 // desc is the method's descriptor (see Type).
672 // desc an array type descriptor
745 visitBaseType(char descriptor) argument
[all...]
H A DDependencyFinder.java364 * Considers a descriptor string. The descriptor is converted to a {@link Type}
371 // This is a method descriptor with arguments and a return type.
419 // desc is the class descriptor of the annotation class.
443 // desc is the class descriptor of the annotation class.
463 // desc is the field's descriptor (see Type).
486 // desc is the method's descriptor (see Type).
531 // desc is the field's descriptor (see Type).
581 // desc is the type descriptor of this local variable.
606 // desc is the method's descriptor (se
687 visitBaseType(char descriptor) argument
[all...]
/frameworks/base/core/java/android/app/
H A DIApplicationThread.java134 String descriptor = "android.app.IApplicationThread"; field in interface:IApplicationThread
H A DIActivityManager.java465 String descriptor = "android.app.IActivityManager"; field in interface:IActivityManager
/frameworks/base/core/tests/coretests/src/android/os/
H A DAidlTest.java88 public IInterface queryLocalInterface(String descriptor) { argument
/frameworks/base/services/input/
H A DEventHub.cpp97 // Compute a device descriptor that uniquely identifies the device.
98 // The descriptor is assumed to be a stable identifier. Its value should not
100 // Ideally, we also want the descriptor to be short and relatively opaque.
119 identifier.descriptor = sha1(rawDescriptor);
120 ALOGV("Created descriptor: raw=%s, cooked=%s", rawDescriptor.string(),
121 identifier.descriptor.string());
1034 // Fill in the descriptor.
1037 // Make file descriptor non-blocking for use with poll().
1039 ALOGE("Error %d making device file descriptor non-blocking.", errno);
1057 ALOGV(" descriptor
[all...]
/frameworks/av/services/audioflinger/
H A DAudioFlinger.h190 virtual status_t queryEffect(uint32_t index, effect_descriptor_t *descriptor) const;
193 effect_descriptor_t *descriptor) const;
1707 const effect_descriptor_t mDescriptor;// effect descriptor received from effect engine
1830 sp<EffectModule> getEffectFromDesc_l(effect_descriptor_t *descriptor);
1898 // true if the effect whose descriptor is passed can be suspended
H A DAudioFlinger.cpp7454 status_t AudioFlinger::queryEffect(uint32_t index, effect_descriptor_t *descriptor) const
7457 return EffectQueryEffect(index, descriptor);
7461 effect_descriptor_t *descriptor) const
7464 return EffectGetDescriptor(pUuid, descriptor);
7522 // if uuid is specified, request effect descriptor
7553 // If matching type found save effect descriptor. If the session is
7591 // return effect descriptor
9205 sp<AudioFlinger::EffectModule> AudioFlinger::EffectChain::getEffectFromDesc_l(effect_descriptor_t *descriptor) argument
9210 if (memcmp(&mEffects[i]->desc().uuid, &descriptor->uuid, sizeof(effect_uuid_t)) == 0) {
/frameworks/base/media/jni/audioeffect/
H A Dandroid_media_AudioEffect.cpp352 // get the effect descriptor
353 desc = lpAudioEffect->descriptor();

Completed in 2587 milliseconds

123