Lines Matching refs:string
8 #include <string>
76 STRING = DBUS_TYPE_STRING,
89 // Returns the type of the message as string like "MESSAGE_METHOD_CALL"
91 std::string GetMessageTypeAsString();
96 bool SetDestination(const std::string& destination);
98 bool SetInterface(const std::string& interface);
99 bool SetMember(const std::string& member);
100 bool SetErrorName(const std::string& error_name);
101 bool SetSender(const std::string& sender);
107 // If not set, an empty string is returned.
108 std::string GetDestination();
110 std::string GetInterface();
111 std::string GetMember();
112 std::string GetErrorName();
113 std::string GetSender();
114 std::string GetSignature();
119 // Returns the string representation of this message. Useful for
122 std::string ToString();
134 std::string ToStringInternal(const std::string& indent,
154 MethodCall(const std::string& interface_name,
155 const std::string& method_name);
183 Signal(const std::string& interface_name,
184 const std::string& method_name);
238 const std::string& error_name,
239 const std::string& error_message);
282 void AppendString(const std::string& value);
298 void OpenArray(const std::string& signature, MessageWriter* sub_writer);
300 void OpenVariant(const std::string& signature, MessageWriter* sub_writer);
316 void AppendArrayOfStrings(const std::vector<std::string>& strings);
344 void AppendVariantOfString(const std::string& value);
392 bool PopString(std::string* value);
423 bool PopArrayOfStrings(std::vector<std::string>* strings);
458 bool PopVariantOfString(std::string* value);
467 // An empty string will be returned if the iterator points to the end of
469 std::string GetDataSignature();