Lines Matching refs:Status
67 class PROTOBUF_EXPORT Status {
70 Status();
74 // ignored and a Status object identical to Status::OK is
76 Status(error::Code error_code, StringPiece error_message);
77 Status(const Status&);
78 Status& operator=(const Status& x);
79 ~Status() {}
81 // Some pre-defined Status objects
82 static const Status OK; // Identical to 0-arg constructor
83 static const Status CANCELLED;
84 static const Status UNKNOWN;
103 bool operator==(const Status& x) const;
104 bool operator!=(const Status& x) const {
117 PROTOBUF_EXPORT std::ostream& operator<<(std::ostream& os, const Status& x);