/external/libchrome/dbus/ |
object_path.cc | 13 bool ObjectPath::IsValid() const { 17 bool ObjectPath::operator<(const ObjectPath& that) const { 21 bool ObjectPath::operator==(const ObjectPath& that) const { 25 bool ObjectPath::operator!=(const ObjectPath& that) const { 29 void PrintTo(const ObjectPath& path, std::ostream* out) {
|
object_path.h | 15 // ObjectPath is a type used to distinguish D-Bus object paths from simple 19 class CHROME_DBUS_EXPORT ObjectPath { 28 ObjectPath() {} 29 explicit ObjectPath(const std::string& value) : value_(value) {} 37 // Permit sufficient comparison to allow an ObjectPath to be used as a 39 bool operator<(const ObjectPath&) const; 43 bool operator==(const ObjectPath&) const; 44 bool operator!=(const ObjectPath&) const; 51 CHROME_DBUS_EXPORT void PrintTo(const ObjectPath& path, std::ostream* out);
|
mock_exported_object.cc | 10 const ObjectPath& object_path)
|
object_manager.h | 43 // dbus::Property<dbus::ObjectPath> parent; 95 // Properties* GetProperties(const dbus::ObjectPath& object_path) { 158 const dbus::ObjectPath& object_path, 170 virtual void ObjectAdded(const ObjectPath& object_path, 182 virtual void ObjectRemoved(const ObjectPath& object_path, 189 const ObjectPath& object_path); 205 virtual std::vector<ObjectPath> GetObjects(); 209 virtual std::vector<ObjectPath> GetObjectsWithInterface( 215 virtual ObjectProxy* GetObjectProxy(const ObjectPath& object_path); 222 virtual PropertySet* GetProperties(const ObjectPath& object_path [all...] |
mock_bus.h | 24 const ObjectPath& object_path)); 27 const ObjectPath& object_path, 30 const ObjectPath& object_path)); 32 const ObjectPath&)); 61 MOCK_METHOD4(TryRegisterObjectPath, bool(const ObjectPath& object_path, 65 MOCK_METHOD1(UnregisterObjectPath, void(const ObjectPath& object_path));
|
mock_exported_object.h | 20 const ObjectPath& object_path);
|
bus.h | 119 // const ObjectPath& object_path, 258 const ObjectPath& object_path); 264 const ObjectPath& object_path, 292 const ObjectPath& object_path, 299 const ObjectPath& object_path, 317 virtual ExportedObject* GetExportedObject(const ObjectPath& object_path); 326 virtual void UnregisterExportedObject(const ObjectPath& object_path); 340 const ObjectPath& object_path); 356 const ObjectPath& object_path, 518 virtual bool TryRegisterObjectPath(const ObjectPath& object_path [all...] |
object_manager.cc | 33 const ObjectPath& object_path) 88 std::vector<ObjectPath> ObjectManager::GetObjects() { 89 std::vector<ObjectPath> object_paths; 98 std::vector<ObjectPath> ObjectManager::GetObjectsWithInterface( 100 std::vector<ObjectPath> object_paths; 115 ObjectProxy* ObjectManager::GetObjectProxy(const ObjectPath& object_path) { 124 PropertySet* ObjectManager::GetProperties(const ObjectPath& object_path, 295 const ObjectPath path = signal->GetPath(); 319 const dbus::ObjectPath object_path, 333 const dbus::ObjectPath object_path [all...] |
mock_object_proxy.cc | 11 const ObjectPath& object_path)
|
message.h | 99 bool SetPath(const ObjectPath& path); 111 ObjectPath GetPath(); 282 void AppendObjectPath(const ObjectPath& value); 332 void AppendArrayOfObjectPaths(const std::vector<ObjectPath>& object_paths); 356 void AppendVariantOfObjectPath(const ObjectPath& value); 404 bool PopObjectPath(ObjectPath* value); 452 bool PopArrayOfObjectPaths(std::vector<ObjectPath>* object_paths); 479 bool PopVariantOfObjectPath(ObjectPath* value);
|
object_proxy.h | 51 const ObjectPath& object_path, 213 const ObjectPath& object_path() const { return object_path_; } 336 ObjectPath object_path_;
|
property.h | 42 // dbus::Property<dbus::ObjectPath> parent; 65 // typedef std::map<dbus::ObjectPath, Object> ObjectMap; 68 // dbus::ObjectProxy* GetObjectProxy(const dbus::ObjectPath& object_path) { 72 // Properties* GetProperties(const dbus::ObjectPath& object_path) { 76 // Object GetObject(const dbus::ObjectPath& object_path) { 153 // void Client::PropertyChanged(const dbus::ObjectPath& object_path, 560 CHROME_DBUS_EXPORT bool Property<ObjectPath>::PopValueFromReader( 563 CHROME_DBUS_EXPORT void Property<ObjectPath>::AppendSetValueToWriter( 565 extern template class CHROME_DBUS_EXPORT Property<ObjectPath>; 576 CHROME_DBUS_EXPORT bool Property<std::vector<ObjectPath>>::PopValueFromReader [all...] |
exported_object.h | 40 ExportedObject(Bus* bus, const ObjectPath& object_path); 172 ObjectPath object_path_;
|
mock_object_proxy.h | 23 const ObjectPath& object_path);
|
/external/libbrillo/brillo/dbus/ |
exported_object_manager.h | 45 // void ClaimInterface(const dbus::ObjectPath& path, 50 // void ReleaseInterface(const dbus::ObjectPath& path, 83 std::map<dbus::ObjectPath, std::map<std::string, VariantDictionary>>; 88 const dbus::ObjectPath& path); 101 const dbus::ObjectPath& path, 106 virtual void ReleaseInterface(const dbus::ObjectPath& path, 124 std::map<dbus::ObjectPath, InterfaceProperties> registered_objects_; 127 DBusSignal<dbus::ObjectPath, std::map<std::string, VariantDictionary>>; 129 DBusSignal<dbus::ObjectPath, std::vector<std::string>>;
|
mock_exported_object_manager.h | 30 void(const dbus::ObjectPath& path, 34 void(const dbus::ObjectPath& path,
|
mock_dbus_object.h | 21 const dbus::ObjectPath& object_path)
|
dbus_param_writer_unittest.cc | 14 using dbus::ObjectPath; 34 DBusParamWriter::Append(&writer, ObjectPath{"/o"}); 39 ObjectPath path_value; 48 EXPECT_EQ(ObjectPath{"/o"}, path_value); 83 ObjectPath path_value_in{"/obj/path"}; 94 ObjectPath path_value; 103 EXPECT_EQ(ObjectPath{"/obj/path"}, path_value); 142 ObjectPath path_value_in{"/obj"}; 153 ObjectPath path_value; 162 EXPECT_EQ(ObjectPath{"/obj"}, path_value) [all...] |
exported_object_manager.cc | 19 const dbus::ObjectPath& path) 41 const dbus::ObjectPath& path, 59 const dbus::ObjectPath& path,
|
exported_object_manager_unittest.cc | 28 const dbus::ObjectPath kTestPath(std::string("/test/om_path")); 29 const dbus::ObjectPath kClaimedTestPath(std::string("/test/claimed_path")); 63 dbus::ObjectPath path; 85 dbus::ObjectPath path; 176 dbus::ObjectPath path;
|
data_serialization_unittest.cc | 18 using dbus::ObjectPath; 35 EXPECT_TRUE(IsTypeSupported<ObjectPath>::value); 92 EXPECT_EQ("o", GetDBusSignature<ObjectPath>()); 109 EXPECT_EQ("ao", GetDBusSignature<std::vector<ObjectPath>>()); 188 AppendValueToWriter(&writer, ObjectPath{"/object/path"}); 202 ObjectPath object_path_value; 230 EXPECT_EQ(ObjectPath{"/object/path"}, object_path_value); 274 AppendValueToWriterAsVariant(&writer, ObjectPath{"/obj/path"}); 291 ObjectPath object_path_value; 323 EXPECT_EQ(ObjectPath{"/obj/path"}, object_path_value) [all...] |
/external/libbrillo/brillo/daemons/ |
dbus_daemon.cc | 38 const dbus::ObjectPath& object_manager_path) 45 dbus::ObjectPath(object_manager_path.as_string())) {
|
dbus_daemon.h | 62 const dbus::ObjectPath& object_manager_path); 79 dbus::ObjectPath object_manager_path_;
|
/external/swiftshader/third_party/LLVM/lib/Object/ |
ObjectFile.cpp | 57 ObjectFile *ObjectFile::createObjectFile(StringRef ObjectPath) { 59 if (error_code ec = MemoryBuffer::getFile(ObjectPath, File))
|
/external/autotest/client/cros/tendo/n_faced_peerd/ |
object_manager.py | 62 self.InterfacesAdded(dbus.ObjectPath(path), interface2properties) 81 self.InterfacesRemoved(dbus.ObjectPath(path), 96 dbus_path = dbus.ObjectPath(path) 109 @param object_path: dbus.ObjectPath object. 120 @param object_path: dbus.ObjectPath object.
|