Home | History | Annotate | Download | only in notifier

Lines Matching refs:ss

36   std::stringstream ss;
37 ss << "{ ";
38 ss << "name: " << object_id.name() << ", ";
39 ss << "source: " << object_id.source();
40 ss << " }";
41 return ss.str();
54 std::stringstream ss;
55 ss << "{ ";
56 ss << "code: " << status.code() << ", ";
57 ss << "description: " << status.description();
58 ss << " }";
59 return ss.str();
64 std::stringstream ss;
65 ss << "{ ";
66 ss << "object_id: " << ObjectIdToString(invalidation.object_id()) << ", ";
67 ss << "version: " << invalidation.version();
68 ss << " }";
69 return ss.str();
74 std::stringstream ss;
75 ss << "{ ";
76 ss << "type: " << update.type() << ", ";
77 ss << "object_id: " << ObjectIdPToString(update.object_id()) << ", ";
78 ss << "version: " << update.version() << ", ";
79 ss << "sequence_number: " << update.sequence_number();
80 ss << " }";
81 return ss.str();
86 std::stringstream ss;
87 ss << "{ ";
88 ss << "operation: "
90 ss << "status: " << StatusToString(update_result.status());
91 ss << " }";
92 return ss.str();