HomeSort by relevance Sort by last modified time
    Searched refs:DBusType (Results 1 - 4 of 4) sorted by null

  /external/libbrillo/brillo/dbus/
dbus_param_writer.h 34 DBusType<ParamType>::Write(writer, param);
67 DBusType<ParamType>::Write(writer, *param);
data_serialization.h 45 // CustomType. As well as a template specialization of DBusType<> for the same
80 // Base class for DBusType<T> for T not supported by D-Bus. This used to
84 // Generic definition of DBusType<T> which will be specialized for particular
89 // See DBusType specialization for google::protobuf::MessageLite below for more
92 struct DBusType : public Unsupported {};
108 // For a single type T, check if DBusType<T> derives from Unsupported.
114 !std::is_base_of<Unsupported, DBusType<T>>::value> {};
144 return DBusType<T>::GetSignature();
184 // DBusType<T> for various C++ types that can be serialized over D-Bus.
193 struct DBusType<bool>
    [all...]
dbus_param_reader.h 94 if (!DBusType<ParamValueType>::Read(reader, &current_param)) {
data_serialization_unittest.cc 688 // Specialize DBusType<T> for "Person" structure.
690 struct DBusType<Person> {

Completed in 566 milliseconds