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 16 #include "dbus/object_path.h"
103 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::BluetoothDeviceChromeOS
114 const dbus::ObjectPath& object_path,
120 virtual void GattServiceAdded(const dbus::ObjectPath& object_path) OVERRIDE;
121 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"
64 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::BluetoothRemoteGattServiceChromeOS
106 const dbus::ObjectPath& object_path);
111 const dbus::ObjectPath& object_path,
116 const dbus::ObjectPath& object_path) OVERRIDE;
118 const dbus::ObjectPath& object_path) OVERRIDE;
120 const dbus::ObjectPath& object_path,
bluetooth_adapter_chromeos.h 17 #include "dbus/object_path.h"
82 const dbus::ObjectPath& object_path);
110 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::BluetoothAdapterChromeOS
130 virtual void AdapterAdded(const dbus::ObjectPath& object_path) OVERRIDE;
131 virtual void AdapterRemoved(const dbus::ObjectPath& object_path) OVERRIDE;
133 const dbus::ObjectPath& object_path,
137 virtual void DeviceAdded(const dbus::ObjectPath& object_path) OVERRIDE;
138 virtual void DeviceRemoved(const dbus::ObjectPath& object_path) OVERRIDE;
139 virtual void DevicePropertyChanged(const dbus::ObjectPath& object_path,
143 virtual void InputPropertyChanged(const dbus::ObjectPath& object_path,
    [all...]
bluetooth_socket_chromeos.h 16 #include "dbus/object_path.h"
79 const dbus::ObjectPath& object_path() const { return object_path_; } function in class:chromeos::BluetoothSocketChromeOS
155 void OnUnregisterProfile(const dbus::ObjectPath& object_path);
156 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_proxy.h 20 #include "dbus/object_path.h"
45 const ObjectPath& object_path,
181 const ObjectPath& object_path() const { return object_path_; } function in class:dbus::ObjectProxy
object_manager.cc 32 const ObjectPath& object_path)
35 object_path_(object_path),
113 ObjectProxy* ObjectManager::GetObjectProxy(const ObjectPath& object_path) {
114 ObjectMap::iterator iter = object_map_.find(object_path);
122 PropertySet* ObjectManager::GetProperties(const ObjectPath& object_path,
124 ObjectMap::iterator iter = object_map_.find(object_path);
315 const dbus::ObjectPath object_path,
320 NotifyPropertiesChangedHelper(object_path, signal);
329 const dbus::ObjectPath object_path,
342 PropertySet* properties = GetProperties(object_path, interface)
356 ObjectPath object_path; local
373 ObjectPath object_path; local
394 ObjectPath object_path; local
510 const dbus::ObjectPath object_path = tmp->first; local
    [all...]
test_service.cc 14 #include "dbus/object_path.h"
472 ObjectPath object_path; local
473 if (!reader.PopString(&action) || !reader.PopObjectPath(&object_path)) {
479 AddObject(object_path);
481 RemoveObject(object_path);
632 void TestService::AddObject(const ObjectPath& object_path) {
637 object_path));
640 void TestService::AddObjectInternal(const ObjectPath& object_path) {
643 writer.AppendObjectPath(object_path);
658 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_application_loader_linux.cc 17 #include "dbus/object_path.h"
86 const std::string object_path = url_.path().substr(first_slash); local
88 bus_->GetObjectProxy(service_name, dbus::ObjectPath(object_path));
  /external/chromium_org/chrome/browser/chromeos/policy/
device_status_collector_browsertest.cc 680 const char* object_path; member in struct:policy::FakeDeviceData
721 dev.object_path);
  /external/chromium_org/content/common/
sandbox_win.cc 528 base::string16 object_path = PrependWindowsSessionPath( local
530 policy->AddKernelObjectToClose(L"Section", object_path.data());
    [all...]

Completed in 570 milliseconds