Home | History | Annotate | Download | only in Expression

Lines Matching refs:errors

107 ClangFunction::CompileFunction (Stream &errors)
177 errors.Printf("Could not determine type of input value %lu.", i);
228 num_errors = m_parser->Parse (errors);
232 errors.Printf("no process - unable to inject function");
245 ClangFunction::WriteFunctionWrapper (ExecutionContext &exe_ctx, Stream &errors)
284 ClangFunction::WriteFunctionArguments (ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, Stream &errors)
286 return WriteFunctionArguments(exe_ctx, args_addr_ref, m_function_addr, m_arg_values, errors);
296 Stream &errors)
302 errors.Printf("Argument information was not correctly parsed, so the function cannot be called.");
348 errors.Printf ("Wrong number of arguments - was: %lu should be: %lu", num_args, m_arg_values.GetSize());
378 ClangFunction::InsertFunction (ExecutionContext &exe_ctx, lldb::addr_t &args_addr_ref, Stream &errors)
382 if (CompileFunction(errors) != 0)
384 if (!WriteFunctionWrapper(exe_ctx, errors))
386 if (!WriteFunctionArguments(exe_ctx, args_addr_ref, errors))
400 Stream &errors,
412 // FIXME: Use the errors Stream for better error reporting.
416 errors.Printf("Can't call a function without a valid thread.");
483 ClangFunction::ExecuteFunction(ExecutionContext &exe_ctx, Stream &errors, Value &results)
485 return ExecuteFunction (exe_ctx, errors, 1000, true, results);
489 ClangFunction::ExecuteFunction(ExecutionContext &exe_ctx, Stream &errors, bool stop_others, Value &results)
494 return ExecuteFunction (exe_ctx, NULL, errors, stop_others, 0UL, try_all_threads,
501 Stream &errors,
509 return ExecuteFunction (exe_ctx, NULL, errors, stop_others, timeout_usec,
524 Stream &errors,
535 errors,
554 errors);
578 Stream &errors,
596 if (CompileFunction(errors) != 0)
601 if (!InsertFunction(exe_ctx, args_addr, errors))
613 errors);