/external/lldb/source/Core/ |
D | UUID.cpp | 27 ::memset (m_uuid, 0, sizeof(m_uuid)); in UUID() 33 ::memcpy (m_uuid, rhs.m_uuid, sizeof (m_uuid)); in UUID() 47 ::memcpy (m_uuid, rhs.m_uuid, sizeof (m_uuid)); in operator =() 60 ::memset (m_uuid, 0, sizeof(m_uuid)); in Clear() 66 return m_uuid; in GetBytes() 120 m_uuid[16] = m_uuid[17] = m_uuid[18] = m_uuid[19] = 0; in SetBytes() 130 ::memcpy (m_uuid, uuid_bytes, m_num_uuid_bytes); in SetBytes() 134 ::memset (m_uuid, 0, sizeof(m_uuid)); in SetBytes() 147 return m_uuid[0] || in IsValid() 148 m_uuid[1] || in IsValid() [all …]
|
D | Module.cpp | 134 m_uuid (), in Module() 178 m_uuid (), in Module() 316 obj_file->GetUUID(&m_uuid); in GetUUID() 320 return m_uuid; in GetUUID()
|
/external/lldb/include/lldb/Interpreter/ |
D | OptionValueUUID.h | 27 m_uuid () in OptionValueUUID() 33 m_uuid (uuid) in OptionValueUUID() 62 m_uuid.Clear(); in Clear() 77 return m_uuid; in GetCurrentValue() 83 return m_uuid; in GetCurrentValue() 89 m_uuid = value; in SetCurrentValue() 101 UUID m_uuid;
|
D | OptionGroupUUID.h | 52 return m_uuid; in GetOptionValue() 56 OptionValueUUID m_uuid;
|
/external/lldb/include/lldb/Core/ |
D | ModuleSpec.h | 29 m_uuid (), in ModuleSpec() 42 m_uuid (), in ModuleSpec() 55 m_uuid (), in ModuleSpec() 68 m_uuid (rhs.m_uuid), in ModuleSpec() 85 m_uuid = rhs.m_uuid; 209 if (m_uuid.IsValid()) in GetUUIDPtr() 210 return &m_uuid; in GetUUIDPtr() 217 if (m_uuid.IsValid()) in GetUUIDPtr() 218 return &m_uuid; in GetUUIDPtr() 225 return m_uuid; in GetUUID() [all …]
|
D | UUID.h | 97 ValueType m_uuid; variable
|
D | Module.h | 992 …lldb_private::UUID m_uuid; ///< Each module is assumed to have a unique identifie… variable
|
/external/chromium_org/third_party/WebKit/public/platform/ |
D | WebBlobInfo.h | 23 , m_uuid(uuid) in WebBlobInfo() 31 , m_uuid(uuid) in WebBlobInfo() 41 , m_uuid(uuid) in WebBlobInfo() 55 return m_uuid; in uuid() 80 WebString m_uuid; variable
|
/external/lldb/source/Interpreter/ |
D | OptionGroupUUID.cpp | 22 m_uuid () in OptionGroupUUID() 59 error = m_uuid.SetValueFromCString (option_arg); in SetOptionValue() 61 m_uuid.SetOptionWasSet(); in SetOptionValue() 75 m_uuid.Clear(); in OptionParsingStarting()
|
D | OptionValueUUID.cpp | 35 m_uuid.Dump (&strm); in DumpValue() 53 if (m_uuid.SetFromCString(value_cstr) == 0) in SetValueFromCString()
|
/external/chromium_org/third_party/WebKit/Source/platform/blob/ |
D | BlobData.cpp | 166 : m_uuid(createCanonicalUUIDString()) in BlobDataHandle() 169 BlobRegistry::registerBlobData(m_uuid, BlobData::create()); in BlobDataHandle() 173 : m_uuid(createCanonicalUUIDString()) in BlobDataHandle() 177 BlobRegistry::registerBlobData(m_uuid, data); in BlobDataHandle() 181 : m_uuid(uuid.isolatedCopy()) in BlobDataHandle() 185 BlobRegistry::addBlobDataRef(m_uuid); in BlobDataHandle() 190 BlobRegistry::removeBlobDataRef(m_uuid); in ~BlobDataHandle()
|
D | BlobData.h | 222 String uuid() const { return m_uuid.isolatedCopy(); } in uuid() 233 const String m_uuid; variable
|
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
D | DynamicLoaderDarwinKernel.cpp | 613 if (m_uuid.IsValid() || rhs.GetUUID().IsValid()) in operator ==() 615 if (m_uuid == rhs.GetUUID()) in operator ==() 643 m_uuid = uuid; in SetUUID() 649 return m_uuid; in GetUUID() 691 if (m_uuid.IsValid()) in ReadMemoryModule() 693 if (m_uuid != memory_module_sp->GetUUID()) in ReadMemoryModule() 700 if (!m_uuid.IsValid() && memory_module_sp->GetUUID().IsValid()) in ReadMemoryModule() 702 m_uuid = memory_module_sp->GetUUID(); in ReadMemoryModule() 713 if (m_uuid.IsValid()) in ReadMemoryModule() 718 if (m_uuid != exe_module->GetUUID()) in ReadMemoryModule() [all …]
|
D | DynamicLoaderDarwinKernel.h | 163 m_uuid (), in KextImageInfo() 175 m_uuid.Clear(); in Clear() 263 …lldb_private::UUID m_uuid; // UUID for this dylib if it has one, else all ze… variable
|
/external/lldb/source/Plugins/ObjectFile/ELF/ |
D | ObjectFileELF.h | 181 lldb_private::UUID m_uuid; variable
|
D | ObjectFileELF.cpp | 466 if (m_uuid.IsValid()) in GetUUID() 469 *uuid = m_uuid; in GetUUID() 837 …return GetSectionHeaderInfo(m_section_headers, m_data, m_header, m_uuid, m_gnu_debuglink_file, m_g… in ParseSectionHeaders()
|