Searched defs:descriptor (Results 1 - 25 of 48) 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/av/services/audiopolicy/common/managerdefinitions/src/
H A DSessionRoute.cpp93 sp<DeviceDescriptor> descriptor,
107 if (((route->mDeviceDescriptor == 0) && (descriptor != 0)) ||
109 ((descriptor == 0) || (!route->mDeviceDescriptor->equals(descriptor))))) {
113 route->mDeviceDescriptor = descriptor;
115 route = new SessionRoute(session, streamType, source, descriptor, uid);
118 if (descriptor != 0) {
90 addRoute(audio_session_t session, audio_stream_type_t streamType, audio_source_t source, sp<DeviceDescriptor> descriptor, uid_t uid) argument
/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.java86 * A remote client has requested to read a local descriptor.
94 * @param descriptor Descriptor to be read
97 int offset, BluetoothGattDescriptor descriptor) {
101 * A remote client has requested to write to a local descriptor.
108 * @param descriptor Descriptor to be written to.
113 * @param value The value the client wants to assign to the descriptor
116 BluetoothGattDescriptor descriptor,
96 onDescriptorReadRequest(BluetoothDevice device, int requestId, int offset, BluetoothGattDescriptor descriptor) argument
115 onDescriptorWriteRequest(BluetoothDevice device, int requestId, BluetoothGattDescriptor descriptor, boolean preparedWrite, boolean responseNeeded, int offset, byte[] value) argument
H A DBluetoothGatt.java265 * A new GATT descriptor has been discovered.
266 * Finally, add the descriptor to the related characteristic.
471 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
473 if (descriptor == null) return;
475 if (status == 0) descriptor.setValue(value);
494 mCallback.onDescriptorRead(BluetoothGatt.this, descriptor, status);
526 BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
528 if (descriptor == null) return;
538 AUTHENTICATION_MITM, descriptor.getValue());
548 mCallback.onDescriptorWrite(BluetoothGatt.this, descriptor, statu
972 readDescriptor(BluetoothGattDescriptor descriptor) argument
1016 writeDescriptor(BluetoothGattDescriptor descriptor) argument
[all...]
/frameworks/base/core/java/android/hardware/input/
H A DInputDeviceIdentifier.java32 public InputDeviceIdentifier(String descriptor, int vendorId, int productId) { argument
33 this.mDescriptor = descriptor;
H A DKeyboardLayout.java44 public KeyboardLayout(String descriptor, String label, String collection, int priority) { argument
45 mDescriptor = descriptor;
59 * Gets the keyboard layout descriptor, which can be used to retrieve
63 * @return The keyboard layout descriptor.
/frameworks/base/core/java/android/os/
H A DIServiceManager.java63 static final String descriptor = "android.os.IServiceManager"; field in interface:IServiceManager
H A DFileObserver.java101 public void stopWatching(int descriptor) { argument
102 stopWatching(m_fd, descriptor);
H A DIBinder.java107 * of the transaction for its canonical interface descriptor.
189 public IInterface queryLocalInterface(String descriptor); argument
194 * @param fd The raw file descriptor that the dump is being sent to.
204 * @param fd The raw file descriptor that the dump is being sent to.
H A DBinder.java216 * descriptor is requested.
218 public void attachInterface(IInterface owner, String descriptor) { argument
220 mDescriptor = descriptor;
251 * descriptor.
253 public IInterface queryLocalInterface(String descriptor) { argument
254 if (mDescriptor.equals(descriptor)) {
369 * @param fd The raw file descriptor that the dump is being sent to.
497 public IInterface queryLocalInterface(String descriptor) { argument
H A DMessageQueue.java163 * Adds a file descriptor listener to receive notification when file descriptor
166 * If the file descriptor has already been registered, the specified events
168 * It is not possible to set more than one listener per file descriptor.
170 * It is important to always unregister the listener when the file descriptor
174 * @param fd The file descriptor for which a listener will be registered.
180 * @param listener The listener to invoke when file descriptor events occur.
201 * Removes a file descriptor listener.
204 * specified file descriptor.
207 * @param fd The file descriptor whos
865 FileDescriptorRecord(FileDescriptor descriptor, int events, OnFileDescriptorEventListener listener) argument
[all...]
/frameworks/av/camera/
H A DVendorTagDescriptor.cpp60 sp<VendorTagDescriptor>& descriptor) {
135 descriptor = desc;
141 sp<VendorTagDescriptor>& descriptor) {
248 descriptor = desc;
395 ALOGE("%s: Could not set vendor tag descriptor, received error %s (%d)."
417 ALOGE("%s: Vendor tag descriptor not initialized.", __FUNCTION__);
426 ALOGE("%s: Vendor tag descriptor not initialized.", __FUNCTION__);
435 ALOGE("%s: Vendor tag descriptor not initialized.", __FUNCTION__);
444 ALOGE("%s: Vendor tag descriptor not initialized.", __FUNCTION__);
453 ALOGE("%s: Vendor tag descriptor no
58 createDescriptorFromOps(const vendor_tag_ops_t* vOps, sp<VendorTagDescriptor>& 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/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.java117 * Sets a callback to invoke when the provider's descriptor changes.
194 * Gets the provider's descriptor.
196 * The descriptor describes the state of the media route provider and
197 * the routes that it publishes. Watch for changes to the descriptor
201 * @return The media route provider descriptor, or null if none.
211 * Sets the provider's descriptor.
214 * {@link Callback callback} about the change to the provider's descriptor.
217 * @param descriptor The updated route provider descriptor, or null if none.
221 public final void setDescriptor(@Nullable MediaRouteProviderDescriptor descriptor) { argument
395 onDescriptorChanged(@onNull MediaRouteProvider provider, @Nullable MediaRouteProviderDescriptor descriptor) argument
[all...]
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHwService.h107 sound_trigger_module_descriptor descriptor,
127 struct sound_trigger_module_descriptor descriptor() { return mDescriptor; } function in class:android::SoundTriggerHwService::Module
/frameworks/base/cmds/hid/jni/
H A Dcom_android_commands_hid_Device.cpp86 std::unique_ptr<uint8_t[]> descriptor, size_t descriptorSize,
99 ev.u.create.rd_data = descriptor.get();
85 open(int32_t id, const char* name, int32_t vid, int32_t pid, std::unique_ptr<uint8_t[]> descriptor, size_t descriptorSize, std::unique_ptr<DeviceCallback> callback, sp<Looper> looper) argument
/frameworks/base/cmds/hid/src/com/android/commands/hid/
H A DDevice.java56 byte[] descriptor, MessageQueue queue, DeviceCallback callback);
60 public Device(int id, String name, int vid, int pid, byte[] descriptor, byte[] report) { argument
74 args.arg2 = descriptor;
55 nativeOpenDevice(String name, int id, int vid, int pid, byte[] descriptor, MessageQueue queue, DeviceCallback callback) argument
H A DEvent.java80 + ", descriptor=" + Arrays.toString(mDescriptor)
107 public void setDescriptor(byte[] descriptor) { argument
108 mEvent.mDescriptor = descriptor;
135 throw new IllegalStateException("Device registration is missing descriptor");
173 case "descriptor":
/frameworks/base/core/java/android/content/
H A DIContentProvider.java74 static final String descriptor = "android.content.IContentProvider"; field in interface:IContentProvider
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp119 jint descriptor = jniGetFDFromFileDescriptor(env, fileDescriptor); local
122 if (fstat(descriptor, &fdStat) == -1) {
123 doThrowIOE(env, "broken file descriptor");
127 SkAutoTUnref<SkData> data(SkData::NewFromFD(descriptor));
/frameworks/base/core/tests/coretests/src/android/os/
H A DAidlTest.java88 public IInterface queryLocalInterface(String descriptor) { argument
/frameworks/native/include/input/
H A DInputDevice.h42 // A composite input device descriptor string that uniquely identifies the device
48 String8 descriptor; member in struct:android::InputDeviceIdentifier
/frameworks/av/media/libmedia/
H A DAudioEffect.cpp198 effect_descriptor_t AudioEffect::descriptor() const function in class:android::AudioEffect
420 status_t AudioEffect::queryEffect(uint32_t index, effect_descriptor_t *descriptor) argument
424 return af->queryEffect(index, descriptor);
428 effect_descriptor_t *descriptor) /*const*/
432 return af->getEffectDescriptor(uuid, descriptor);
427 getEffectDescriptor(const effect_uuid_t *uuid, effect_descriptor_t *descriptor) argument

Completed in 8204 milliseconds

12