HomeSort by relevance Sort by last modified time
    Searched refs:uuid (Results 201 - 225 of 420) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java 29 import java.util.UUID;
77 * UUID for environmental reverb effect
80 public static final UUID EFFECT_TYPE_ENV_REVERB = UUID
83 * UUID for preset reverb effect
86 public static final UUID EFFECT_TYPE_PRESET_REVERB = UUID
89 * UUID for equalizer effect
92 public static final UUID EFFECT_TYPE_EQUALIZER = UUID
235 public UUID uuid; field in class:AudioEffect.Descriptor
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
IWebView.idl 100 uuid(C0CDE63A-5ED1-453f-B937-93B1A61AD3B3),
151 uuid(174BBEFD-058E-49c7-91DF-6F110AA4AC28),
748 uuid(8F0E3A30-B924-44f8-990A-1AE61ED6C632),
    [all...]
  /external/bluetooth/bluez/compat/
sdp.c 301 int get_alternate_device_info(const bdaddr_t *src, const bdaddr_t *dst, uint16_t *uuid, uint8_t *channel, char *name, size_t len)
342 if (uuid)
343 *uuid = SERIAL_PORT_SVCLASS_ID;
345 if (uuid)
346 *uuid = HEADSET_SVCLASS_ID;
467 sdp_uuid16_create(&profile[0].uuid, NAP_PROFILE_ID);
483 sdp_uuid16_create(&profile[0].uuid, GN_PROFILE_ID);
497 sdp_uuid16_create(&profile[0].uuid, PANU_PROFILE_ID);
626 sdp_uuid16_create(&profile[0].uuid, LAN_ACCESS_PROFILE_ID);
632 sdp_uuid16_create(&profile[0].uuid, DIALUP_NET_PROFILE_ID)
    [all...]
  /frameworks/base/core/java/android/server/
BluetoothEventLoop.java 433 String uuid = null; local
441 uuid = str.toString();
443 mBluetoothService.setRemoteDeviceProperty(address, name, uuid);
768 ParcelUuid uuid = ParcelUuid.fromString(deviceUuid); local
    [all...]
  /external/dbus/tools/
dbus-launch.c 68 /* Read the machine uuid from file if needed. Returns TRUE if machine_uuid is
74 char uuid[UUID_MAXLEN]; local
85 if (fgets (uuid, UUID_MAXLEN, f) == NULL)
88 len = strlen (uuid);
92 /* rstrip the read uuid */
93 while (len > 31 && isspace(uuid[len - 1]))
99 uuid[len] = '\0';
100 machine_uuid = xstrdup (uuid);
920 fprintf (stderr, "Machine UUID not provided as arg to --autolaunch\n");
  /external/wpa_supplicant_8/src/wps/
wps_common.c 581 void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid)
599 os_memcpy(uuid, hash, 16);
602 uuid[6] = (5 << 4) | (uuid[6] & 0x0f);
605 uuid[8] = 0x80 | (uuid[8] & 0x3f);
wps.c 48 os_memcpy(data->uuid_r, cfg->wps->uuid, WPS_UUID_LEN);
51 os_memcpy(data->uuid_e, cfg->wps->uuid, WPS_UUID_LEN);
340 * wps_get_uuid_e - Get UUID-E from WPS IE
342 * Returns: Pointer to UUID-E or %NULL if not included
430 * @uuid: Own UUID
440 const u8 *uuid,
483 wps_build_uuid_e(ie, uuid) ||
wps_upnp_web.c 15 #include "uuid.h"
229 uuid_bin2str(iface->wps->uuid, uuid_string, sizeof(uuid_string));
231 /* Need "uuid:" prefix, thus we can't use xml_add_tagged_data()
234 wpabuf_put_str(buf, "<UDN>uuid:");
902 * SID: uuid:xxxxxxxxx
924 u8 uuid[UUID_LEN]; local
1015 match = "uuid:";
1024 if (uuid_str2bin(h, uuid)) {
1043 s = subscription_renew(sm, uuid);
1046 uuid_bin2str(uuid, str, sizeof(str))
1143 u8 uuid[UUID_LEN]; local
    [all...]
  /external/bluetooth/bluez/input/
device.c 71 char *uuid; member in struct:input_conn
112 if (!strcasecmp(iconn->uuid, pattern))
139 g_free(iconn->uuid);
1075 const char *uuid, const char *alias,
1082 iconn->uuid = g_strdup(uuid);
1091 const bdaddr_t *dst, const char *uuid,
1105 iconn = input_conn_new(idev, uuid, "hid", timeout);
1116 const char *uuid, uint8_t channel)
1129 iconn = input_conn_new(idev, uuid, "hsp", 0)
    [all...]
  /external/bluetooth/bluez/src/
adapter.h 152 const char *uuid, service_auth_cb cb, void *user_data);
201 int (*add_uuid) (int index, uuid_t *uuid, uint8_t svc_hint);
202 int (*remove_uuid) (int index, uuid_t *uuid);
  /bionic/libc/kernel/common/linux/
dm-ioctl.h 38 char uuid[DM_UUID_LEN]; member in struct:dm_ioctl
  /development/ndk/platforms/android-3/include/linux/
dm-ioctl.h 38 char uuid[DM_UUID_LEN]; member in struct:dm_ioctl
  /external/bluetooth/bluez/audio/
transport.c 748 const char *uuid; local
760 uuid = media_endpoint_get_uuid(transport->endpoint);
761 dict_append_entry(&dict, "UUID", DBUS_TYPE_STRING, &uuid);
851 const char *uuid; local
864 uuid = media_endpoint_get_uuid(endpoint);
865 if (strcasecmp(uuid, A2DP_SOURCE_UUID) == 0 ||
866 strcasecmp(uuid, A2DP_SINK_UUID) == 0) {
872 } else if (strcasecmp(uuid, HFP_AG_UUID) == 0 ||
873 strcasecmp(uuid, HSP_AG_UUID) == 0)
    [all...]
  /external/bluetooth/bluez/network/
server.c 185 sdp_uuid16_create(&profile[0].uuid, NAP_PROFILE_ID);
202 sdp_uuid16_create(&profile[0].uuid, GN_PROFILE_ID);
214 sdp_uuid16_create(&profile[0].uuid, PANU_PROFILE_ID);
674 const char *uuid, *bridge; local
676 if (!dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &uuid,
680 if (g_strcmp0(uuid, "nap"))
681 return btd_error_failed(msg, "Invalid UUID");
709 const char *uuid; local
711 if (!dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &uuid,
715 if (g_strcmp0(uuid, "nap")
    [all...]
  /external/bluetooth/glib/gio/
gunionvolumemonitor.c 181 get_volume_for_uuid (GVolumeMonitor *volume_monitor, const char *uuid)
198 volume = g_volume_monitor_get_volume_for_uuid (child_monitor, uuid);
210 get_mount_for_uuid (GVolumeMonitor *volume_monitor, const char *uuid)
227 mount = g_volume_monitor_get_mount_for_uuid (child_monitor, uuid);
  /external/dbus/bus/
bus.h 87 DBusString *uuid);
  /external/kernel-headers/original/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
  /external/qemu/hw/
smbios.h 54 uint8_t uuid[16]; member in struct:smbios_type_1
  /external/wpa_supplicant_8/wpa_supplicant/
config.h 271 * uuid - Universally Unique IDentifier (UUID; see RFC 4122) for WPS
273 u8 uuid[16]; member in struct:wpa_config
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
dm-ioctl.h 38 char uuid[DM_UUID_LEN]; member in struct:dm_ioctl
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
dm-ioctl.h 38 char uuid[DM_UUID_LEN]; member in struct:dm_ioctl
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
dm-ioctl.h 38 char uuid[DM_UUID_LEN]; member in struct:dm_ioctl
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
dm-ioctl.h 38 char uuid[DM_UUID_LEN]; member in struct:dm_ioctl
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
dm-ioctl.h 38 char uuid[DM_UUID_LEN]; member in struct:dm_ioctl
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
dm-ioctl.h 38 char uuid[DM_UUID_LEN]; member in struct:dm_ioctl

Completed in 1438 milliseconds

1 2 3 4 5 6 7 891011>>