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

1 2

  /external/lldb/include/lldb/Core/
UUID.h 1 //===-- UUID.h --------------------------------------------------*- C++ -*-===//
22 class UUID
31 UUID ();
32 UUID (const UUID& rhs);
33 UUID (const void *uuid_bytes, uint32_t num_uuid_bytes);
35 ~UUID ();
37 const UUID&
38 operator=(const UUID& rhs);
64 // Decode as many UUID bytes (up to 16) as possible from the C string "cstr
    [all...]
  /external/lldb/source/Core/
UUID.cpp 1 //===-- UUID.cpp ------------------------------------------------*- C++ -*-===//
10 #include "lldb/Core/UUID.h"
25 UUID::UUID() : m_num_uuid_bytes(16)
30 UUID::UUID(const UUID& rhs)
36 UUID::UUID (const void *uuid_bytes, uint32_t num_uuid_bytes)
41 const 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.
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...]
tst_uuid.c 2 * tst_uuid.c --- test program from the UUID library
39 #define UUID MYUUID
45 #include <uuid/uuid.h>
47 static int test_uuid(const char * uuid, int isValid)
53 parsedOk = uuid_parse(uuid, uuidBits) == 0;
55 printf("%s is %s", uuid, validStr[isValid]);
84 printf("UUID generate = %s\n", str);
85 printf("UUID: ");
91 printf("UUID type = %d, UUID variant = %d\n", type, variant)
    [all...]
gen_uuid.c 2 * gen_uuid.c --- generate a DCE-compatible uuid
45 #define UUID MYUUID
476 * Try using the uuidd daemon to generate the UUID
562 struct uuid uu;
589 THREAD_LOCAL struct uuid uu;
632 struct uuid uu;
655 /* No real reason to use the daemon for random uuid's -- yet */
  /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...]
  /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...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pstore.h 121 typedef GUID UUID;
rpcdce.h 44 typedef GUID UUID;
46 #define uuid_t UUID
60 UUID *Uuid[1];
71 UUID Uuid;
142 typedef void __RPC_API RPC_OBJECT_INQ_FN(UUID *ObjectUuid,UUID *TypeUuid,RPC_STATUS *Status);
188 RPCRTAPI RPC_STATUS RPC_ENTRY RpcBindingInqObject(RPC_BINDING_HANDLE Binding,UUID *ObjectUuid);
190 RPCRTAPI RPC_STATUS RPC_ENTRY RpcBindingSetObject(RPC_BINDING_HANDLE Binding,UUID *ObjectUuid)
    [all...]
  /external/llvm/include/llvm/Object/
COFF.h 80 uint8_t UUID[16];
  /external/llvm/include/llvm/Support/
COFF.h 73 uint8_t UUID[16];
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntddk.h 54 /* GUID and UUID */
66 typedef GUID UUID;
    [all...]
  /prebuilts/devtools/tools/lib/
gson-2.2.4.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.2.4/
gson-2.2.4.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.3/
gson-2.3.jar 
  /prebuilts/tools/common/offline-m2/com/google/code/gson/gson/2.2.4/
gson-2.2.4.jar 
  /external/robolectric/lib/main/
h2-1.2.147.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/4/
android.jar 

Completed in 622 milliseconds

1 2