Home | History | Annotate | Download | only in chromeos-dbus-bindings

Lines Matching refs:Method

23 const char XmlInterfaceParser::kMethodTag[] = "method";
41 "org.chromium.DBus.Method.Const";
45 "org.chromium.DBus.Method.IncludeDBusMessage";
47 const char XmlInterfaceParser::kMethodKind[] = "org.chromium.DBus.Method.Kind";
117 std::vector<Interface::Method>{},
126 Interface::Method(GetValidatedElementName(attributes, element_path_)));
155 // Parse method annotations...
156 Interface::Method& method = interfaces_.back().methods.back();
159 method.is_const = (value == kTrue);
162 method.include_dbus_message = (value == kTrue);
165 method.kind = Interface::Method::Kind::kAsync;
168 method.kind = Interface::Method::Kind::kSimple;
170 method.kind = Interface::Method::Kind::kNormal;
172 method.kind = Interface::Method::Kind::kAsync;
174 method.kind = Interface::Method::Kind::kRaw;
176 LOG(FATAL) << "Invalid method kind: " << value;
232 LOG(FATAL) << "Unknown method argument direction " << argument_direction;