HomeSort by relevance Sort by last modified time
    Searched refs:uuid (Results 1 - 25 of 698) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
debug-info-uuid.cpp 4 // CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "tmpl_guid<&__uuidof(uuid)>"
18 // CHECK: !MDCompositeType(tag: DW_TAG_structure_type, name: "tmpl_guid2<__uuidof(uuid)>"
27 // CHECK-ITANIUM: !MDCompositeType(tag: DW_TAG_structure_type, name: "tmpl_guid<&__uuidof(uuid)>"
29 // CHECK-ITANIUM: !MDCompositeType(tag: DW_TAG_structure_type, name: "tmpl_guid2<__uuidof(uuid)>"
37 struct __declspec(uuid("{12345678-1234-1234-1234-1234567890ab}")) uuid;
38 tmpl_guid<&__uuidof(uuid)> tgi;
42 tmpl_guid2<__uuidof(uuid)> tgi2;
microsoft-templ-uuidof.cpp 9 struct __declspec(uuid("{AAAAAAAA-AAAA-AAAA-AAAA-AAAAAAAAAAAA}")) A {};
14 struct __declspec(uuid("{BBBBBBBB-BBBB-BBBB-BBBB-BBBBBBBBBBBB}")) X<B> {};
16 struct __declspec(uuid("{CCCCCCCC-CCCC-CCCC-CCCC-CCCCCCCCCCCC}")) C {};
27 struct __declspec(uuid("{DDDDDDDD-DDDD-DDDD-DDDD-DDDDDDDDDDDD}")) X<C> {};
30 struct __declspec(uuid("{EEEEEEEE-EEEE-EEEE-EEEE-EEEEEEEEEEEE}")) Y {
  /external/e2fsprogs/lib/uuid/
unparse.c 2 * unparse.c -- convert a UUID to string
53 struct uuid uuid; local
55 uuid_unpack(uu, &uuid);
57 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version,
58 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
59 uuid.node[0], uuid.node[1], uuid.node[2]
    [all...]
uuidP.h 2 * uuid.h -- private header file for uuids
38 #include <uuid/uuid_types.h>
42 #include <uuid/uuid.h>
50 struct uuid { struct
62 void uuid_pack(const struct uuid *uu, uuid_t ptr);
63 void uuid_unpack(const uuid_t in, struct uuid *uu);
parse.c 2 * parse.c --- UUID parsing
44 struct uuid uuid; local
65 uuid.time_low = strtoul(in, NULL, 16);
66 uuid.time_mid = strtoul(in+9, NULL, 16);
67 uuid.time_hi_and_version = strtoul(in+14, NULL, 16);
68 uuid.clock_seq = strtoul(in+19, NULL, 16);
74 uuid.node[i] = strtoul(buf, NULL, 16);
77 uuid_pack(&uuid, uu);
uuid_time.c 2 * uuid_time.c --- Interpret the time field from a uuid. This program
3 * violates the UUID abstraction barrier by reaching into the guts
4 * of a UUID and interpreting it.
40 #define UUID MYUUID
59 struct uuid uuid; local
63 uuid_unpack(uu, &uuid);
65 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
66 clock_reg = uuid.time_low | ((uint64_t) high << 32)
80 struct uuid uuid; local
88 struct uuid uuid; local
    [all...]
  /system/bt/btcore/test/
uuid_test.cpp 23 #include "btcore/include/uuid.h"
41 bt_uuid_t *uuid; local
43 uuid = uuid_new("incorrect length");
44 EXPECT_EQ(NULL, uuid);
46 uuid = uuid_new("correct length but missing dashes --");
47 EXPECT_EQ(NULL, uuid);
49 uuid = uuid_new(UUID_ONES);
50 ASSERT_TRUE(uuid != NULL);
52 EXPECT_EQ(0x11, uuid->uu[i]);
54 uuid_free(uuid);
96 bt_uuid_t *uuid = NULL; local
110 bt_uuid_t *uuid = NULL; local
126 bt_uuid_t *uuid = NULL; local
142 bt_uuid_t *uuid = NULL; local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
UUIDTest.java 20 import java.util.UUID;
29 * @see UUID#UUID(long, long)
32 UUID uuid = new UUID(0xf81d4fae7dec11d0L, 0xa76500a0c91e6bf6L); local
33 assertEquals(2, uuid.variant());
34 assertEquals(1, uuid.version());
35 assertEquals(0x1d07decf81d4faeL, uuid.timestamp());
36 assertEquals(130742845922168750L, uuid.timestamp())
45 UUID uuid = new UUID(0, 0); local
57 UUID uuid = new UUID(0, 0); local
69 UUID uuid = new UUID(0, 0); local
87 UUID uuid = new UUID(0, 0x0000000000000000L); local
120 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local
143 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local
169 UUID uuid = new UUID(0x0000000000001000L, 0x8000000000000000L); local
207 UUID uuid = new UUID(0, 0); local
240 UUID uuid = new UUID(0xf81d4fae7dec11d0L, 0xa76500a0c91e6bf6L); local
269 UUID uuid = UUID.randomUUID(); local
283 UUID uuid = UUID.nameUUIDFromBytes(name); local
364 UUID uuid = UUID.fromString("0-0-0-0-0"); local
    [all...]
  /external/e2fsprogs/lib/e2p/
uuid.c 2 * uuid.c -- utility routines for manipulating UUID's.
16 struct uuid { struct
24 /* Returns 1 if the uuid is the NULL uuid */
36 static void e2p_unpack_uuid(void *in, struct uuid *uu)
64 struct uuid uuid; local
66 e2p_unpack_uuid(uu, &uuid);
69 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version
    [all...]
  /frameworks/av/drm/mediadrm/plugins/clearkey/
ClearKeyUUID.h 24 bool isClearKeyUUID(const uint8_t uuid[16]);
DrmFactory.cpp 31 bool DrmFactory::isCryptoSchemeSupported(const uint8_t uuid[16]) {
32 return isClearKeyUUID(uuid);
42 const uint8_t uuid[16], android::DrmPlugin** plugin) {
43 if (!isCryptoSchemeSupported(uuid)) {
  /external/e2fsprogs/contrib/python-uuid/
uuid.c 3 #include <uuid/uuid.h>
8 char uuid[37]; local
11 uuid_unparse(u, uuid);
12 return Py_BuildValue("s", uuid);
16 {"generate", _uuid_generate, METH_VARARGS, "Generate UUID"},
setup.py 4 uuid = Extension('e2fsprogs_uuid', variable
5 sources = ['uuid.c'],
6 libraries = ['uuid'])
10 description = 'This is python uuid interface',
11 ext_modules = [uuid])
  /frameworks/base/media/java/android/media/
MediaCrypto.java 21 import java.util.UUID;
34 * Query if the given scheme identified by its UUID is supported on
36 * @param uuid The UUID of the crypto scheme.
38 public static final boolean isCryptoSchemeSupported(@NonNull UUID uuid) {
39 return isCryptoSchemeSupportedNative(getByteArrayFromUUID(uuid));
43 private static final byte[] getByteArrayFromUUID(@NonNull UUID uuid) {
44 long msb = uuid.getMostSignificantBits()
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ServiceDeclaration.java 22 import java.util.UUID;
36 UUID uuid = null; field in class:ServiceDeclaration.Entry
44 Entry(UUID uuid, int serviceType, int instance) {
46 this.uuid = uuid;
51 Entry(UUID uuid, int serviceType, int instance, boolean advertisePreferred) {
53 this.uuid = uuid
    [all...]
  /system/bt/btcore/src/
uuid.c 24 #include "btcore/include/uuid.h"
36 // The base UUID is used for calculating 128-bit UUIDs from 16 and
42 static bool uuid_is_base(const bt_uuid_t *uuid);
65 bt_uuid_t *uuid = osi_calloc(sizeof(bt_uuid_t));
66 if (uuid == NULL)
74 uuid->uu[i] = strtoul(buf, NULL, 16);
85 return uuid;
88 void uuid_free(bt_uuid_t *uuid) {
89 osi_free(uuid);
92 bool uuid_is_empty(const bt_uuid_t *uuid) {
    [all...]
  /system/bt/btif/include/
btif_profile_queue.h 30 typedef bt_status_t (*btif_connect_cb_t) (bt_bdaddr_t *bda, uint16_t uuid);
32 bt_status_t btif_queue_connect(uint16_t uuid, const bt_bdaddr_t *bda, btif_connect_cb_t connect_cb);
  /system/bt/btcore/include/
uuid.h 26 // Creates uuid string structure to hold a well formed UUID
31 // Frees a uuid string structure created from |uuid_string_new|.
35 // Returns a string pointer to the well formed UUID string
39 // Creates uuid structure from a well formed UUID string
40 // |uuid_string|. The caller takes ownership of the uuid
46 // A well formed UUID string is structured like this:
50 // Frees a uuid structure created from |uuid_new| and friends.
51 // |uuid| may be NULL
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothUuid.java 25 import java.util.UUID;
37 * uuid * 2^96 + BASE_UUID
85 /** Length of bytes for 16 bit UUID */
87 /** Length of bytes for 32 bit UUID */
89 /** Length of bytes for 128 bit UUID */
96 public static boolean isAudioSource(ParcelUuid uuid) {
97 return uuid.equals(AudioSource);
100 public static boolean isAudioSink(ParcelUuid uuid) {
101 return uuid.equals(AudioSink);
104 public static boolean isAdvAudioDist(ParcelUuid uuid) {
228 UUID uuid = parcelUuid.getUuid(); local
284 UUID uuid = parcelUuid.getUuid(); local
299 UUID uuid = parcelUuid.getUuid(); local
    [all...]
  /device/lge/hammerhead/
audio_effects.conf 45 # list of effects to load. Each effect element must contain a "library" and a "uuid" element.
48 # The name of the effect element is indicative, only the value of the "uuid" element
50 # The uuid is the implementation specific UUID as specified by the effect vendor. This is not the
51 # generic effect type UUID.
55 # uuid <effect uuid>
66 #uuid xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
72 #uuid yyyyyyyy-yyyy-yyyy-yyyy-yyyyyyyyyyyy
79 #uuid zzzzzzzz-zzzz-zzzz-zzzz-zzzzzzzzzzz
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_uuid.py 3 import uuid namespace
28 'urn:uuid:00000000-0000-0000-0000-000000000000',
29 0, 0, uuid.RESERVED_NCS, None),
37 'urn:uuid:00010203-0405-0607-0809-0a0b0c0d0e0f',
38 0x607040500010203L, 0x809, uuid.RESERVED_NCS, None),
46 'urn:uuid:02d9e6d5-9467-382e-8f9b-9300a64ac3cd',
47 0x82e946702d9e6d5L, 0xf9b, uuid.RFC_4122, 3),
55 'urn:uuid:12345678-1234-5678-1234-567812345678',
56 0x678123412345678L, 0x1234, uuid.RESERVED_NCS, None),
64 'urn:uuid:6ba7b810-9dad-11d1-80b4-00c04fd430c8'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_uuid.py 3 import uuid namespace
28 'urn:uuid:00000000-0000-0000-0000-000000000000',
29 0, 0, uuid.RESERVED_NCS, None),
37 'urn:uuid:00010203-0405-0607-0809-0a0b0c0d0e0f',
38 0x607040500010203L, 0x809, uuid.RESERVED_NCS, None),
46 'urn:uuid:02d9e6d5-9467-382e-8f9b-9300a64ac3cd',
47 0x82e946702d9e6d5L, 0xf9b, uuid.RFC_4122, 3),
55 'urn:uuid:12345678-1234-5678-1234-567812345678',
56 0x678123412345678L, 0x1234, uuid.RESERVED_NCS, None),
64 'urn:uuid:6ba7b810-9dad-11d1-80b4-00c04fd430c8'
    [all...]
  /device/asus/flo/
audio_effects.conf 36 # list of effects to load. Each effect element must contain a "library" and a "uuid" element.
39 # The name of the effect element is indicative, only the value of the "uuid" element
41 # The uuid is the implementation specific UUID as specified by the effect vendor. This is not the
42 # generic effect type UUID.
46 # uuid <effect uuid>
54 uuid 8631f300-72e2-11df-b57e-0002a5d5c51b
58 uuid 1d4033c0-8557-11df-9f2d-0002a5d5c51b
62 uuid ce772f20-847d-11df-bb17-0002a5d5c51
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pUpnpServiceInfo.java 22 import java.util.UUID;
56 * @param uuid a string representation of this UUID in the following format,
71 public static WifiP2pUpnpServiceInfo newInstance(String uuid,
73 if (uuid == null || device == null) {
74 throw new IllegalArgumentException("uuid or device cannnot be null");
76 UUID.fromString(uuid);
80 info.add(createSupplicantQuery(uuid, null));
81 info.add(createSupplicantQuery(uuid, "upnp:rootdevice"))
    [all...]
  /external/vboot_reference/host/lib21/
host_misc.c 125 guid->uuid.time_low = htole32(time_low);
126 guid->uuid.time_mid = htole16(time_mid);
127 guid->uuid.time_high_and_version = htole16(time_high_and_version);
129 guid->uuid.clock_seq_high_and_reserved = chunk[3] & 0xff;
130 guid->uuid.clock_seq_low = chunk[4] & 0xff;
131 guid->uuid.node[0] = chunk[5] & 0xff;
132 guid->uuid.node[1] = chunk[6] & 0xff;
133 guid->uuid.node[2] = chunk[7] & 0xff;
134 guid->uuid.node[3] = chunk[8] & 0xff;
135 guid->uuid.node[4] = chunk[9] & 0xff
    [all...]

Completed in 559 milliseconds

1 2 3 4 5 6 7 8 91011>>