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

1 2 3 4 5 6

  /external/chromium_org/dbus/
mock_exported_object.cc 10 const ObjectPath& object_path)
11 : ExportedObject(bus, object_path) {
mock_object_manager.cc 11 const ObjectPath& object_path)
12 : ObjectManager(bus, service_name, object_path) {
mock_object_proxy.cc 11 const ObjectPath& object_path)
12 : ObjectProxy(bus, service_name, object_path, DEFAULT_OPTIONS) {
  /external/chromium_org/chromeos/dbus/
fake_introspectable_client.cc 9 #include "dbus/object_path.h"
20 const dbus::ObjectPath& object_path,
22 VLOG(1) << "Introspect: " << service_name << " " << object_path.value();
23 callback.Run(service_name, object_path, "", false);
nfc_client_helpers.cc 52 const dbus::ObjectPath& object_path = iter->first; local
54 delegate_->ObjectRemoved(object_path);
60 const dbus::ObjectPath& object_path) {
61 return GetObjectPropertyPair(object_path).first;
65 const dbus::ObjectPath& object_path) {
66 return GetObjectPropertyPair(object_path).second;
80 const dbus::ObjectPath &object_path = *iter; local
81 AddObject(object_path);
85 object_path_set.insert(object_path_set_iter, object_path);
93 const dbus::ObjectPath &object_path = iter->first local
150 const dbus::ObjectPath& object_path = iter->first; local
159 const dbus::ObjectPath& object_path = iter->first; local
    [all...]
fake_bluetooth_gatt_descriptor_client.cc 84 const dbus::ObjectPath& object_path) {
85 PropertiesMap::const_iterator iter = properties_.find(object_path);
92 const dbus::ObjectPath& object_path,
95 PropertiesMap::iterator iter = properties_.find(object_path);
105 const dbus::ObjectPath& object_path,
109 if (properties_.find(object_path) == properties_.end()) {
131 dbus::ObjectPath object_path(
134 DCHECK(object_path.IsValid());
135 PropertiesMap::const_iterator iter = properties_.find(object_path);
137 VLOG(1) << "Descriptor already exposed: " << object_path.value()
    [all...]
nfc_record_client.cc 90 const dbus::ObjectPath& object_path) OVERRIDE {
92 devices_and_tags_to_object_maps_.FindObjectProperties(object_path));
109 virtual void DeviceAdded(const dbus::ObjectPath& object_path) OVERRIDE {
111 << "device: " << object_path.value();
113 object_path, nfc_record::kNfcRecordServiceName, this, bus_);
117 virtual void DeviceRemoved(const dbus::ObjectPath& object_path) OVERRIDE {
124 << "device: " << object_path.value();
125 devices_and_tags_to_object_maps_.RemoveObjectMap(object_path);
130 const dbus::ObjectPath& object_path,
135 device_client_->GetProperties(object_path);
    [all...]
fake_bluetooth_input_client.cc 15 #include "dbus/object_path.h"
71 FakeBluetoothInputClient::GetProperties(const dbus::ObjectPath& object_path) {
72 PropertiesMap::iterator iter = properties_map_.find(object_path);
79 const dbus::ObjectPath& object_path) {
80 if (properties_map_.find(object_path) != properties_map_.end())
86 object_path));
93 if (object_path.value() == FakeBluetoothDeviceClient::kDisplayPasskeyPath ||
94 object_path.value() ==
103 properties_map_[object_path] = properties;
106 InputAdded(object_path));
    [all...]
fake_bluetooth_gatt_manager_client.cc 86 ServiceMap::iterator iter = service_map_.find(provider->object_path());
89 << "object path: " << provider->object_path().value();
92 service_map_[provider->object_path()] = std::make_pair(false, provider);
99 characteristic_map_.find(provider->object_path());
102 << "object path: " << provider->object_path().value();
105 characteristic_map_[provider->object_path()] = provider;
112 descriptor_map_.find(provider->object_path());
115 << "object path: " << provider->object_path().value();
118 descriptor_map_[provider->object_path()] = provider;
124 service_map_.find(provider->object_path());
    [all...]
bluetooth_gatt_service_client.cc 67 const dbus::ObjectPath& object_path) OVERRIDE {
71 object_path,
78 const dbus::ObjectPath& object_path,
85 object_path));
90 virtual void ObjectAdded(const dbus::ObjectPath& object_path,
92 VLOG(2) << "Remote GATT service added: " << object_path.value();
94 GattServiceAdded(object_path));
98 virtual void ObjectRemoved(const dbus::ObjectPath& object_path,
100 VLOG(2) << "Remote GATT service removed: " << object_path.value();
102 GattServiceRemoved(object_path));
    [all...]
bluetooth_gatt_characteristic_client.h 14 #include "dbus/object_path.h"
52 // Called when the GATT characteristic with object path |object_path| is
54 virtual void GattCharacteristicAdded(const dbus::ObjectPath& object_path) {}
56 // Called when the GATT characteristic with object path |object_path| is
59 const dbus::ObjectPath& object_path) {}
61 // Called when the GATT characteristic with object path |object_path| has a
64 const dbus::ObjectPath& object_path,
68 // characteristic with object path |object_path| with characteristic value
71 const dbus::ObjectPath& object_path,
83 // Check the |object_path| parameter of observer methods to determine whic
    [all...]
nfc_tag_client.cc 78 const dbus::ObjectPath& object_path) OVERRIDE {
80 adapters_to_object_maps_.FindObjectProperties(object_path));
85 const dbus::ObjectPath& object_path,
90 adapters_to_object_maps_.FindObjectProxy(object_path);
94 object_path.value().c_str());
134 virtual void AdapterAdded(const dbus::ObjectPath& object_path) OVERRIDE {
136 << "adapter: " << object_path.value();
138 object_path, nfc_tag::kNfcTagServiceName, this, bus_);
142 virtual void AdapterRemoved(const dbus::ObjectPath& object_path) OVERRIDE {
149 << "adapter: " << object_path.value()
    [all...]
bluetooth_gatt_service_client.h 13 #include "dbus/object_path.h"
48 // Called when the GATT service with object path |object_path| is added to
50 virtual void GattServiceAdded(const dbus::ObjectPath& object_path) {}
52 // Called when the GATT service with object path |object_path| is removed
54 virtual void GattServiceRemoved(const dbus::ObjectPath& object_path) {}
56 // Called when the GATT service with object path |object_path| has a change
58 virtual void GattServicePropertyChanged(const dbus::ObjectPath& object_path,
65 // the |object_path| parameter of observer methods to determine which GATT
73 // Obtain the properties for the GATT service with object path |object_path|.
75 virtual Properties* GetProperties(const dbus::ObjectPath& object_path) = 0
    [all...]
bluetooth_input_client.h 15 #include "dbus/object_path.h"
40 // Called when the remote device with object path |object_path| implementing
43 virtual void InputAdded(const dbus::ObjectPath& object_path) {}
45 // Called when the remote device with object path |object_path| is removed
48 virtual void InputRemoved(const dbus::ObjectPath& object_path) {}
50 // Called when the device with object path |object_path| has a
53 virtual void InputPropertyChanged(const dbus::ObjectPath& object_path,
60 // devices. Check the |object_path| parameter of observer methods to
65 // Obtain the properties for the device with object path |object_path|,
67 virtual Properties* GetProperties(const dbus::ObjectPath& object_path) = 0
    [all...]
fake_modem_messaging_client.h 22 const dbus::ObjectPath& object_path,
26 const dbus::ObjectPath& object_path)
29 const dbus::ObjectPath& object_path,
33 const dbus::ObjectPath& object_path,
modem_messaging_client.h 42 const dbus::ObjectPath& object_path,
47 const dbus::ObjectPath& object_path) = 0;
51 const dbus::ObjectPath& object_path,
57 const dbus::ObjectPath& object_path,
nfc_client_helpers.h 19 #include "dbus/object_path.h"
71 // |object_path|.
72 virtual void ObjectAdded(const dbus::ObjectPath& object_path) {}
75 // |object_path|. The object proxy will still be valid before this method
79 virtual void ObjectRemoved(const dbus::ObjectPath& object_path) {}
94 // Returns the object proxy for object path |object_path|. If no object proxy
95 // exists for |object_path|, returns NULL.
96 dbus::ObjectProxy* GetObjectProxy(const dbus::ObjectPath& object_path);
99 // |object_path|. If no properties structure exists for |object_path|,
    [all...]
bluetooth_gatt_descriptor_client.h 14 #include "dbus/object_path.h"
44 // Called when the GATT descriptor with object path |object_path| is added
46 virtual void GattDescriptorAdded(const dbus::ObjectPath& object_path) {}
48 // Called when the GATT descriptor with object path |object_path| is removed
50 virtual void GattDescriptorRemoved(const dbus::ObjectPath& object_path) {}
52 // Called when the GATT descriptor with object path |object_path| has a
55 const dbus::ObjectPath& object_path,
67 // the |object_path| parameter of observer methods to determine which GATT
76 // |object_path|. Values should be copied if needed.
77 virtual Properties* GetProperties(const dbus::ObjectPath& object_path) = 0
    [all...]
fake_bluetooth_device_client.h 18 #include "dbus/object_path.h"
50 virtual Properties* GetProperties(const dbus::ObjectPath& object_path)
52 virtual void Connect(const dbus::ObjectPath& object_path,
55 virtual void Disconnect(const dbus::ObjectPath& object_path,
58 virtual void ConnectProfile(const dbus::ObjectPath& object_path,
62 virtual void DisconnectProfile(const dbus::ObjectPath& object_path,
66 virtual void Pair(const dbus::ObjectPath& object_path,
69 virtual void CancelPairing(const dbus::ObjectPath& object_path,
73 const dbus::ObjectPath& object_path,
77 const dbus::ObjectPath& object_path,
    [all...]
fake_gsm_sms_client.h 13 #include "dbus/object_path.h"
26 const dbus::ObjectPath& object_path,
30 const dbus::ObjectPath& object_path)
33 const dbus::ObjectPath& object_path,
37 const dbus::ObjectPath& object_path,
41 const dbus::ObjectPath& object_path,
44 const dbus::ObjectPath& object_path) OVERRIDE;
gsm_sms_client.h 45 const dbus::ObjectPath& object_path,
50 const dbus::ObjectPath& object_path) = 0;
54 const dbus::ObjectPath& object_path,
60 const dbus::ObjectPath& object_path,
66 const dbus::ObjectPath& object_path,
72 const dbus::ObjectPath& object_path) = 0;
nfc_adapter_client.h 16 #include "dbus/object_path.h"
66 // Called when a new adapter with object path |object_path| is added to the
68 virtual void AdapterAdded(const dbus::ObjectPath& object_path) {}
70 // Called when an adapter with object path |object_path| is removed from the
72 virtual void AdapterRemoved(const dbus::ObjectPath& object_path) {}
75 // with object path |object_path| has acquired a new value.
76 virtual void AdapterPropertyChanged(const dbus::ObjectPath& object_path,
83 // Check the |object_path| parameter of the observer methods to determine
91 // Obtains the properties for the adapter with object path |object_path|, any
94 virtual Properties* GetProperties(const dbus::ObjectPath& object_path) = 0
    [all...]
  /external/chromium_org/device/nfc/
nfc_peer_chromeos.cc 28 NfcPeerChromeOS::NfcPeerChromeOS(const dbus::ObjectPath& object_path)
29 : object_path_(object_path),
109 void NfcPeerChromeOS::RecordAdded(const dbus::ObjectPath& object_path) {
113 VLOG(1) << "Record added: " << object_path.value() << ". Waiting until "
117 void NfcPeerChromeOS::RecordRemoved(const dbus::ObjectPath& object_path) {
118 NdefRecordMap::iterator iter = records_.find(object_path);
121 VLOG(1) << "Lost remote NDEF record object: " << object_path.value()
130 const dbus::ObjectPath& object_path) {
131 VLOG(1) << "Record properties received for: " << object_path.value();
140 if (*iter == object_path) {
    [all...]
nfc_tag_technology_chromeos.cc 25 object_path_(tag->object_path()),
98 const dbus::ObjectPath& object_path) {
102 VLOG(1) << "Record added: " << object_path.value() << ". Waiting until "
107 const dbus::ObjectPath& object_path) {
108 NdefRecordMap::iterator iter = records_.find(object_path);
111 VLOG(1) << "Lost remote NDEF record object: " << object_path.value()
120 const dbus::ObjectPath& object_path) {
121 VLOG(1) << "Record properties received for: " << object_path.value();
130 if (*iter == object_path) {
136 VLOG(1) << "Record \"" << object_path.value() << "\" doesn't belong to this
    [all...]
nfc_adapter_chromeos.h 13 #include "dbus/object_path.h"
54 virtual void AdapterAdded(const dbus::ObjectPath& object_path) OVERRIDE;
55 virtual void AdapterRemoved(const dbus::ObjectPath& object_path) OVERRIDE;
57 const dbus::ObjectPath& object_path,
61 virtual void DeviceAdded(const dbus::ObjectPath& object_path) OVERRIDE;
62 virtual void DeviceRemoved(const dbus::ObjectPath& object_path) OVERRIDE;
65 virtual void TagAdded(const dbus::ObjectPath& object_path) OVERRIDE;
66 virtual void TagRemoved(const dbus::ObjectPath& object_path) OVERRIDE;
68 // Set the tracked adapter to the one in |object_path|, this object will
70 void SetAdapter(const dbus::ObjectPath& object_path);
    [all...]

Completed in 246 milliseconds

1 2 3 4 5 6