Searched refs:uuid (Results 76 - 94 of 94) sorted by relevance

1234

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothGatt.java639 /*package*/ BluetoothGattService getService(BluetoothDevice device, UUID uuid, argument
645 svc.getUuid().equals(uuid)) {
670 UUID uuid = UUID.randomUUID();
671 if (DBG) Log.d(TAG, "registerApp() - UUID=" + uuid);
674 mService.registerClient(new ParcelUuid(uuid), mBluetoothGattCallback);
854 * @param uuid UUID of the requested service
858 public BluetoothGattService getService(UUID uuid) { argument
861 service.getUuid().equals(uuid)) {
885 if (VDBG) Log.d(TAG, "readCharacteristic() - uuid: " + characteristic.getUuid());
930 if (VDBG) Log.d(TAG, "writeCharacteristic() - uuid
[all...]
H A DBluetoothA2dp.java488 for (ParcelUuid uuid: uuids) {
489 if (BluetoothUuid.isAvrcpTarget(uuid)) {
/frameworks/base/media/jni/
H A Dandroid_media_MediaDrm.cpp304 JNIEnv *env, jobject thiz, const uint8_t uuid[16]) {
306 mDrm = MakeDrm(uuid);
343 sp<IDrm> JDrm::MakeDrm(const uint8_t uuid[16]) { argument
350 status_t err = drm->createPlugin(uuid);
386 bool JDrm::IsCryptoSchemeSupported(const uint8_t uuid[16], const String8 &mimeType) { argument
393 return drm->isCryptoSchemeSupported(uuid, mimeType);
635 jniThrowException(env, "java/lang/IllegalArgumentException", "uuid is null");
639 Vector<uint8_t> uuid = JByteArrayToVector(env, uuidObj); local
641 if (uuid.size() != 16) {
647 sp<JDrm> drm = new JDrm(env, thiz, uuid
303 JDrm( JNIEnv *env, jobject thiz, const uint8_t uuid[16]) argument
677 Vector<uint8_t> uuid = JByteArrayToVector(env, uuidObj); local
[all...]
/frameworks/wilhelm/src/itf/
H A DIAndroidEffectCapabilities.c58 *pEffectImplementation = (SLInterfaceID) &thiz->mFxDescriptors[index].uuid;
/frameworks/av/media/ndk/
H A DNdkMediaDrm.cpp172 static sp<IDrm> CreateDrmFromUUID(const AMediaUUID uuid) { argument
179 status_t err = drm->createPlugin(uuid);
189 bool AMediaDrm_isCryptoSchemeSupported(const AMediaUUID uuid, const char *mimeType) { argument
197 return drm->isCryptoSchemeSupported(uuid, mimeStr);
201 AMediaDrm* AMediaDrm_createByUUID(const AMediaUUID uuid) { argument
203 mObj->mDrm = CreateDrmFromUUID(uuid);
/frameworks/av/media/libeffects/testlibs/
H A DEffectReverb.c97 int EffectCreate(const effect_uuid_t *uuid, argument
110 if (pHandle == NULL || uuid == NULL) {
116 if (memcmp(uuid, &desc->uuid, sizeof(effect_uuid_t))
168 int EffectGetDescriptor(const effect_uuid_t *uuid, argument
173 if (pDescriptor == NULL || uuid == NULL){
179 if (memcmp(uuid, &gDescriptors[i]->uuid, sizeof(effect_uuid_t)) == 0) {
182 i, gDescriptors[i]->uuid.timeLow);
H A DEffectReverb.h308 int EffectGetDescriptor(const effect_uuid_t *uuid,
/frameworks/av/services/audiopolicy/
H A DAudioPolicyEffects.cpp543 ALOGV("loadEffectConfig() adding effect %s uuid %08x",
616 effect_uuid_t uuid; local
617 if (AudioEffect::stringToGuid(node->value, &uuid) != NO_ERROR) {
618 ALOGW("loadEffect() invalid uuid %s", node->value);
621 return new EffectDesc(root->name, uuid);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBluetoothControllerImpl.java244 // When connecting add every profile we can recognize by uuid.
245 for (ParcelUuid uuid : uuids) {
246 final int profile = uuidToProfile(uuid);
248 Log.w(TAG, "Device " + deviceToString(device) + " has an unsupported uuid: "
249 + uuidToString(uuid));
/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
H A DSoundTriggerHelper.java136 + (mCurrentSoundModel == null ? null : mCurrentSoundModel.uuid));
573 pw.println(mCurrentSoundModel == null ? "null" : mCurrentSoundModel.uuid);
H A DVoiceInteractionManagerService.java618 || soundModel.uuid == null
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DEffectsTest.java190 tv.setText(" uuid: "+ mDescriptors[position].uuid.toString());
/frameworks/av/media/libmedia/
H A DIAudioFlinger.cpp1230 effect_uuid_t uuid; local
1231 data.read(&uuid, sizeof(effect_uuid_t));
1233 status_t status = getEffectDescriptor(&uuid, &desc);
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp2452 if (!EffectIsNullUuid(&pDesc->uuid)) {
2453 // if uuid is specified, request effect descriptor
2454 lStatus = EffectGetDescriptor(&pDesc->uuid, &desc);
2460 // if uuid is not specified, look for an available implementation
H A DAudioMixer.cpp199 || EffectCreate(&sDwnmFxDesc.uuid,
/frameworks/base/services/core/java/com/android/server/
H A DMountService.java932 // Format: nnn <label> <path> <uuid>
934 final String uuid = (cooked.length > 3) ? cooked[3] : null;
938 vol.setUuid(uuid);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaAudioEffectTest.java192 //Test case 1.1: test constructor from effect uuid
209 desc[0].uuid,
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp544 memcpy(ptr, mPssh[i].uuid, 20); // uuid + length
1114 if (mDataSource->readAt(data_offset + 4, &pssh.uuid, 16) < 16) {
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiStateMachine.java2142 public List<WifiConfiguration> syncGetConfiguredNetworks(int uuid, AsyncChannel channel) { argument
2143 Message resultMsg = channel.sendMessageSynchronously(CMD_GET_CONFIGURED_NETWORKS, uuid);

Completed in 611 milliseconds

1234