Home
last modified time | relevance | path

Searched refs:stack_trace_file_ (Results 1 – 4 of 4) sorted by relevance

/art/runtime/
Dsignal_catcher.cc68 : stack_trace_file_(stack_trace_file), in SignalCatcher()
103 if (stack_trace_file_.empty()) { in Output()
109 int fd = open(stack_trace_file_.c_str(), O_APPEND | O_CREAT | O_WRONLY, 0666); in Output()
111 PLOG(ERROR) << "Unable to open stack trace file '" << stack_trace_file_ << "'"; in Output()
114 std::unique_ptr<File> file(new File(fd, stack_trace_file_, true)); in Output()
122 LOG(INFO) << "Wrote stack traces to '" << stack_trace_file_ << "'"; in Output()
124 PLOG(ERROR) << "Failed to write stack traces to '" << stack_trace_file_ << "'"; in Output()
Dsignal_catcher.h52 std::string stack_trace_file_; variable
Druntime.h746 std::string stack_trace_file_; variable
Druntime.cc774 signal_catcher_ = new SignalCatcher(stack_trace_file_); in StartSignalCatcher()
974 stack_trace_file_ = runtime_options.ReleaseOrDefault(Opt::StackTraceFile); in Init()