HomeSort by relevance Sort by last modified time
    Searched defs:object_path (Results 1 - 21 of 21) sorted by null

  /external/chromium_org/chromeos/dbus/
fake_bluetooth_gatt_service_service_provider.h 13 #include "dbus/object_path.h"
24 const dbus::ObjectPath& object_path,
29 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::FakeBluetoothGattServiceServiceProvider
fake_bluetooth_gatt_characteristic_service_provider.h 13 #include "dbus/object_path.h"
24 const dbus::ObjectPath& object_path,
44 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::FakeBluetoothGattCharacteristicServiceProvider
fake_bluetooth_gatt_descriptor_service_provider.h 13 #include "dbus/object_path.h"
24 const dbus::ObjectPath& object_path,
43 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::FakeBluetoothGattDescriptorServiceProvider
nfc_manager_client.cc 105 dbus::ObjectPath object_path; local
106 if (!reader.PopObjectPath(&object_path)) {
111 VLOG(1) << "Adapter added: " << object_path.value();
112 FOR_EACH_OBSERVER(Observer, observers_, AdapterAdded(object_path));
126 dbus::ObjectPath object_path; local
127 if (!reader.PopObjectPath(&object_path)) {
132 VLOG(1) << "Adapter removed: " << object_path.value();
133 FOR_EACH_OBSERVER(Observer, observers_, AdapterRemoved(object_path));
shill_service_client.cc 66 helper->object_proxy()->object_path(),
253 dbus::ObjectPath object_path = helper->object_proxy()->object_path(); local
259 if (object_path == dbus::ObjectPath(shill::kFlimflamServicePath)) {
264 NET_LOG_DEBUG("RemoveShillClientHelper", object_path.value());
266 object_path, base::Bind(&base::DoNothing));
267 helpers_.erase(object_path.value());
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...]
  /external/chromium_org/device/bluetooth/
bluetooth_remote_gatt_descriptor_chromeos.h 12 #include "dbus/object_path.h"
50 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::BluetoothRemoteGattDescriptorChromeOS
57 const dbus::ObjectPath& object_path);
bluetooth_device_chromeos.h 17 #include "dbus/object_path.h"
95 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::BluetoothDeviceChromeOS
106 const dbus::ObjectPath& object_path,
112 virtual void GattServiceAdded(const dbus::ObjectPath& object_path) OVERRIDE;
113 virtual void GattServiceRemoved(const dbus::ObjectPath& object_path) OVERRIDE;
bluetooth_remote_gatt_characteristic_chromeos.h 17 #include "dbus/object_path.h"
74 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::BluetoothRemoteGattCharacteristicChromeOS
81 const dbus::ObjectPath& object_path);
86 const dbus::ObjectPath& object_path,
91 const dbus::ObjectPath& object_path) OVERRIDE;
93 const dbus::ObjectPath& object_path) OVERRIDE;
bluetooth_remote_gatt_service_chromeos.h 17 #include "dbus/object_path.h"
68 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::BluetoothRemoteGattServiceChromeOS
110 const dbus::ObjectPath& object_path);
115 const dbus::ObjectPath& object_path,
120 const dbus::ObjectPath& object_path) OVERRIDE;
122 const dbus::ObjectPath& object_path) OVERRIDE;
124 const dbus::ObjectPath& object_path,
bluetooth_adapter_chromeos.h 17 #include "dbus/object_path.h"
79 const dbus::ObjectPath& object_path);
86 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::BluetoothAdapterChromeOS
106 virtual void AdapterAdded(const dbus::ObjectPath& object_path) OVERRIDE;
107 virtual void AdapterRemoved(const dbus::ObjectPath& object_path) OVERRIDE;
109 const dbus::ObjectPath& object_path,
113 virtual void DeviceAdded(const dbus::ObjectPath& object_path) OVERRIDE;
114 virtual void DeviceRemoved(const dbus::ObjectPath& object_path) OVERRIDE;
115 virtual void DevicePropertyChanged(const dbus::ObjectPath& object_path,
119 virtual void InputPropertyChanged(const dbus::ObjectPath& object_path,
    [all...]
bluetooth_socket_chromeos.h 16 #include "dbus/object_path.h"
74 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::BluetoothSocketChromeOS
152 void OnUnregisterProfile(const dbus::ObjectPath& object_path);
153 void OnUnregisterProfileError(const dbus::ObjectPath& object_path,
  /external/chromium_org/device/nfc/
nfc_tag_chromeos.h 13 #include "dbus/object_path.h"
38 virtual void TagPropertyChanged(const dbus::ObjectPath& object_path,
41 const dbus::ObjectPath& object_path) OVERRIDE;
44 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::NfcTagChromeOS
49 explicit NfcTagChromeOS(const dbus::ObjectPath& object_path);
nfc_adapter_chromeos.cc 119 void NfcAdapterChromeOS::AdapterAdded(const dbus::ObjectPath& object_path) {
122 SetAdapter(object_path);
125 void NfcAdapterChromeOS::AdapterRemoved(const dbus::ObjectPath& object_path) {
126 if (object_path != object_path_)
143 if (*iter == object_path)
150 const dbus::ObjectPath& object_path,
152 if (object_path != object_path_)
163 void NfcAdapterChromeOS::DeviceAdded(const dbus::ObjectPath& object_path) {
167 if (GetPeer(object_path.value()))
170 VLOG(1) << "NFC device found: " << object_path.value()
271 const dbus::ObjectPath& object_path = *iter; local
286 const dbus::ObjectPath& object_path = *iter; local
    [all...]
  /external/chromium_org/dbus/
object_manager.cc 25 const ObjectPath& object_path)
28 object_path_(object_path),
112 ObjectProxy* ObjectManager::GetObjectProxy(const ObjectPath& object_path) {
113 ObjectMap::iterator iter = object_map_.find(object_path);
121 PropertySet* ObjectManager::GetProperties(const ObjectPath& object_path,
123 ObjectMap::iterator iter = object_map_.find(object_path);
156 ObjectPath object_path; local
158 !dict_entry_reader.PopObjectPath(&object_path))
161 UpdateObject(object_path, &dict_entry_reader);
173 ObjectPath object_path; local
194 ObjectPath object_path; local
309 const dbus::ObjectPath object_path = tmp->first; local
    [all...]
object_proxy.h 20 #include "dbus/object_path.h"
44 const ObjectPath& object_path,
169 const ObjectPath& object_path() const { return object_path_; } function in class:dbus::ObjectProxy
test_service.cc 14 #include "dbus/object_path.h"
468 ObjectPath object_path; local
469 if (!reader.PopString(&action) || !reader.PopObjectPath(&object_path)) {
475 AddObject(object_path);
477 RemoveObject(object_path);
623 void TestService::AddObject(const ObjectPath& object_path) {
628 object_path));
631 void TestService::AddObjectInternal(const ObjectPath& object_path) {
634 writer.AppendObjectPath(object_path);
649 void TestService::RemoveObject(const ObjectPath& object_path) {
    [all...]
message.cc 14 #include "dbus/object_path.h"
182 case OBJECT_PATH: {
186 output += indent + "object_path \"" + value.value() + "\"\n";
852 ObjectPath object_path; local
853 if (!array_reader.PopObjectPath(&object_path))
855 object_paths->push_back(object_path);
  /external/chromium_org/mojo/shell/
dbus_service_loader_linux.cc 17 #include "dbus/object_path.h"
89 const std::string object_path = url_.path().substr(first_slash); local
91 bus_->GetObjectProxy(service_name, dbus::ObjectPath(object_path));
  /external/chromium_org/chrome/browser/chromeos/policy/
device_status_collector_browsertest.cc 698 const char* object_path; member in struct:policy::FakeDeviceData
739 dev.object_path);
  /external/chromium_org/content/common/
sandbox_win.cc 514 base::string16 object_path = PrependWindowsSessionPath( local
516 policy->AddKernelObjectToClose(L"Section", object_path.data());

Completed in 337 milliseconds