HomeSort by relevance Sort by last modified time
    Searched refs:GetIdentifier (Results 1 - 25 of 37) sorted by null

1 2

  /external/lldb/source/Host/macosx/cfcpp/
CFCBundle.h 31 GetIdentifier () const;
CFCBundle.cpp 75 CFCBundle::GetIdentifier () const
  /external/lldb/tools/debugserver/source/MacOSX/
CFBundle.h 34 GetIdentifier () const;
CFBundle.cpp 81 CFBundle::GetIdentifier () const
  /external/chromium_org/device/bluetooth/
bluetooth_remote_gatt_descriptor_chromeos.cc 38 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
45 std::string BluetoothRemoteGattDescriptorChromeOS::GetIdentifier() const {
82 << "descriptor: " << GetIdentifier() << ", UUID: "
100 << "characteristic: " << GetIdentifier() << ", UUID: "
bluetooth_gatt_descriptor.h 140 virtual std::string GetIdentifier() const = 0;
bluetooth_remote_gatt_characteristic_chromeos.cc 45 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
81 std::string BluetoothRemoteGattCharacteristicChromeOS::GetIdentifier() const {
197 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value()
215 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value()
252 service_->GetIdentifier(),
253 GetIdentifier(),
349 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
354 DCHECK(descriptor->GetIdentifier() == object_path.value());
371 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
423 service_->GetIdentifier(),
    [all...]
bluetooth_gatt_chromeos_unittest.cc 84 last_gatt_service_id_ = service->GetIdentifier();
101 last_gatt_service_id_ = service->GetIdentifier();
144 gatt_service_id_(service->GetIdentifier()),
164 ASSERT_EQ(gatt_service_id_, service->GetIdentifier());
173 ASSERT_EQ(gatt_service_id_, service->GetIdentifier());
176 last_gatt_characteristic_id_ = characteristic->GetIdentifier();
189 ASSERT_EQ(gatt_service_id_, service->GetIdentifier());
192 last_gatt_characteristic_id_ = characteristic->GetIdentifier();
206 ASSERT_EQ(gatt_service_id_, service->GetIdentifier());
209 last_gatt_characteristic_id_ = characteristic->GetIdentifier();
    [all...]
bluetooth_gatt_characteristic.h 120 virtual std::string GetIdentifier() const = 0;
bluetooth_remote_gatt_descriptor_chromeos.h 33 virtual std::string GetIdentifier() const OVERRIDE;
bluetooth_remote_gatt_service_chromeos.cc 74 std::string BluetoothRemoteGattServiceChromeOS::GetIdentifier() const {
228 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
233 DCHECK(characteristic->GetIdentifier() == object_path.value());
250 << GetIdentifier() << ", UUID: " << GetUUID().canonical_value();
bluetooth_gatt_service.h 241 virtual std::string GetIdentifier() const = 0;
bluetooth_remote_gatt_characteristic_chromeos.h 42 virtual std::string GetIdentifier() const OVERRIDE;
  /external/chromium_org/device/bluetooth/test/
mock_bluetooth_gatt_descriptor.cc 20 ON_CALL(*this, GetIdentifier()).WillByDefault(Return(identifier));
mock_bluetooth_gatt_descriptor.h 32 MOCK_CONST_METHOD0(GetIdentifier, std::string());
mock_bluetooth_gatt_characteristic.cc 22 ON_CALL(*this, GetIdentifier()).WillByDefault(Return(identifier));
mock_bluetooth_gatt_service.cc 20 ON_CALL(*this, GetIdentifier()).WillByDefault(Return(identifier));
mock_bluetooth_gatt_service.h 31 MOCK_CONST_METHOD0(GetIdentifier, std::string());
mock_bluetooth_gatt_characteristic.h 33 MOCK_CONST_METHOD0(GetIdentifier, std::string());
  /external/chromium_org/device/nfc/
nfc_peer.h 60 virtual std::string GetIdentifier() const = 0;
nfc_tag.h 77 virtual std::string GetIdentifier() const = 0;
nfc_peer_chromeos.h 26 virtual std::string GetIdentifier() const OVERRIDE;
nfc_tag_chromeos.h 28 virtual std::string GetIdentifier() const OVERRIDE;
  /external/chromium_org/chrome/browser/extensions/api/bluetooth_low_energy/
bluetooth_low_energy_event_router.cc 43 out->instance_id.reset(new std::string(service->GetIdentifier()));
97 out->instance_id.reset(new std::string(characteristic->GetIdentifier()));
116 out->instance_id.reset(new std::string(descriptor->GetIdentifier()));
846 VLOG(2) << "GATT service added: " << service->GetIdentifier();
848 DCHECK(observed_gatt_services_.find(service->GetIdentifier()) ==
850 DCHECK(service_id_to_device_address_.find(service->GetIdentifier()) ==
855 const std::string& service_id = service->GetIdentifier();
874 VLOG(2) << "GATT service removed: " << service->GetIdentifier();
876 DCHECK(observed_gatt_services_.find(service->GetIdentifier()) !=
878 DCHECK(service_id_to_device_address_.find(service->GetIdentifier()) !
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/chromeos/
nfc_debug_ui.cc 317 VLOG(1) << "Found NFC tag: " << tag->GetIdentifier();
319 tag_identifier_ = tag->GetIdentifier();
326 VLOG(1) << "Lost NFC tag: " << tag->GetIdentifier();
335 VLOG(1) << "Found NFC peer device: " << peer->GetIdentifier();
337 peer_identifier_ = peer->GetIdentifier();
343 VLOG(1) << "Lost NFC peer device: " << peer->GetIdentifier();
353 if (tag->GetIdentifier() != tag_identifier_) {
355 << tag->GetIdentifier();
364 if (peer->GetIdentifier() != peer_identifier_) {
366 << peer->GetIdentifier();
    [all...]

Completed in 454 milliseconds

1 2