Lines Matching refs:RTCError
103 class RTC_EXPORT RTCError {
108 RTCError() {} in RTCError() function
109 explicit RTCError(RTCErrorType type) : type_(type) {} in RTCError() function
111 RTCError(RTCErrorType type, std::string message) in RTCError() function
117 RTCError(const RTCError& other) = default;
118 RTCError(RTCError&&) = default;
119 RTCError& operator=(const RTCError& other) = default;
120 RTCError& operator=(RTCError&&) = default;
125 static RTCError OK();
185 return webrtc::RTCError(type, message); \
246 RTCErrorOr(RTCError&& error) : error_(std::move(error)) { // NOLINT in RTCErrorOr()
293 const RTCError& error() const { return error_; } in error()
298 RTCError MoveError() { return std::move(error_); } in MoveError()
325 RTCError error_;