Searched defs:descriptor (Results 1 - 25 of 39) sorted by relevance

12

/frameworks/wilhelm/src/
H A Ddevices.h22 const SLAudioInputDescriptor *descriptor; member in struct:AudioInput_id_descriptor
27 const SLAudioOutputDescriptor *descriptor; member in struct:AudioOutput_id_descriptor
32 const SLLEDDescriptor *descriptor; member in struct:LED_id_descriptor
37 const SLVibraDescriptor *descriptor; member in struct:Vibra_id_descriptor
44 /** \brief Associates a codec ID with a corresponding codec descriptor */
48 const SLAudioCodecDescriptor *mDescriptor; ///< The corresponding descriptor
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGattCallback.java94 * Callback reporting the result of a descriptor read operation.
97 * @param descriptor Descriptor that was read from the associated
102 public void onDescriptorRead(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, argument
107 * Callback indicating the result of a descriptor write operation.
110 * @param descriptor Descriptor that was writte to the associated
115 public void onDescriptorWrite(BluetoothGatt gatt, BluetoothGattDescriptor descriptor, argument
H A DBluetoothGattServerCallback.java88 * A remote client has requested to read a local descriptor.
96 * @param descriptor Descriptor to be read
99 int offset, BluetoothGattDescriptor descriptor) {
103 * A remote client has requested to write to a local descriptor.
110 * @param descriptor Descriptor to be written to.
115 * @param value The value the client wants to assign to the descriptor
118 BluetoothGattDescriptor descriptor,
98 onDescriptorReadRequest(BluetoothDevice device, int requestId, int offset, BluetoothGattDescriptor descriptor) argument
117 onDescriptorWriteRequest(BluetoothDevice device, int requestId, BluetoothGattDescriptor descriptor, boolean preparedWrite, boolean responseNeeded, int offset, byte[] value) argument
H A DBluetoothGatt.java256 * A new GATT descriptor has been discovered.
257 * Finally, add the descriptor to the related characteristic.
446 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
448 if (descriptor == null) return;
450 if (status == 0) descriptor.setValue(value);
468 mCallback.onDescriptorRead(BluetoothGatt.this, descriptor, status);
495 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
497 if (descriptor == null) return;
507 AUTHENTICATION_MITM, descriptor.getValue());
516 mCallback.onDescriptorWrite(BluetoothGatt.this, descriptor, statu
904 readDescriptor(BluetoothGattDescriptor descriptor) argument
942 writeDescriptor(BluetoothGattDescriptor descriptor) argument
[all...]
/frameworks/base/core/java/android/os/
H A DIServiceManager.java63 static final String descriptor = "android.os.IServiceManager"; field in interface:IServiceManager
H A DFileObserver.java104 public void stopWatching(int descriptor) { argument
105 stopWatching(m_fd, descriptor);
H A DIBinder.java108 * of the transaction for its canonical interface descriptor.
183 public IInterface queryLocalInterface(String descriptor); argument
188 * @param fd The raw file descriptor that the dump is being sent to.
198 * @param fd The raw file descriptor that the dump is being sent to.
H A DBinder.java189 * descriptor is requested.
191 public void attachInterface(IInterface owner, String descriptor) { argument
193 mDescriptor = descriptor;
224 * descriptor.
226 public IInterface queryLocalInterface(String descriptor) { argument
227 if (mDescriptor.equals(descriptor)) {
329 * @param fd The raw file descriptor that the dump is being sent to.
413 public IInterface queryLocalInterface(String descriptor) { argument
H A DParcelFileDescriptor.java124 * new file descriptor shared state such as file position with the
125 * original file descriptor.
135 * new file descriptor shared state such as file position with the
136 * original file descriptor.
157 // Extracts the file descriptor from the specified socket and returns it untouched
175 // Extracts the file descriptor from the specified socket and returns it untouched
227 * Gets a file descriptor for a read-only copy of the given data.
230 * @param name Name for the shared memory area that may back the file descriptor.
319 // If this is a proxy to another file descriptor, just call through to its
392 public ParcelFileDescriptor(ParcelFileDescriptor descriptor) { argument
399 ParcelFileDescriptor(FileDescriptor descriptor) argument
[all...]
/frameworks/base/core/java/android/database/
H A DIBulkCursor.java57 static final String descriptor = "android.content.IBulkCursor"; field in interface:IBulkCursor
/frameworks/base/core/java/android/hardware/input/
H A DKeyboardLayout.java43 public KeyboardLayout(String descriptor, String label, String collection) { argument
44 mDescriptor = descriptor;
56 * Gets the keyboard layout descriptor, which can be used to retrieve
60 * @return The keyboard layout descriptor.
H A DInputManager.java224 * Gets information about the input device with the specified descriptor.
225 * @param descriptor The input device descriptor.
229 public InputDevice getInputDeviceByDescriptor(String descriptor) { argument
230 if (descriptor == null) {
231 throw new IllegalArgumentException("descriptor must not be null.");
252 if (descriptor.equals(inputDevice.getDescriptor())) {
354 * Gets the keyboard layout with the specified descriptor.
356 * @param keyboardLayoutDescriptor The keyboard layout descriptor, as returned by
376 * Gets the current keyboard layout descriptor fo
[all...]
/frameworks/base/core/jni/
H A Dandroid_os_ParcelFileDescriptor.cpp72 jobject descriptor = env->GetObjectField(clazz, gParcelFileDescriptorOffsets.mFileDescriptor); local
73 if (descriptor == NULL) return -1;
74 return jniGetFDFromFileDescriptor(env, descriptor);
82 jniThrowException(env, "java/lang/IllegalArgumentException", "bad file descriptor");
103 jniThrowException(env, "java/lang/IllegalArgumentException", "bad file descriptor");
114 jniThrowException(env, "java/lang/IllegalArgumentException", "bad file descriptor");
H A Dcom_android_internal_os_ZygoteInit.cpp129 jobject clazz, jobject descriptor, jboolean flag)
135 fd = jniGetFDFromFileDescriptor(env, descriptor);
128 com_android_internal_os_ZygoteInit_setCloseOnExec(JNIEnv *env, jobject clazz, jobject descriptor, jboolean flag) argument
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteProviderDescriptor.java69 * Returns true if the route provider descriptor and all of the routes that
72 * This verification is deep. If the provider descriptor is known to be
126 * Creates an empty media route provider descriptor builder.
133 * Creates a media route provider descriptor builder whose initial contents are
134 * copied from an existing descriptor.
136 public Builder(MediaRouteProviderDescriptor descriptor) { argument
137 if (descriptor == null) {
138 throw new IllegalArgumentException("descriptor must not be null");
141 mBundle = new Bundle(descriptor.mBundle);
143 descriptor
[all...]
H A DMediaRouteProvider.java115 * Sets a callback to invoke when the provider's descriptor changes.
191 * Gets the provider's descriptor.
193 * The descriptor describes the state of the media route provider and
194 * the routes that it publishes. Watch for changes to the descriptor
198 * @return The media route provider descriptor, or null if none.
207 * Sets the provider's descriptor.
210 * {@link Callback callback} about the change to the provider's descriptor.
213 * @param descriptor The updated route provider descriptor, or null if none.
217 public final void setDescriptor(MediaRouteProviderDescriptor descriptor) { argument
369 onDescriptorChanged(MediaRouteProvider provider, MediaRouteProviderDescriptor descriptor) argument
[all...]
H A DMediaRouteDescriptor.java63 * The route id associated with a route descriptor functions as a stable
169 * Gets a bundle of extras for this route descriptor.
178 * Returns true if the route descriptor has all of the required fields.
239 * Creates a media route descriptor builder.
251 * Creates a media route descriptor builder whose initial contents are
252 * copied from an existing descriptor.
254 public Builder(MediaRouteDescriptor descriptor) { argument
255 if (descriptor == null) {
256 throw new IllegalArgumentException("descriptor must not be null");
259 mBundle = new Bundle(descriptor
[all...]
/frameworks/base/core/java/android/content/
H A DIContentProvider.java66 static final String descriptor = "android.content.IContentProvider"; field in interface:IContentProvider
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp113 jint descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor); local
117 if (fstat(descriptor, &fdStat) == -1) {
118 doThrowIOE(env, "broken file descriptor");
124 (newFD = ::dup(descriptor)) != -1) {
133 with the same descriptor. This is only required if we didn't dup the
134 file descriptor, but it is OK to do it all the time.
136 AutoFDSeek as(descriptor);
138 SkFDStream* fdStream = new SkFDStream(descriptor, false);
/frameworks/base/core/tests/coretests/src/android/os/
H A DAidlTest.java88 public IInterface queryLocalInterface(String descriptor) { 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/native/libs/binder/
H A DBinder.cpp42 sp<IInterface> IBinder::queryLocalInterface(const String16& descriptor) argument
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp186 effect_descriptor_t AudioEffect::descriptor() const function in class:android::AudioEffect
408 status_t AudioEffect::queryEffect(uint32_t index, effect_descriptor_t *descriptor) argument
412 return af->queryEffect(index, descriptor);
416 effect_descriptor_t *descriptor) /*const*/
420 return af->getEffectDescriptor(uuid, descriptor);
415 getEffectDescriptor(const effect_uuid_t *uuid, effect_descriptor_t *descriptor) argument
/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);

Completed in 2137 milliseconds

12