Searched refs:GetUUID (Results 1 - 25 of 53) sorted by relevance

123

/external/chromium_org/content/public/browser/
H A Dblob_handle.h17 virtual std::string GetUUID() = 0;
/external/chromium_org/device/bluetooth/
H A Dbluetooth_remote_gatt_descriptor_chromeos.cc38 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
49 device::BluetoothUUID BluetoothRemoteGattDescriptorChromeOS::GetUUID() const { function in class:chromeos::BluetoothRemoteGattDescriptorChromeOS
83 << GetUUID().canonical_value();
101 << GetUUID().canonical_value() << ", with value: "
H A Dbluetooth_remote_gatt_service_chromeos.cc28 << object_path.value() << ", UUID: " << GetUUID().canonical_value();
68 device::BluetoothUUID BluetoothRemoteGattServiceChromeOS::GetUUID() const { function in class:chromeos::BluetoothRemoteGattServiceChromeOS
240 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
246 DCHECK(characteristic->GetUUID().IsValid());
261 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
H A Dbluetooth_gatt_chromeos_unittest.cc90 last_gatt_service_uuid_ = service->GetUUID();
108 last_gatt_service_uuid_ = service->GetUUID();
143 last_gatt_characteristic_uuid_ = characteristic->GetUUID();
160 last_gatt_characteristic_uuid_ = characteristic->GetUUID();
178 last_gatt_characteristic_uuid_ = characteristic->GetUUID();
196 last_gatt_descriptor_uuid_ = descriptor->GetUUID();
213 last_gatt_descriptor_uuid_ = descriptor->GetUUID();
231 last_gatt_descriptor_uuid_ = descriptor->GetUUID();
509 EXPECT_EQ(observer.last_gatt_service_uuid_, service->GetUUID());
546 EXPECT_EQ(observer.last_gatt_service_uuid_, service->GetUUID());
[all...]
H A Dbluetooth_gatt_descriptor.h143 virtual BluetoothUUID GetUUID() const = 0;
H A Dbluetooth_remote_gatt_descriptor_chromeos.h34 virtual device::BluetoothUUID GetUUID() const OVERRIDE;
H A Dbluetooth_remote_gatt_characteristic_chromeos.cc45 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
86 BluetoothRemoteGattCharacteristicChromeOS::GetUUID() const { function in class:chromeos::BluetoothRemoteGattCharacteristicChromeOS
197 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value()
215 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value()
350 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
356 DCHECK(descriptor->GetUUID().IsValid());
371 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
H A Dbluetooth_gatt_characteristic.h123 virtual BluetoothUUID GetUUID() const = 0;
H A Dbluetooth_gatt_service.h153 virtual BluetoothUUID GetUUID() const = 0;
/external/chromium_org/device/bluetooth/test/
H A Dmock_bluetooth_gatt_descriptor.cc21 ON_CALL(*this, GetUUID()).WillByDefault(Return(uuid));
H A Dmock_bluetooth_gatt_characteristic.cc23 ON_CALL(*this, GetUUID()).WillByDefault(Return(uuid));
H A Dmock_bluetooth_gatt_descriptor.h33 MOCK_CONST_METHOD0(GetUUID, BluetoothUUID());
H A Dmock_bluetooth_gatt_service.cc21 ON_CALL(*this, GetUUID()).WillByDefault(Return(uuid));
H A Dmock_bluetooth_gatt_service.h30 MOCK_CONST_METHOD0(GetUUID, BluetoothUUID());
H A Dmock_bluetooth_gatt_characteristic.h34 MOCK_CONST_METHOD0(GetUUID, BluetoothUUID());
/external/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp55 if (!ofile->GetUUID(&dsym_uuid))
66 if (dsym_uuid == module->GetUUID())
73 module->GetUUID().Dump(feedback_strm);
166 module_spec.GetUUID() = module_sp->GetUUID();
183 if (dsym_objfile_sp->GetUUID(&dsym_uuid))
/external/lldb/source/API/
H A DSBModuleSpec.cpp125 return (const uint8_t *)m_opaque_ap->GetUUID().GetBytes();
131 return m_opaque_ap->GetUUID().GetByteSize();
137 return m_opaque_ap->GetUUID().SetBytes(uuid, uuid_len);
/external/lldb/source/Host/common/
H A DSymbols.cpp54 const UUID &module_uuid = module_spec.GetUUID();
103 if (mspec.GetUUID() == module_uuid)
/external/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp99 if (!obj_file->GetUUID (&uuid))
126 module_spec.GetUUID() = uuid;
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp234 if (CheckForKernelImageAtAddress (exe_objfile->GetHeaderAddress().GetFileAddress(), process) == exe_module->GetUUID())
442 return memory_module_sp->GetUUID();
613 if (m_uuid.IsValid() || rhs.GetUUID().IsValid())
615 if (m_uuid == rhs.GetUUID())
647 DynamicLoaderDarwinKernel::KextImageInfo::GetUUID () const function in class:DynamicLoaderDarwinKernel::KextImageInfo
693 if (m_uuid != memory_module_sp->GetUUID())
700 if (!m_uuid.IsValid() && memory_module_sp->GetUUID().IsValid())
702 m_uuid = memory_module_sp->GetUUID();
716 if (exe_module && exe_module->GetUUID().IsValid())
718 if (m_uuid != exe_module->GetUUID())
[all...]
/external/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.h120 GetUUID (lldb_private::UUID* uuid);
164 GetUUID (const llvm::MachO::mach_header &header,
/external/chromium_org/content/browser/fileapi/
H A Dchrome_blob_storage_context.cc32 virtual std::string GetUUID() OVERRIDE {
/external/chromium_org/extensions/browser/
H A Dblob_holder.cc47 std::string uuid = blob->GetUUID();
/external/lldb/include/lldb/Core/
H A DModuleSpec.h223 GetUUID () function in class:lldb_private::ModuleSpec
229 GetUUID () const function in class:lldb_private::ModuleSpec
380 if (match_module_spec.GetUUIDPtr() && match_module_spec.GetUUID() != GetUUID())
/external/lldb/source/Interpreter/
H A DOptionValueUUID.cpp101 const UUID &module_uuid = module_sp->GetUUID();

Completed in 2617 milliseconds

123