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

1 2 3 4 5 6 7 8 91011>>

  /external/syslinux/gpxe/src/core/
uuid.c 24 #include <gpxe/uuid.h>
33 * Convert UUID to printable string
35 * @v uuid UUID
36 * @ret string UUID in canonical form
38 char * uuid_ntoa ( union uuid *uuid ) {
42 be32_to_cpu ( uuid->canonical.a ),
43 be16_to_cpu ( uuid->canonical.b ),
44 be16_to_cpu ( uuid->canonical.c )
    [all...]
  /external/clang/test/CodeGenCXX/
debug-info-uuid.cpp 4 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "tmpl_guid<&__uuidof(uuid)>"
18 // CHECK: !DICompositeType(tag: DW_TAG_structure_type, name: "tmpl_guid2<__uuidof(uuid)>"
27 // CHECK-ITANIUM: !DICompositeType(tag: DW_TAG_structure_type, name: "tmpl_guid<&__uuidof(uuid)>"
29 // CHECK-ITANIUM: !DICompositeType(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 {
  /device/linaro/bootloader/arm-trusted-firmware/tools/fiptool/
tbbr_config.c 17 .uuid = UUID_TRUSTED_UPDATE_FIRMWARE_SCP_BL2U,
22 .uuid = UUID_TRUSTED_UPDATE_FIRMWARE_BL2U,
27 .uuid = UUID_TRUSTED_UPDATE_FIRMWARE_NS_BL2U,
32 .uuid = UUID_TRUSTED_FWU_CERT,
37 .uuid = UUID_TRUSTED_BOOT_FIRMWARE_BL2,
42 .uuid = UUID_SCP_FIRMWARE_SCP_BL2,
47 .uuid = UUID_EL3_RUNTIME_FIRMWARE_BL31,
52 .uuid = UUID_SECURE_PAYLOAD_BL32,
57 .uuid = UUID_SECURE_PAYLOAD_BL32_EXTRA1,
62 .uuid = UUID_SECURE_PAYLOAD_BL32_EXTRA2
    [all...]
tbbr_config.h 12 #include <uuid.h>
19 uuid_t uuid; member in struct:toc_entry
  /external/libmojo/device/bluetooth/
bluetooth_uuid.cc 19 // Returns the canonical, 128-bit canonical, and the format of the UUID
20 // in |canonical|, |canonical_128|, and |format| based on |uuid|.
21 void GetCanonicalUuid(std::string uuid,
30 if (uuid.empty())
33 if (uuid.size() < 11 &&
34 base::StartsWith(uuid, "0x", base::CompareCase::SENSITIVE)) {
35 uuid = uuid.substr(2);
38 if (!(uuid.size() == 4 || uuid.size() == 8 || uuid.size() == 36)
    [all...]
  /external/e2fsprogs/lib/uuid/
unparse.c 2 * unparse.c -- convert a UUID to string
54 struct uuid uuid; local
56 uuid_unpack(uu, &uuid);
58 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version,
59 uuid.clock_seq >> 8, uuid.clock_seq & 0xFF,
60 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
45 struct uuid uuid; local
66 uuid.time_low = strtoul(in, NULL, 16);
67 uuid.time_mid = strtoul(in+9, NULL, 16);
68 uuid.time_hi_and_version = strtoul(in+14, NULL, 16);
69 uuid.clock_seq = strtoul(in+19, NULL, 16);
75 uuid.node[i] = strtoul(buf, NULL, 16);
78 uuid_pack(&uuid, uu);
  /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.
17 struct uuid { struct
25 /* Returns 1 if the uuid is the NULL uuid */
37 static void e2p_unpack_uuid(void *in, struct uuid *uu)
65 struct uuid uuid; local
67 e2p_unpack_uuid(uu, &uuid);
70 uuid.time_low, uuid.time_mid, uuid.time_hi_and_version
    [all...]
  /frameworks/av/drm/mediadrm/plugins/clearkey/common/include/
ClearKeyUUID.h 24 bool isClearKeyUUID(const uint8_t uuid[16]);
  /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...]
  /system/bt/service/common/android/bluetooth/
uuid.h 19 #include "bluetooth/uuid.h"
31 class UUID : public Parcelable {
33 UUID() = default;
35 UUID(const ::bluetooth::Uuid& uuid) : uuid(uuid){}; // NOLINT
36 ~UUID() = default;
52 bool operator==(::bluetooth::Uuid rhs) const { return uuid == rhs;
54 ::bluetooth::Uuid uuid; member in class:android::bluetooth::UUID
    [all...]
scan_filter.cc 18 #include "android/bluetooth/uuid.h"
43 // uuid won't really keep ownership, it's just for type casting
44 std::unique_ptr<UUID> uuid;
45 UUID tmp;
49 uuid.reset(&tmp);
51 uuid.reset(nullptr);
53 status = parcel->writeNullableParcelable(uuid);
54 uuid.release();
59 uuid.reset(&tmp)
80 UUID uuid; local
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothUuid.java 25 import java.util.UUID;
38 * uuid * 2^96 + BASE_UUID
88 /** Length of bytes for 16 bit UUID */
90 /** Length of bytes for 32 bit UUID */
92 /** Length of bytes for 128 bit UUID */
99 public static boolean isAudioSource(ParcelUuid uuid) {
100 return uuid.equals(AudioSource);
103 public static boolean isAudioSink(ParcelUuid uuid) {
104 return uuid.equals(AudioSink);
107 public static boolean isAdvAudioDist(ParcelUuid uuid) {
236 UUID uuid = parcelUuid.getUuid(); local
334 UUID uuid = parcelUuid.getUuid(); local
349 UUID uuid = parcelUuid.getUuid(); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
GattDbElement.java 19 import java.util.UUID;
37 public UUID uuid; field in class:GattDbElement
55 public static GattDbElement createPrimaryService(UUID uuid) {
58 el.uuid = uuid;
62 public static GattDbElement createSecondaryService(UUID uuid) {
65 el.uuid = uuid
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/include/tools_share/
uuid.h 40 /* Length of UUID string including dashes. */
50 struct uuid { struct
60 typedef struct uuid uuid_t;
  /external/wpa_supplicant_8/src/utils/
uuid.h 2 * Universally Unique IDentifier (UUID)
16 int is_nil_uuid(const u8 *uuid);
17 int uuid_random(u8 *uuid);
  /external/syslinux/gpxe/src/include/gpxe/
uuid.h 14 union uuid { union
31 extern char * uuid_ntoa ( union uuid *uuid );
  /system/bt/btif/include/
btif_profile_queue.h 32 typedef bt_status_t (*btif_connect_cb_t)(RawAddress* bda, uint16_t uuid);
34 bt_status_t btif_queue_connect(uint16_t uuid, const RawAddress* bda,
36 void btif_queue_cleanup(uint16_t uuid);
  /external/python/cpython3/Lib/test/
test_uuid.py 8 import uuid
30 'urn:uuid:00000000-0000-0000-0000-000000000000',
31 0, 0, uuid.RESERVED_NCS, None),
39 'urn:uuid:00010203-0405-0607-0809-0a0b0c0d0e0f',
40 0x607040500010203, 0x809, uuid.RESERVED_NCS, None),
48 'urn:uuid:02d9e6d5-9467-382e-8f9b-9300a64ac3cd',
49 0x82e946702d9e6d5, 0xf9b, uuid.RFC_4122, 3),
57 'urn:uuid:12345678-1234-5678-1234-567812345678',
58 0x678123412345678, 0x1234, uuid.RESERVED_NCS, None),
66 'urn:uuid:6ba7b810-9dad-11d1-80b4-00c04fd430c8'
    [all...]
  /external/python/cpython2/Lib/test/
test_uuid.py 5 import uuid
27 'urn:uuid:00000000-0000-0000-0000-000000000000',
28 0, 0, uuid.RESERVED_NCS, None),
36 'urn:uuid:00010203-0405-0607-0809-0a0b0c0d0e0f',
37 0x607040500010203L, 0x809, uuid.RESERVED_NCS, None),
45 'urn:uuid:02d9e6d5-9467-382e-8f9b-9300a64ac3cd',
46 0x82e946702d9e6d5L, 0xf9b, uuid.RFC_4122, 3),
54 'urn:uuid:12345678-1234-5678-1234-567812345678',
55 0x678123412345678L, 0x1234, uuid.RESERVED_NCS, None),
63 'urn:uuid:6ba7b810-9dad-11d1-80b4-00c04fd430c8'
    [all...]

Completed in 485 milliseconds

1 2 3 4 5 6 7 8 91011>>