Home
last modified time | relevance | path

Searched refs:error_msg_ (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/wasm/
Dwasm-result.cc57 error_msg_ = std::move(error_msg); in error()
61 VPrintFToString(error_msg_, 0, format, args); in verror()
63 if (error_msg_.empty() == 0) error_msg_.assign("Error"); in verror()
73 PrintFToString(error_msg_, 0, "%s: ", context_); in Format()
74 context_len = error_msg_.size(); in Format()
76 VPrintFToString(error_msg_, context_len, format, args); in Format()
136 Vector<const char> msg_vec(error_msg_.data(), error_msg_.size()); in Reify()
145 error_msg_.clear(); in Reset()
152 error_msg_(other.error_msg_) { in ErrorThrower()
Dwasm-result.h34 error_msg_(std::move(other.error_msg_)) {} in ResultBase()
51 error_msg_.swap(that.error_msg_); in MoveErrorFrom()
52 that.error_msg_.clear(); in MoveErrorFrom()
55 bool ok() const { return error_msg_.empty(); } in ok()
59 const std::string& error_msg() const { return error_msg_; } in error_msg()
63 std::string error_msg_; variable
126 const char* error_msg() { return error_msg_.c_str(); } in error_msg()
150 std::string error_msg_; variable
Ddecoder.h199 error_msg_.assign(buffer.start(), len); in errorf()
225 TRACE("Result error: %s\n", error_msg_.c_str()); in toResult()
226 result.error(error_offset_, std::move(error_msg_)); in toResult()
240 error_msg_.clear();
247 bool ok() const { return error_msg_.empty(); } in ok()
273 std::string error_msg_; variable
Dfunction-body-decoder-impl.h1300 this->error_msg_.c_str()); in TraceFailed()
2450 TRACE(" !%s\n", this->error_msg_.c_str()); in onFirstError()
/external/tensorflow/tensorflow/core/kernels/
Dcontrol_flow_ops.cc654 OP_REQUIRES_OK(context, context->GetAttr("error_msg", &error_msg_)); in AbortOp()
661 LOG(FATAL) << "Abort_op intentional failure; " << error_msg_; in Compute()
663 LOG(WARNING) << "Exiting the process: " << error_msg_; in Compute()
669 string error_msg_; member in tensorflow::AbortOp
/external/webp/src/dec/
Dvp8_dec.c44 dec->error_msg_ = "OK"; in SetOk()
76 if (!dec->error_msg_) return "OK"; in VP8StatusMessage()
77 return dec->error_msg_; in VP8StatusMessage()
92 dec->error_msg_ = msg; in VP8SetError()
Dvp8i_dec.h185 const char* error_msg_; // set when status_ is not OK. member