Lines Matching refs:error_stream
421 ClangUserExpression::Parse (Stream &error_stream, in Parse() argument
436 error_stream.Printf("warning: %s\n", err.AsCString()); in Parse()
461 error_stream.PutCString ("error: couldn't construct expression body"); in Parse()
476 error_stream.PutCString ("error: invalid target\n"); in Parse()
510 … error_stream.PutCString ("error: current process state is unsuitable for expression parsing\n"); in Parse()
522 unsigned num_errors = parser.Parse (error_stream); in Parse()
526 error_stream.Printf ("error: %d errors parsing expression\n", num_errors); in Parse()
554 error_stream.Printf ("error: %s\n", error_cstr); in Parse()
556 error_stream.Printf ("error: expression can't be interpreted or run\n"); in Parse()
602 ClangUserExpression::PrepareToExecuteJITExpression (Stream &error_stream, in PrepareToExecuteJITExpression() argument
617 error_stream.Printf("The context has changed before we could JIT the expression!\n"); in PrepareToExecuteJITExpression()
637 error_stream.Printf("Need object pointer but don't know the language\n"); in PrepareToExecuteJITExpression()
647 …error_stream.Printf("warning: couldn't get required object pointer (substituting NULL): %s\n", obj… in PrepareToExecuteJITExpression()
659 …error_stream.Printf("warning: couldn't get cmd pointer (substituting NULL): %s\n", object_ptr_erro… in PrepareToExecuteJITExpression()
679 …error_stream.Printf("Couldn't allocate space for materialized struct: %s\n", alloc_error.AsCString… in PrepareToExecuteJITExpression()
702 … error_stream.Printf("Couldn't allocate space for the stack frame: %s\n", alloc_error.AsCString()); in PrepareToExecuteJITExpression()
713 error_stream.Printf("Couldn't materialize struct: %s\n", materialize_error.AsCString()); in PrepareToExecuteJITExpression()
721 ClangUserExpression::GetThreadPlanToExecuteJITExpression (Stream &error_stream, in GetThreadPlanToExecuteJITExpression() argument
729 PrepareToExecuteJITExpression (error_stream, exe_ctx, struct_address, object_ptr, cmd_ptr); in GetThreadPlanToExecuteJITExpression()
741 error_stream, in GetThreadPlanToExecuteJITExpression()
750 ClangUserExpression::FinalizeJITExecution (Stream &error_stream, in FinalizeJITExecution() argument
763 … error_stream.Printf ("Couldn't apply expression side effects : no dematerializer is present"); in FinalizeJITExecution()
773 …error_stream.Printf ("Couldn't apply expression side effects : %s\n", dematerialize_error.AsCStrin… in FinalizeJITExecution()
786 ClangUserExpression::Execute (Stream &error_stream, in Execute() argument
806 … if (!PrepareToExecuteJITExpression (error_stream, exe_ctx, struct_address, object_ptr, cmd_ptr)) in Execute()
808 … error_stream.Printf("Errored out in %s, couldn't PrepareToExecuteJITExpression", __FUNCTION__); in Execute()
822 error_stream.Printf("Supposed to interpret, but nothing is there"); in Execute()
853 … error_stream.Printf("Supposed to interpret, but failed: %s", interpreter_error.AsCString()); in Execute()
873 if (!call_plan_sp || !call_plan_sp->ValidatePlan (&error_stream)) in Execute()
894 … error_stream); in Execute()
913 error_stream.Printf ("Execution was interrupted, reason: %s.", error_desc); in Execute()
915 error_stream.Printf ("Execution was interrupted."); in Execute()
919 …error_stream.Printf ("\nThe process has been returned to the state before expression evaluation."); in Execute()
921 …error_stream.Printf ("\nThe process has been left at the point where it was interrupted, use \"thr… in Execute()
927 …error_stream.Printf ("Couldn't execute function; result was %s\n", Process::ExecutionResultAsCStri… in Execute()
932 …if (FinalizeJITExecution (error_stream, exe_ctx, result, function_stack_bottom, function_stack_to… in Execute()
943 error_stream.Printf("Expression can't be run, because there is no JIT compiled function"); in Execute()
1014 StreamString error_stream; in EvaluateWithError() local
1021 …if (!user_expression_sp->Parse (error_stream, exe_ctx, execution_policy, keep_expression_in_memory… in EvaluateWithError()
1023 if (error_stream.GetString().empty()) in EvaluateWithError()
1026 error.SetErrorString (error_stream.GetString().c_str()); in EvaluateWithError()
1038 if (error_stream.GetString().empty()) in EvaluateWithError()
1043 error_stream.GetString().clear(); in EvaluateWithError()
1048 execution_results = user_expression_sp->Execute (error_stream, in EvaluateWithError()
1062 if (error_stream.GetString().empty()) in EvaluateWithError()
1065 error.SetErrorString (error_stream.GetString().c_str()); in EvaluateWithError()