HomeSort by relevance Sort by last modified time
    Searched refs:uuid (Results 276 - 300 of 475) sorted by null

<<111213141516171819

  /external/wpa_supplicant_8/src/wps/
wps_registrar.c 14 #include "utils/uuid.h"
78 u8 uuid[WPS_UUID_LEN]; member in struct:wps_uuid_pin
135 u8 uuid[WPS_UUID_LEN]; member in struct:wps_registrar_device
289 struct wps_device_data *dev, const u8 *uuid)
303 os_memcpy(d->uuid, uuid, WPS_UUID_LEN);
385 wpa_hexdump(MSG_DEBUG, "WPS: Removed UUID-E",
409 wpa_printf(MSG_DEBUG, "WPS: Add one for the requested UUID");
410 wpa_hexdump(MSG_DEBUG, "WPS: Requested UUID",
418 wpa_hexdump(MSG_DEBUG, "WPS: UUID-E"
3414 char uuid[40]; local
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothA2dp.java 415 for (ParcelUuid uuid: uuids) {
416 if (BluetoothUuid.isAvrcpTarget(uuid)) {
BluetoothGatt.java 37 import java.util.UUID;
198 if (DBG) Log.d(TAG, "onGetService() - Device=" + address + " UUID=" + srvcUuid);
216 + " UUID=" + srvcUuid + " Included=" + inclSrvcUuid);
241 if (DBG) Log.d(TAG, "onGetCharacteristic() - Device=" + address + " UUID=" +
265 if (DBG) Log.d(TAG, "onGetDescriptor() - Device=" + address + " UUID=" + descUuid);
310 + " UUID=" + charUuid + " Status=" + status);
357 + " UUID=" + charUuid + " Status=" + status);
403 if (DBG) Log.d(TAG, "onNotify() - Device=" + address + " UUID=" + charUuid);
433 if (DBG) Log.d(TAG, "onDescriptorRead() - Device=" + address + " UUID=" + charUuid);
482 if (DBG) Log.d(TAG, "onDescriptorWrite() - Device=" + address + " UUID=" + charUuid)
614 UUID uuid = UUID.randomUUID(); local
    [all...]
  /frameworks/base/media/jni/audioeffect/
android_media_AudioEffect.cpp 252 jstring type, jstring uuid, jint priority, jint sessionId, jintArray jId, jobjectArray javadesc)
278 if (uuid != NULL) {
279 uuidStr = env->GetStringUTFChars(uuid, NULL);
348 env->ReleaseStringUTFChars(uuid, uuidStr);
358 AudioEffect::guidToString(&desc.uuid, str, EFFECT_STRING_LEN_MAX);
415 env->ReleaseStringUTFChars(uuid, uuidStr);
746 AudioEffect::guidToString(&desc.uuid, str, EFFECT_STRING_LEN_MAX);
834 AudioEffect::guidToString(&descriptors[i].uuid, str, EFFECT_STRING_LEN_MAX);
  /system/extras/ext4_utils/
Android.mk 13 uuid.c \
  /external/e2fsprogs/debugfs/
logdump.c 35 #include <uuid/uuid.h>
230 char uuid[37]; local
232 uuid_unparse(es->s_journal_uuid, uuid);
233 journal_fn = blkid_get_devname(NULL, "UUID", uuid);
  /frameworks/av/media/libeffects/lvm/wrapper/Bundle/
EffectBundle.cpp 80 // NXP SW BassBoost UUID
83 {0x8631f300, 0x72e2, 0x11df, 0xb57e, {0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}}, // uuid
93 // NXP SW Virtualizer UUID
106 // NXP SW Equalizer UUID
109 {0xce772f20, 0x847d, 0x11df, 0xbb17, {0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b}}, // uuid Eq NXP
118 // NXP SW Volume UUID
121 {0x119341a0, 0x8469, 0x11df, 0x81f9, { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b }}, //uuid VOL NXP
162 extern "C" int EffectCreate(const effect_uuid_t *uuid,
175 if (pHandle == NULL || uuid == NULL){
290 if (memcmp(uuid, &gBassBoostDescriptor.uuid, sizeof(effect_uuid_t)) == 0)
    [all...]
  /frameworks/av/media/libeffects/lvm/wrapper/Reverb/
EffectReverb.cpp 190 extern "C" int EffectCreate(const effect_uuid_t *uuid,
201 if (pHandle == NULL || uuid == NULL){
208 if (memcmp(uuid, &desc->uuid, sizeof(effect_uuid_t))
210 ALOGV("\tEffectCreate - UUID matched Reverb type %d, UUID = %x", i, desc->uuid.timeLow);
297 extern "C" int EffectGetDescriptor(const effect_uuid_t *uuid,
302 if (pDescriptor == NULL || uuid == NULL){
308 if (memcmp(uuid, &gDescriptors[i]->uuid, sizeof(effect_uuid_t)) == 0)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterService.java 852 ParcelUuid uuid, int port, int flag) {
860 return service.connectSocket(device, type, uuid, port, flag);
864 ParcelUuid uuid, int port, int flag) {
    [all...]
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp 175 // UUIDs for effect types have been generated from http://www.itu.int/ITU-T/asn1/uuid.html
181 { 0xaa8130e0, 0x66fc, 0x11e0, 0xbad0, { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } }, // uuid
193 { 0xbb392ec0, 0x8d4d, 0x11e0, 0xa896, { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } }, // uuid
205 { 0xc06c8400, 0x8e06, 0x11e0, 0x9cb6, { 0x00, 0x02, 0xa5, 0xd5, 0xc5, 0x1b } }, // uuid
240 uint32_t UuidToProcId(const effect_uuid_t * uuid)
244 if (memcmp(uuid, sUuidToPreProcTable[i], sizeof(*uuid)) == 0) {
    [all...]
  /frameworks/av/services/audioflinger/
Effects.cpp 74 mStatus = EffectCreate(&desc->uuid, sessionId, thread->id(), &mEffectInterface);
789 snprintf(buffer, SIZE, "\t\t- UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
790 mDescriptor.uuid.timeLow, mDescriptor.uuid.timeMid, mDescriptor.uuid.timeHiAndVersion,
791 mDescriptor.uuid.clockSeq, mDescriptor.uuid.node[0], mDescriptor.uuid.node[1],
792 mDescriptor.uuid.node[2],
793 mDescriptor.uuid.node[3],mDescriptor.uuid.node[4],mDescriptor.uuid.node[5])
    [all...]
  /external/e2fsprogs/e2fsck/
dirinfo.c 13 #include "uuid/uuid.h"
44 char *tdb_dir, uuid[40]; local
62 uuid_unparse(ctx->fs->super->s_uuid, uuid);
63 sprintf(db->tdb_fn, "%s/%s-dirinfo-XXXXXX", tdb_dir, uuid);
  /external/libvpx/libvpx/build/make/
gen_msvs_proj.sh 59 local uuid=""
64 uuid="${uuid}${hex:$j:1}"
66 echo "${uuid:0:8}-${uuid:8:4}-${uuid:12:4}-${uuid:16:4}-${uuid:20:12}"
  /development/ndk/platforms/android-3/include/linux/raid/
md_k.h 97 char uuid[16]; member in struct:mddev_s
  /external/bluetooth/bluedroid/bta/gatt/
bta_gattc_api.c 76 ** Parameters p_app_uuid - applicaiton UUID
227 ** p_srvc_uuid: a UUID of the service application is interested in.
264 ** p_char_uuid_cond: Characteristic UUID, if NULL find the first available
303 ** p_char_uuid_cond: Characteristic UUID, if NULL find the first available
346 ** p_descr_uuid_cond: Characteristic Descr UUID, if NULL find the first available
374 memcpy(&p_descr_result->descr_type, &p_descr_result->char_id.char_id.uuid, sizeof(tBT_UUID));
391 ** p_descr_uuid_cond: Characteristic descriptor UUID, if NULL find
419 memcpy(&p_descr_result->descr_type, &p_descr_result->char_id.char_id.uuid, sizeof(tBT_UUID));
436 ** p_uuid_cond: Characteristic UUID, if NULL find the first available
476 ** p_uuid_cond: Included service UUID, if NULL find the first availabl
    [all...]
  /external/bluetooth/bluedroid/stack/gap/
gap_int.h 127 UINT16 uuid; member in struct:__anon3099
  /external/bluetooth/bluedroid/stack/rfcomm/
port_int.h 158 UINT16 uuid; /* Service UUID */ member in struct:t_port_info
168 UINT8 default_signal_state; /* Initial signal state depending on uuid */
  /external/webkit/Tools/DumpRenderTree/win/
EditingDelegate.h 34 class __declspec(uuid("265DCD4B-79C3-44a2-84BC-511C3EDABD6F")) EditingDelegate : public IWebEditingDelegate {
  /external/wpa_supplicant_8/wpa_supplicant/
config.h 479 * uuid - Universally Unique IDentifier (UUID; see RFC 4122) for WPS
481 u8 uuid[16]; member in struct:wpa_config
  /frameworks/wilhelm/src/itf/
IAndroidEffectCapabilities.c 58 *pEffectImplementation = (SLInterfaceID) &thiz->mFxDescriptors[index].uuid;
  /hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/Mci/
mcimcp.h 51 MC_MCP_RET_ERR_UNKNOWN_UUID = 2, /**< The UUID of the Trustlet is unknown. */
69 MC_MCP_RET_ERR_TL_NO_CHILD = 20, /**< UUID is not registered with sp container. */
235 * associated with the uuid passed.
236 * The uuid passed must match the uuid contained in the load data (if available).
243 mcUuid_t uuid; /**< Byte array containing the service UUID. */ member in struct:__anon21267
  /hardware/samsung_slsi/exynos5/mobicore/daemon/ClientLib/public/
MobiCoreDriverApi.h 108 #define MC_DRV_ERR_TL_NO_CHILD 0x0000001d /**< UUID is not registered with sp container. */
215 /** Open a new session to a Trustlet. The trustlet with the given UUID has to be available in the flash filesystem.
221 * @param [in] uuid UUID of the Trustlet to be opened.
235 const mcUuid_t *uuid,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
dm-ioctl.h 97 * this structure at the start. If a uuid is specified any
132 char uuid[DM_UUID_LEN]; /* unique identifier for member in struct:dm_ioctl
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
dm-ioctl.h 97 * this structure at the start. If a uuid is specified any
132 char uuid[DM_UUID_LEN]; /* unique identifier for member in struct:dm_ioctl
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
dm-ioctl.h 97 * this structure at the start. If a uuid is specified any
132 char uuid[DM_UUID_LEN]; /* unique identifier for member in struct:dm_ioctl

Completed in 556 milliseconds

<<111213141516171819