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

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/win/Interfaces/
IWebURLResponsePrivate.idl 37 uuid(18730CD8-864E-4898-B775-88905CC8E9DD),
AccessibleComparable.idl 37 uuid(4f0381ad-dab3-42ad-9ca2-a85b0ae041c0),
IWebErrorPrivate.idl 40 uuid(19FED49C-7016-48a6-B5C6-07ADE116531B),
IWebGeolocationPosition.idl 33 uuid(8C92A6B9-4CBB-4626-A596-24C1B47D7CC7),
IWebInspectorPrivate.idl 37 uuid(A5A31CD0-AEA9-11de-8A39-0800200C9A66),
IWebNotificationObserver.idl 36 uuid(1BA491C4-58A7-4091-9F56-9AED118DB4C1),
IWebResourceLoadDelegatePrivate2.idl 37 uuid(3517ADDA-5870-4aab-9A4E-056E65989DF8),
IWebScrollBarDelegatePrivate.idl 37 uuid(2E8D56AF-3BF5-4e17-BDA6-01692ACBE3D5),
IWebSerializedJSValuePrivate.idl 38 uuid(F695AF5F-35FE-44fb-9EC6-23ABCAC8C515),
IWebUIDelegate2.idl 45 uuid(C6DEF152-86CD-11de-8BF4-ADD456D89593),
IWebUndoTarget.idl 34 uuid(BF7F516E-E75D-4e3a-83E2-8F694D83C72D),
IWebWorkersPrivate.idl 45 uuid(537069C5-389C-41ae-9A82-423ACA8B2C02),
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
uuid.c 2 * Universally Unique IDentifier (UUID)
20 #include "uuid.h"
72 int is_nil_uuid(const u8 *uuid)
76 if (uuid[i])
82 void uuid_gen_mac_addr(const u8 *mac_addr, u8 *uuid)
100 os_memcpy(uuid, hash, 16);
103 uuid[6] = (5 << 4) | (uuid[6] & 0x0f);
106 uuid[8] = 0x80 | (uuid[8] & 0x3f)
    [all...]
  /external/bluetooth/bluez/src/
attrib-server.h 29 struct attribute *attrib_db_add(uint16_t handle, bt_uuid_t *uuid, int read_reqs,
31 int attrib_db_update(uint16_t handle, bt_uuid_t *uuid, const uint8_t *value,
34 int attrib_gap_set(uint16_t uuid, const uint8_t *value, int len);
  /frameworks/base/core/java/android/os/
ParcelUuid.java 19 import java.util.UUID;
22 * This class is a Parcelable wrapper around {@link UUID} which is an
28 private final UUID mUuid;
32 * given {@link UUID}.
34 * @param uuid UUID
36 public ParcelUuid(UUID uuid) {
37 mUuid = uuid;
41 * Creates a new ParcelUuid from a string representation of {@link UUID}
    [all...]
  /frameworks/base/media/libeffects/factory/
EffectsFactory.c 57 effect_uuid_t *uuid,
61 static int stringToUuid(const char *str, effect_uuid_t *uuid);
62 static int uuidToString(const effect_uuid_t *uuid, char *str, size_t maxLen);
239 int EffectGetDescriptor(effect_uuid_t *uuid, effect_descriptor_t *pDescriptor)
248 if (pDescriptor == NULL || uuid == NULL) {
252 ret = findEffect(NULL, uuid, &l, &d);
260 int EffectCreate(effect_uuid_t *uuid, int32_t sessionId, int32_t ioId, effect_handle_t *pHandle)
270 if (uuid == NULL || pHandle == NULL) {
274 LOGV("EffectCreate() UUID: %08X-%04X-%04X-%04X-%02X%02X%02X%02X%02X%02X\n",
275 uuid->timeLow, uuid->timeMid, uuid->timeHiAndVersion
525 effect_uuid_t uuid; local
    [all...]
  /external/bluetooth/hcidump/parser/
bnep.c 82 uint32_t uuid = 0; local
96 uuid = get_u16(frm);
97 printf("dst 0x%x", uuid);
98 if ((s = get_uuid_name(uuid)) != 0)
100 uuid = get_u16(frm);
101 printf(" src 0x%x", uuid);
102 if ((s = get_uuid_name(uuid)) != 0)
107 uuid = get_u32(frm);
108 printf("dst 0x%x", uuid);
109 if ((s = get_uuid_name(uuid)) != 0
    [all...]
  /external/bluetooth/bluez/input/
device.h 47 const char *uuid, uint8_t channel);
50 const bdaddr_t *dst, const char *uuid,
52 int input_device_unregister(const char *path, const char *uuid);
  /external/bluetooth/bluez/test/
list-devices 19 for uuid in uuid_list:
20 if (uuid.endswith("-0000-1000-8000-00805f9b34fb")):
21 if (uuid.startswith("0000")):
22 val = "0x" + uuid[4:8]
24 val = "0x" + uuid[0:8]
26 val = str(uuid)
  /external/dbus/dbus/
dbus-misc.c 38 * Obtains the machine UUID of the machine this process is running on.
42 * This UUID is guaranteed to remain the same until the next reboot
67 * The UUID is not a UUID in the sense of RFC4122; the details
70 * @returns a 32-byte-long hex-encoded UUID string, or #NULL if insufficient memory
75 DBusString uuid; local
80 if (!_dbus_string_init (&uuid))
83 if (!_dbus_get_local_machine_uuid_encoded (&uuid) ||
84 !_dbus_string_steal_data (&uuid, &s))
86 _dbus_string_free (&uuid);
    [all...]
  /external/bluetooth/bluez/lib/
Android.mk 8 uuid.c \
uuid.c 33 #include "uuid.h"
133 * convert the UUID to string, copying a maximum of n characters.
135 int bt_uuid_to_string(const bt_uuid_t *uuid, char *str, size_t n)
137 if (!uuid) {
142 switch (uuid->type) {
144 snprintf(str, n, "%.4x", uuid->value.u16);
147 snprintf(str, n, "%.8x", uuid->value.u32);
160 hton128(&uuid->value.u128, &nvalue);
176 snprintf(str, n, "Type of UUID (%x) unknown.", uuid->type)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppPreference.java 98 private String getChannelKey(BluetoothDevice remoteDevice, int uuid) {
99 return remoteDevice.getAddress() + "_" + Integer.toHexString(uuid);
115 public int getChannel(BluetoothDevice remoteDevice, int uuid) {
116 String key = getChannelKey(remoteDevice, uuid);
121 if (V) Log.v(TAG, "getChannel for " + remoteDevice + "_" + Integer.toHexString(uuid) +
137 public void setChannel(BluetoothDevice remoteDevice, int uuid, int channel) {
138 if (V) Log.v(TAG, "Setchannel for " + remoteDevice + "_" + Integer.toHexString(uuid) + " to "
140 if (channel != getChannel(remoteDevice, uuid)) {
141 String key = getChannelKey(remoteDevice, uuid);
149 public void removeChannel(BluetoothDevice remoteDevice, int uuid) {
    [all...]
  /libcore/luni/src/main/java/java/util/
UUID.java 30 * UUID is an immutable representation of a 128-bit universally unique
31 * identifier (UUID).
41 public final class UUID implements Serializable, Comparable<UUID> {
62 * The 64 most significant bits of the UUID.
64 * The 64 least significant bits of the UUID.
66 public UUID(long mostSigBits, long leastSigBits) {
117 * Generates a variant 2, version 4 (randomly generated number) UUID as per
120 * @return an UUID instance.
122 public static UUID randomUUID()
    [all...]
  /external/bluetooth/bluez/attrib/
gatt.c 28 #include <bluetooth/uuid.h>
38 bt_uuid_t uuid; member in struct:discover_primary
46 bt_uuid_t *uuid; member in struct:discover_char
65 g_free(dc->uuid);
70 bt_uuid_t *uuid, uint8_t *pdu, size_t len)
77 if (uuid == NULL) {
86 /* Discover primary service by service UUID */
88 if (uuid->type == BT_UUID16) {
89 u16 = htobs(uuid->value.u16);
93 htob128(&uuid->value.u128, &u128)
171 bt_uuid_t uuid; local
256 bt_uuid_t uuid; local
273 bt_uuid_t uuid; local
630 uuid_t uuid; local
    [all...]

Completed in 1139 milliseconds

12 3 4 5 6 7 8 91011>>