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

1 2 3 4

  /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);
  /system/bt/service/common/android/bluetooth/
uuid.h 19 #include "bluetooth/uuid.h"
31 class UUID : public Parcelable, public ::bluetooth::UUID {
33 UUID() = default;
35 UUID(const ::bluetooth::UUID& uuid) : ::bluetooth::UUID(uuid){}; // NOLINT
36 ~UUID() = default
    [all...]
  /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);
  /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 */
  /system/bt/service/common/bluetooth/
uuid.cc 17 #include "bluetooth/uuid.h"
33 const UUID::UUID128Bit kSigBaseUUID = {{0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
40 UUID UUID::GetRandom() {
43 return UUID(bytes);
47 UUID UUID::GetNil() {
50 return UUID(bytes);
54 UUID UUID::GetMax()
    [all...]
uuid.h 28 class UUID {
38 // Creates and returns a random 128-bit UUID.
39 static UUID GetRandom();
41 // Creates and returns a UUID in which all 128 bits are equal to 0.
42 static UUID GetNil();
44 // Creates and returns a UUID in which all 128 bits are equal to 1.
45 static UUID GetMax();
47 // Construct a Bluetooth 'base' UUID.
48 UUID();
49 virtual ~UUID() = default
    [all...]
  /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...]
  /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...]
  /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...]
  /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...]
  /external/libchrome/base/mac/
sdk_forward_declarations.h 386 @property(readonly, nonatomic) CFUUIDRef UUID;
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
BluetoothRfcommFacade.java 42 import java.util.UUID;
57 // UUID for SL4A.
89 String uuid = UUID.randomUUID().toString(); local
90 connections.put(uuid, conn);
91 conn.setUUID(uuid);
92 return uuid;
137 @RpcParameter(name = "uuid",
138 description = "The UUID passed here must match the UUID used by the server device."
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 1956 uint8_t *uuid; local
    [all...]
NuPlayer.cpp 2748 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;
  /external/llvm/include/llvm/Object/
COFF.h 80 uint8_t UUID[16];
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Object/
COFF.h 81 uint8_t UUID[16];
    [all...]

Completed in 733 milliseconds

1 2 3 4