| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/ |
| rpcdce2.d | 47 int UuidCompare(UUID*, UUID*, RPC_STATUS*); 48 RPC_STATUS UuidCreateNil(UUID*); 49 int UuidEqual(UUID*, UUID*, RPC_STATUS*); 50 ushort UuidHash(UUID*, RPC_STATUS*); 51 int UuidIsNil(UUID*, RPC_STATUS*); 54 uint, UUID*, RPC_EP_INQ_HANDLE*); 57 RPC_BINDING_HANDLE, UUID*); 67 RPC_BINDING_HANDLE*, UUID*, char**) [all...] |
| rpcdce.d | 24 alias UUID uuid_t; 132 UUID*[1] Uuid; 138 UUID Uuid; 151 alias void function(UUID*, UUID*, RPC_STATUS*) RPC_OBJECT_INQ_FN; 267 RPC_STATUS UuidToStringA(UUID*, char**); 268 RPC_STATUS UuidFromStringA(char*, UUID*); 269 RPC_STATUS UuidToStringW(UUID*, wchar**) [all...] |
| basetyps.d | 22 alias GUID UUID, /*IID, CLSID, */FMTID, uuid_t;
|
| rpcnsi.d | 38 RPC_STATUS RpcNsBindingLookupBeginA(uint, ubyte*, RPC_IF_HANDLE, UUID*, 57 RPC_STATUS RpcNsEntryObjectInqNext(RPC_NS_HANDLE, UUID*); 75 RPC_STATUS RpcNsBindingImportBeginA(uint, ubyte*, RPC_IF_HANDLE, UUID*, 83 RPC_STATUS RpcNsBindingLookupBeginW(uint, ushort*, RPC_IF_HANDLE, UUID*, 106 RPC_STATUS RpcNsBindingImportBeginW(uint, ushort*, RPC_IF_HANDLE, UUID*,
|
| /src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
| uuid.d | 2 * A $(LINK2 http://en.wikipedia.org/wiki/Universally_unique_identifier, UUID), or 17 $(MYREF UUID) 29 $(TD $(MYREF2 UUID.uuidVersion, uuidVersion) 30 $(MYREF2 UUID.variant, variant) 31 $(MYREF2 UUID.toString, toString) 32 $(MYREF2 UUID.data, data) 33 $(MYREF2 UUID.swap, swap) 34 $(MYREF2 UUID.opEquals, opEquals) 35 $(MYREF2 UUID.opCmp, opCmp) 36 $(MYREF2 UUID.toHash, toHash [all...] |
| /src/external/gpl2/lvm2/dist/test/ |
| t-vgrename-usage.sh | 27 # vgrename by uuid (bz231187) 29 UUID=$(vgs --noheading -o vg_uuid $vg1) 30 check_vg_field_ $vg1 vg_uuid $UUID 31 vgrename $UUID $vg2
|
| /src/external/apache2/llvm/dist/llvm/lib/TextAPI/ |
| TextStubCommon.h | 23 using UUID = std::pair<llvm::MachO::Target, std::string>; 27 LLVM_YAML_IS_FLOW_SEQUENCE_VECTOR(UUID) 71 template <> struct ScalarTraits<UUID> { 72 static void output(const UUID &, void *, raw_ostream &); 73 static StringRef input(StringRef, void *, UUID &);
|
| TextStubCommon.cpp | 219 void ScalarTraits<UUID>::output(const UUID &Value, void *, raw_ostream &OS) { 222 StringRef ScalarTraits<UUID>::input(StringRef Scalar, void *, UUID &Value) { 225 auto UUID = Split.second.trim(); 226 if (UUID.empty()) 227 return "invalid uuid string pair"; 228 Value.second = std::string(UUID); 233 QuotingType ScalarTraits<UUID>::mustQuote(StringRef) {
|
| InterfaceFile.cpp | 74 void InterfaceFile::addUUID(const Target &Target_, StringRef UUID) { 80 Iter->second = std::string(UUID); 84 UUIDs.emplace(Iter, Target_, std::string(UUID)); 87 void InterfaceFile::addUUID(const Target &Target, uint8_t UUID[16]) { 93 << static_cast<int>(UUID[i]);
|
| TextStub.cpp | 72 uuids: [ armv7:... ] # Optional: List of architecture and UUID pairs. 113 uuids: [ armv7:... ] # Optional: List of architecture and UUID pairs. 158 uuids: # Optional: List of target and UUID pairs. 252 // UUID's for TBDv4 are mapped to target not arch 344 static void mapping(IO &IO, UUIDv4 &UUID) { 345 IO.mapRequired("target", UUID.TargetID); 346 IO.mapRequired("value", UUID.Value); 733 std::vector<UUID> UUIDs;
|
| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/ |
| Header.cpp | 33 OS << " UUID = "; 35 OS << format_hex_no_prefix(H.UUID[I], 2); 60 "invalid UUID size %u", UUIDSize); 79 Data.getU8(&Offset, H.UUID, GSYM_MAX_UUID_SIZE); 97 O.writeData(llvm::ArrayRef<uint8_t>(UUID)); 108 memcmp(LHS.UUID, RHS.UUID, LHS.UUIDSize) == 0;
|
| GsymCreator.cpp | 78 Hdr.UUIDSize = static_cast<uint8_t>(UUID.size()); 83 memset(Hdr.UUID, 0, sizeof(Hdr.UUID)); 84 if (UUID.size() > sizeof(Hdr.UUID)) 86 "invalid UUID size %u", (uint32_t)UUID.size()); 96 // Copy the UUID value if we have one. 97 if (UUID.size() > 0) 98 memcpy(Hdr.UUID, UUID.data(), UUID.size()) [all...] |
| ObjectFileTransformer.cpp | 26 // Extract the UUID from the object file 27 std::vector<uint8_t> UUID; 31 UUID.assign(MachUUID.data(), MachUUID.data() + MachUUID.size()); 62 UUID.assign(Ptr, Ptr + UUIDBytes.size()); 67 return UUID;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/GSYM/ |
| Header.h | 57 /// The size in bytes of the UUID encoded in the "UUID" member. 81 /// The UUID of the original executable file. This is stored to allow 83 /// required. Only the first "UUIDSize" bytes of the UUID are valid. Any 84 /// bytes in the UUID value that appear after the first UUIDSize bytes should 86 uint8_t UUID[GSYM_MAX_UUID_SIZE]; 97 /// - check that the UUID size is valid
|
| GsymCreator.h | 142 std::vector<uint8_t> UUID; 211 /// Set the UUID value. 213 /// \param UUIDBytes The new UUID bytes. 215 UUID.assign(UUIDBytes.begin(), UUIDBytes.end());
|
| /src/external/gpl3/binutils/dist/ld/ |
| ldbuildid.c | 45 || (streq (style, "uuid")) || (startswith (style, "0x"))) 54 if (streq (style, "md5") || streq (style, "uuid")) 168 else if (streq (style, "uuid")) 181 typedef RPC_STATUS (RPC_ENTRY * UuidCreateFn) (UUID *); 182 UUID uuid; 195 if (uuid_create (&uuid) != RPC_S_OK) 201 memcpy (id_bits, &uuid, 202 (size_t) size < sizeof (UUID) ? (size_t) size : sizeof (UUID)); [all...] |
| /src/external/gpl3/binutils.old/dist/ld/ |
| ldbuildid.c | 45 || (streq (style, "uuid")) || (startswith (style, "0x"))) 54 if (streq (style, "md5") || streq (style, "uuid")) 168 else if (streq (style, "uuid")) 181 typedef RPC_STATUS (RPC_ENTRY * UuidCreateFn) (UUID *); 182 UUID uuid; 195 if (uuid_create (&uuid) != RPC_S_OK) 201 memcpy (id_bits, &uuid, 202 (size_t) size < sizeof (UUID) ? (size_t) size : sizeof (UUID)); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/BinaryFormat/ |
| Magic.cpp | 43 offsetof(COFF::BigObjHeader, UUID) + sizeof(COFF::BigObjMagic); 47 const char *Start = Magic.data() + offsetof(COFF::BigObjHeader, UUID);
|
| /src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
| SymbolMap.cpp | 19 #include <uuid/uuid.h> 70 // Look through the UUID Map. 96 StringRef UUID(CFStringGetCStringPtr(OldUUID, kCFStringEncodingUTF8)); 98 sys::path::append(BCSymbolMapPath, UUID.str() + ".bcsymbolmap");
|
| MachODebugMapParser.cpp | 193 ArrayRef<uint8_t> UUID = MainBinary.getUuid(); 195 std::make_unique<DebugMap>(MainBinary.getArchTriple(), BinaryPath, UUID);
|
| /src/usr.bin/make/unit-tests/ |
| cmdline.mk | 6 SUB1= a7b41170-53f8-4cc2-bc5c-e4c3dd93ec45 # just a random UUID 7 SUB2= 6a8899d2-d227-4b55-9b6b-f3c8eeb83fd5 # just a random UUID
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/TextAPI/ |
| InterfaceFile.h | 318 /// Add an Target/UUID pair. 321 /// \param UUID The UUID of the library for the specified architecture. 322 void addUUID(const Target &Target, StringRef UUID); 324 /// Add an Target/UUID pair. 327 /// \param UUID The UUID of the library for the specified architecture. 328 void addUUID(const Target &Target, uint8_t UUID[16]); 330 /// Get the list of Target/UUID pairs. 332 /// \return Returns a list of Target/UUID pairs [all...] |
| /src/external/gpl3/gcc.old/dist/libphobos/testsuite/libphobos.exceptions/ |
| assert_fail.d | 229 static struct UUID { 237 enum ctfe = UUID();
|
| /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/ |
| MetadataLoader.cpp | 187 void addTypeRef(MDString &UUID, DICompositeType &CT); 303 void BitcodeReaderMetadataList::addTypeRef(MDString &UUID, 305 assert(CT.getRawIdentifier() == &UUID && "Mismatched UUID"); 307 OldTypeRefs.FwdDecls.insert(std::make_pair(&UUID, &CT)); 309 OldTypeRefs.Final.insert(std::make_pair(&UUID, &CT)); 313 auto *UUID = dyn_cast_or_null<MDString>(MaybeUUID); 314 if (LLVM_LIKELY(!UUID)) 317 if (auto *CT = OldTypeRefs.Final.lookup(UUID)) 320 auto &Ref = OldTypeRefs.Unknown[UUID]; [all...] |
| /src/external/bsd/openldap/dist/libraries/liblutil/ |
| uuid.c | 1 /* $NetBSD: uuid.c,v 1.4 2025/09/05 21:16:23 christos Exp $ */ 3 /* uuid.c -- Universally Unique Identifier routines */ 32 * that LDAP cares about. It generates a new uuid and returns it in 36 __RCSID("$NetBSD: uuid.c,v 1.4 2025/09/05 21:16:23 christos Exp $"); 48 # include <sys/uuid.h> 50 # include <uuid/uuid.h> 264 ** All we really care about is an ISO UUID string. The format of a UUID is: 316 UUID uuid [all...] |