Searched defs:error_stream (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/components/feedback/
H A Dfeedback_uploader_delegate.cc37 std::stringstream error_stream; local
40 error_stream << "Success";
45 error_stream << "No connection to server.";
48 error_stream << "Client error: HTTP response code " << response_code;
50 error_stream << "Server error: HTTP response code " << response_code;
52 error_stream << "Unknown error: HTTP response code " << response_code;
58 << source->GetURL() << ") status: " << error_stream.str();
/external/lldb/source/Expression/
H A DClangUtilityFunction.cpp59 /// @param[in] error_stream
69 ClangUtilityFunction::Install (Stream &error_stream, argument
74 error_stream.PutCString("error: already installed\n");
86 error_stream.PutCString ("error: invalid target\n");
94 error_stream.PutCString ("error: invalid process\n");
108 error_stream.PutCString ("error: current process state is unsuitable for expression parsing\n");
114 unsigned num_errors = parser.Parse (error_stream);
118 error_stream.Printf ("error: %d errors parsing expression\n", num_errors);
162 error_stream.Printf ("error: %s\n", error_cstr);
164 error_stream
[all...]
H A DClangExpressionParser.cpp511 Stream *error_stream = NULL; local
514 error_stream = &target->GetDebugger().GetErrorStream();
519 error_stream,
H A DClangUserExpression.cpp421 ClangUserExpression::Parse (Stream &error_stream, argument
436 error_stream.Printf("warning: %s\n", err.AsCString());
461 error_stream.PutCString ("error: couldn't construct expression body");
476 error_stream.PutCString ("error: invalid target\n");
510 error_stream.PutCString ("error: current process state is unsuitable for expression parsing\n");
522 unsigned num_errors = parser.Parse (error_stream);
526 error_stream.Printf ("error: %d errors parsing expression\n", num_errors);
554 error_stream.Printf ("error: %s\n", error_cstr);
556 error_stream.Printf ("error: expression can't be interpreted or run\n");
602 ClangUserExpression::PrepareToExecuteJITExpression (Stream &error_stream, argument
721 GetThreadPlanToExecuteJITExpression(Stream &error_stream, ExecutionContext &exe_ctx) argument
750 FinalizeJITExecution(Stream &error_stream, ExecutionContext &exe_ctx, lldb::ClangExpressionVariableSP &result, lldb::addr_t function_stack_bottom, lldb::addr_t function_stack_top) argument
786 Execute(Stream &error_stream, ExecutionContext &exe_ctx, bool unwind_on_error, bool ignore_breakpoints, ClangUserExpression::ClangUserExpressionSP &shared_ptr_to_me, lldb::ClangExpressionVariableSP &result, bool run_others, uint32_t timeout_usec) argument
1014 StreamString error_stream; local
[all...]
H A DIRDynamicChecks.cpp51 DynamicCheckerFunctions::Install(Stream &error_stream, argument
56 if (!m_valid_pointer_check->Install(error_stream, exe_ctx))
69 if (!m_objc_object_check->Install(error_stream, exe_ctx))
H A DIRForTarget.cpp98 lldb_private::Stream *error_stream,
108 m_error_stream(error_stream),
95 IRForTarget(lldb_private::ClangExpressionDeclMap *decl_map, bool resolve_vars, lldb_private::IRExecutionUnit &execution_unit, lldb_private::Stream *error_stream, const char *func_name) argument
/external/chromium_org/tools/relocation_packer/src/
H A Ddebug.h55 std::ostream* error_stream) {
57 error_stream_ = error_stream;
54 SetStreams(std::ostream* info_stream, std::ostream* error_stream) argument
/external/lldb/source/Commands/
H A DCommandObjectExpression.cpp295 StreamSP error_stream = reader.GetDebugger().GetAsyncErrorStream(); local
298 error_stream.get());
300 error_stream->Flush();
313 Stream *error_stream,
375 error_stream->PutCString("(void)\n");
389 error_stream->PutCString ("error: ");
390 error_stream->Write(error_cstr, error_cstr_len);
392 error_stream->EOL();
396 error_stream->PutCString ("error: unknown error\n");
407 error_stream
309 EvaluateExpression( const char *expr, Stream *output_stream, Stream *error_stream, CommandReturnObject *result ) argument
[all...]
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp135 StreamString error_stream; local
138 func.InsertFunction(exe_ctx, wrapper_struct_addr, error_stream);
147 error_stream,
/external/chromium_org/components/nacl/renderer/
H A Djson_manifest.cc124 std::stringstream error_stream; local
125 error_stream << parent_key << " property '" << container_key
128 *error_string = error_stream.str();
148 std::stringstream error_stream; local
149 error_stream << parent_key << " property '" << container_key
152 *error_string = error_stream.str();
182 std::stringstream error_stream; local
183 error_stream << "PNaCl-like NMF with application/x-nacl mimetype instead "
185 *error_string = error_stream.str();
202 std::stringstream error_stream; local
211 std::stringstream error_stream; local
[all...]
/external/lldb/source/Core/
H A DDebugger.cpp2627 Debugger::EnableLog (const char *channel, const char **categories, const char *log_file, uint32_t log_options, Stream &error_stream) argument
2660 log_callbacks.enable (log_stream_sp, log_options, categories, &error_stream);
2668 if (log_channel_sp->Enable (log_stream_sp, log_options, &error_stream, categories))
2674 error_stream.Printf ("Invalid log channel '%s'.\n", channel);
2680 error_stream.Printf ("Invalid log channel '%s'.\n", channel);

Completed in 172 milliseconds