HomeSort by relevance Sort by last modified time
    Searched full:object_path (Results 51 - 75 of 164) sorted by null

1 23 4 5 6 7

  /external/chromium_org/chromeos/dbus/
fake_nfc_tag_client.cc 8 #include "dbus/object_path.h"
59 FakeNfcTagClient::GetProperties(const dbus::ObjectPath& object_path) {
64 const dbus::ObjectPath& object_path,
fake_introspectable_client.h 23 const dbus::ObjectPath& object_path,
fake_nfc_adapter_client.h 43 const dbus::ObjectPath& object_path) OVERRIDE;
45 const dbus::ObjectPath& object_path,
50 const dbus::ObjectPath& object_path,
64 void OnPropertyChanged(const dbus::ObjectPath& object_path,
fake_bluetooth_profile_service_provider.h 14 #include "dbus/object_path.h"
24 FakeBluetoothProfileServiceProvider(const dbus::ObjectPath& object_path,
fake_nfc_device_client.h 41 const dbus::ObjectPath& object_path) OVERRIDE;
43 const dbus::ObjectPath& object_path,
fake_nfc_record_client.h 10 #include "dbus/object_path.h"
41 const dbus::ObjectPath& object_path) OVERRIDE;
fake_nfc_tag_client.h 41 const dbus::ObjectPath& object_path) OVERRIDE;
43 const dbus::ObjectPath& object_path,
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));
fake_bluetooth_agent_service_provider.cc 9 #include "dbus/object_path.h"
14 const dbus::ObjectPath& object_path,
16 : object_path_(object_path),
fake_sms_client.h 23 const dbus::ObjectPath& object_path,
fake_bluetooth_agent_service_provider.h 13 #include "dbus/object_path.h"
26 FakeBluetoothAgentServiceProvider(const dbus::ObjectPath& 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());
bluetooth_profile_service_provider.cc 18 #include "dbus/object_path.h"
28 const dbus::ObjectPath& object_path,
33 object_path_(object_path),
253 const dbus::ObjectPath& object_path,
256 return new BluetoothProfileServiceProviderImpl(bus, object_path, delegate);
258 return new FakeBluetoothProfileServiceProvider(object_path, delegate);
sms_client.cc 41 const dbus::ObjectPath& object_path,
43 dbus::ObjectProxy *proxy = bus_->GetObjectProxy(service_name, object_path);
fake_bluetooth_agent_manager_client.h 13 #include "dbus/object_path.h"
fake_nfc_record_client.cc 58 FakeNfcRecordClient::GetProperties(const dbus::ObjectPath& object_path) {
mock_shill_profile_client.h 11 #include "dbus/object_path.h"
  /external/chromium_org/dbus/
object_manager.h 12 #include "dbus/object_path.h"
87 // object_path));
91 // Properties* GetProperties(const dbus::ObjectPath& object_path) {
93 // object_manager_->GetProperties(object_path, kInterface));
110 // object_proxy = object_manager_->GetObjectProxy(object_path);
145 // D-Bus object identified by |object_path| and accessibile through
154 const dbus::ObjectPath& object_path,
158 // object has been added with the path |object_path|. The D-Bus interface
166 virtual void ObjectAdded(const ObjectPath& object_path,
170 // object with the path |object_path| has been removed. Ths D-Bus interfac
    [all...]
mock_object_proxy.h 11 #include "dbus/object_path.h"
22 const ObjectPath& object_path);
object_path.cc 5 #include "dbus/object_path.h"
bus.cc 19 #include "dbus/object_path.h"
224 const ObjectPath& object_path) {
225 return GetObjectProxyWithOptions(service_name, object_path,
230 const ObjectPath& object_path,
235 const ObjectProxyTable::key_type key(service_name + object_path.value(),
243 new ObjectProxy(this, service_name, object_path, options);
250 const ObjectPath& object_path,
252 return RemoveObjectProxyWithOptions(service_name, object_path,
258 const ObjectPath& object_path,
264 const ObjectProxyTable::key_type key(service_name + object_path.value()
    [all...]
object_manager_unittest.cc 16 #include "dbus/object_path.h"
52 const ObjectPath& object_path,
57 base::Unretained(this), object_path));
117 virtual void ObjectAdded(const ObjectPath& object_path,
119 added_objects_.push_back(std::make_pair(object_path, interface_name));
124 virtual void ObjectRemoved(const ObjectPath& object_path,
126 removed_objects_.push_back(std::make_pair(object_path, interface_name));
131 void OnPropertyChanged(const ObjectPath& object_path,
162 void PerformAction(const std::string& action, const ObjectPath& object_path) {
170 writer.AppendObjectPath(object_path);
    [all...]
test_service.cc 14 #include "dbus/object_path.h"
433 ObjectPath object_path; local
434 if (!reader.PopString(&action) || !reader.PopObjectPath(&object_path)) {
440 AddObject(object_path);
442 RemoveObject(object_path);
544 void TestService::AddObject(const ObjectPath& object_path) {
549 object_path));
552 void TestService::AddObjectInternal(const ObjectPath& object_path) {
555 writer.AppendObjectPath(object_path);
570 void TestService::RemoveObject(const ObjectPath& object_path) {
    [all...]
bus.h 21 #include "dbus/object_path.h"
86 // bus.GetObjectProxy(service_name, object_path);
121 // const ObjectPath& object_path,
128 // bus.GetExportedObject(service_name, object_path);
262 // |object_path| looks like "/org/freedesktop/NetworkManager/Devices/0".
266 const ObjectPath& object_path);
272 const ObjectPath& object_path,
289 // |object_path| looks like "/org/freedesktop/NetworkManager/Devices/0".
294 // |service_name| and |object_path| to remove, and calls |callback| when it
300 const ObjectPath& object_path,
    [all...]
dbus.gyp 38 'object_path.cc',
39 'object_path.h',

Completed in 971 milliseconds

1 23 4 5 6 7