HomeSort by relevance Sort by last modified time
    Searched defs:UUID (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/skia/src/pdf/
SkPDFMetadata.h 18 struct UUID {
22 UUID CreateUUID(const SkDocument::PDFMetadata&);
24 sk_sp<SkPDFObject> MakePdfId(const UUID& doc, const UUID& instance);
27 const UUID& doc,
28 const UUID& instance);
  /external/skqp/src/pdf/
SkPDFMetadata.h 18 struct UUID {
22 UUID CreateUUID(const SkDocument::PDFMetadata&);
24 sk_sp<SkPDFObject> MakePdfId(const UUID& doc, const UUID& instance);
27 const UUID& doc,
28 const UUID& instance);
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Defaults.java 21 import java.util.UUID;
28 static final UUID UUID = new UUID(0L, 0L);
  /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...]
  /external/llvm/unittests/IR/
DebugTypeODRUniquingTest.cpp 28 MDString &UUID = *MDString::get(Context, "string");
32 Context, UUID, dwarf::DW_TAG_class_type, nullptr, nullptr, 0, nullptr,
37 EXPECT_FALSE(DICompositeType::getODRTypeIfExists(Context, UUID));
41 Context, UUID, dwarf::DW_TAG_class_type, nullptr, nullptr, 0, nullptr,
43 EXPECT_EQ(UUID.getString(), CT.getIdentifier());
46 EXPECT_EQ(&CT, DICompositeType::getODRTypeIfExists(Context, UUID));
48 &CT, DICompositeType::getODRType(Context, UUID, dwarf::DW_TAG_class_type,
52 Context, UUID, dwarf::DW_TAG_class_type,
58 EXPECT_FALSE(DICompositeType::getODRTypeIfExists(Context, UUID));
62 EXPECT_FALSE(DICompositeType::getODRTypeIfExists(Context, UUID));
    [all...]
  /external/e2fsprogs/lib/uuid/
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.
42 #define UUID MYUUID
61 struct uuid uuid; local
65 uuid_unpack(uu, &uuid);
67 high = uuid.time_mid | ((uuid.time_hi_and_version & 0xFFF) << 16);
68 clock_reg = uuid.time_low | ((uint64_t) high << 32)
82 struct uuid uuid; local
90 struct uuid uuid; local
    [all...]
tst_uuid.c 2 * tst_uuid.c --- test program from the UUID library
40 #define UUID MYUUID
46 #include <uuid/uuid.h>
48 static int test_uuid(const char * uuid, int isValid)
54 parsedOk = uuid_parse(uuid, uuidBits) == 0;
56 printf("%s is %s", uuid, validStr[isValid]);
85 printf("UUID generate = %s\n", str);
86 printf("UUID: ");
92 printf("UUID type = %d, UUID variant = %d\n", type, variant)
    [all...]
gen_uuid.c 2 * gen_uuid.c --- generate a DCE-compatible uuid
47 #define UUID MYUUID
492 * Try using the uuidd daemon to generate the UUID
579 struct uuid uu;
606 THREAD_LOCAL struct uuid uu;
649 struct uuid uu;
672 /* No real reason to use the daemon for random uuid's -- yet */
  /external/libmojo/device/bluetooth/bluez/
bluetooth_service_attribute_value_bluez.h 23 // For example, a UUID can have the sizes, 2, 4 or 16 bytes.
24 // value: This is the raw value of the attribute. For example, for a UUID, it
25 // will be the string representation of the UUID. For a sequence, it
29 enum Type { NULLTYPE = 0, UINT, INT, UUID, STRING, BOOL, SEQUENCE, URL };
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
ServerSocketServiceTest.java 35 import java.util.UUID;
58 UUID id = UUID.randomUUID();
67 UUID id = UUID.randomUUID();
82 UUID id = UUID.randomUUID();
96 service.getConnection(UUID.randomUUID());
108 private OpenedSocket openConnectionAndIdentify(UUID id) throws IOException {
  /external/mockito/src/test/java/org/mockito/internal/util/reflection/
BeanPropertySetterTest.java 13 import java.util.UUID;
40 Field theField = someBean.getClass().getDeclaredField("UUID");
41 UUID valueToInject = new UUID(0L, 0L);
49 assertSame(valueToInject, someBean.UUID);
153 private UUID UUID;
156 public void setUUID(UUID UUID) {
158 this.UUID = UUID
    [all...]
  /frameworks/av/media/libmediaextractor/include/media/
MediaExtractor.h 107 // uuid are encountered, the one with the largest version number will
139 : invalid_uuid_string("uuid: bad digits");
153 static_assert(N == 37, "uuid: wrong length");
184 // (e.g. UUID("7d613858-5837-4a38-84c5-332d1cddee27") is the same as
188 #define UUID(str) []{ constexpr MediaExtractor::uuid_t uuid = constUUID(str); return uuid; }()
  /libcore/ojluni/src/main/java/java/util/
UUID.java 31 * A class that represents an immutable universally unique identifier (UUID).
32 * A UUID represents a 128-bit value.
36 * constructors allow the creation of any variant of UUID (described below).
38 * <p> The layout of a variant 2 (Leach-Salz) UUID is as follows:
55 * {@code UUID}. The bit layout described above is valid only for a {@code
56 * UUID} with a variant value of 2, which indicates the Leach-Salz variant.
59 * UUID}. There are four different basic types of UUIDs: time-based, DCE
63 * <p> For more information including algorithms used to create {@code UUID}s,
65 * Universally Unique IDentifier (UUID) URN Namespace</i></a>, section 4.2
66 * &quot;Algorithms for Creating a Time-Based UUID&quot;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
uuid.py 1 r"""UUID objects (universally unique identifiers) according to RFC 4122.
3 This module provides immutable UUID objects (class UUID) and the functions
8 Note that uuid1() may compromise privacy since it creates a UUID containing
9 the computer's network address. uuid4() creates a random UUID.
13 >>> import uuid
15 # make a UUID based on the host ID and current time
16 >>> uuid.uuid1()
17 UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
19 # make a UUID using an MD5 hash of a namespace UUID and a name
    [all...]
  /external/python/cpython3/Lib/
uuid.py 1 r"""UUID objects (universally unique identifiers) according to RFC 4122.
3 This module provides immutable UUID objects (class UUID) and the functions
8 Note that uuid1() may compromise privacy since it creates a UUID containing
9 the computer's network address. uuid4() creates a random UUID.
13 >>> import uuid
15 # make a UUID based on the host ID and current time
16 >>> uuid.uuid1() # doctest: +SKIP
17 UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
19 # make a UUID using an MD5 hash of a namespace UUID and a nam
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
uuid.py 1 r"""UUID objects (universally unique identifiers) according to RFC 4122.
3 This module provides immutable UUID objects (class UUID) and the functions
8 Note that uuid1() may compromise privacy since it creates a UUID containing
9 the computer's network address. uuid4() creates a random UUID.
13 >>> import uuid
15 # make a UUID based on the host ID and current time
16 >>> uuid.uuid1()
17 UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
19 # make a UUID using an MD5 hash of a namespace UUID and a nam
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
uuid.py 1 r"""UUID objects (universally unique identifiers) according to RFC 4122.
3 This module provides immutable UUID objects (class UUID) and the functions
8 Note that uuid1() may compromise privacy since it creates a UUID containing
9 the computer's network address. uuid4() creates a random UUID.
13 >>> import uuid
15 # make a UUID based on the host ID and current time
16 >>> uuid.uuid1()
17 UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
19 # make a UUID using an MD5 hash of a namespace UUID and a nam
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
uuid.py 1 r"""UUID objects (universally unique identifiers) according to RFC 4122.
3 This module provides immutable UUID objects (class UUID) and the functions
8 Note that uuid1() may compromise privacy since it creates a UUID containing
9 the computer's network address. uuid4() creates a random UUID.
13 >>> import uuid
15 # make a UUID based on the host ID and current time
16 >>> uuid.uuid1()
17 UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
19 # make a UUID using an MD5 hash of a namespace UUID and a nam
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
uuid.py 1 r"""UUID objects (universally unique identifiers) according to RFC 4122.
3 This module provides immutable UUID objects (class UUID) and the functions
8 Note that uuid1() may compromise privacy since it creates a UUID containing
9 the computer's network address. uuid4() creates a random UUID.
13 >>> import uuid
15 # make a UUID based on the host ID and current time
16 >>> uuid.uuid1()
17 UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
19 # make a UUID using an MD5 hash of a namespace UUID and a nam
    [all...]
  /test/vts-testcase/nbu/src/
ble_test.py 20 # UUID for test service.
22 # UUID for write characteristic.
24 # UUID for second write characteristic.
26 # UUID for read test.
28 # UUID for second read characteristic.
30 # UUID for third read characteristic.
32 # UUID for scan response.
59 'UUID': TEST_BLE_SERVICE_UUID,
68 'UUID': TEST_SCAN_RESPONSE_UUID,
78 'UUID': TEST_WRITE_UUID
    [all...]
  /external/python/cpython2/Lib/
uuid.py 1 r"""UUID objects (universally unique identifiers) according to RFC 4122.
3 This module provides immutable UUID objects (class UUID) and the functions
8 Note that uuid1() may compromise privacy since it creates a UUID containing
9 the computer's network address. uuid4() creates a random UUID.
13 >>> import uuid
15 # make a UUID based on the host ID and current time
16 >>> uuid.uuid1()
17 UUID('a8098c1a-f86e-11da-bd1a-00112444be1e')
19 # make a UUID using an MD5 hash of a namespace UUID and a nam
    [all...]
  /frameworks/support/work/workmanager/src/androidTest/java/androidx/work/impl/
WorkContinuationImplTest.java 67 import java.util.UUID;
121 mWorkManagerImpl.cancelWorkByIdSync(UUID.fromString(id));
500 List<UUID> ids = new ArrayList<>(statuses.size());
  /frameworks/av/media/libmediaplayer2/nuplayer2/
NuPlayer2.cpp 2986 uint8_t *uuid; local
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayer.cpp 2896 uint8_t *uuid; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pstore.h 121 typedef GUID UUID;

Completed in 1547 milliseconds

1 2 3 4 5