Lines Matching defs:error

691   // Compilation error, atomically updated. This flag can be updated and read
1073 WasmError error) {
1077 func->func_index, error.message().c_str(),
1078 error.offset());
1083 truncated_name.start(), error.message().c_str(),
1084 error.offset());
1110 DCHECK(!thrower->error());
1131 SetCompileError(thrower, wire_bytes, func, module, result.error());
1203 func, module, decode_result.error());
1822 // On error: Return and leave the module in an unexecutable state.
1823 if (thrower->error()) return;
1848 CHECK(thrower->error());
1864 CHECK(thrower->error());
1948 bool cache_hit = !engine->UpdateNativeModuleCache(thrower->error(),
1950 if (thrower->error()) return {};
2080 // Finishes the AsyncCompileJob with an error.
2258 void AsyncCompileJob::DecodeFailed(const WasmError& error) {
2260 thrower.CompileFailed(error);
2274 DCHECK(thrower.error());
2530 result = ModuleResult(function_result.error());
2540 job->DoSync<DecodeFail>(std::move(result).error());
2563 explicit DecodeFail(WasmError error) : error_(std::move(error)) {}
2722 const WasmError& error) {
2723 DCHECK(error.has_error());
2745 AsyncCompileJob::kUseExistingForegroundTask>(error);
2752 job_->DoSync<AsyncCompileJob::DecodeFail>(error);
2765 FinishAsyncCompileJobWithError(decoder_.FinishDecoding(false).error());
2792 FinishAsyncCompileJobWithError(decoder_.FinishDecoding(false).error());
2806 FinishAsyncCompileJobWithError(decoder_.FinishDecoding(false).error());
2824 FinishAsyncCompileJobWithError(decoder_.FinishDecoding(false).error());
2892 FinishAsyncCompileJobWithError(result.error());
2928 FinishAsyncCompileJobWithError(result.error());
2997 // Report an error detected in the StreamingDecoder.
2998 void AsyncStreamingProcessor::OnError(const WasmError& error) {
2999 TRACE_STREAMING("Stream error...\n");
3000 FinishAsyncCompileJobWithError(error);