HomeSort by relevance Sort by last modified time
    Searched refs:stack_trace_file_ (Results 1 - 4 of 4) sorted by null

  /art/runtime/
signal_catcher.cc 63 : stack_trace_file_(stack_trace_file),
98 if (stack_trace_file_.empty()) {
104 int fd = open(stack_trace_file_.c_str(), O_APPEND | O_CREAT | O_WRONLY, 0666);
106 PLOG(ERROR) << "Unable to open stack trace file '" << stack_trace_file_ << "'";
109 UniquePtr<File> file(new File(fd, stack_trace_file_));
111 PLOG(ERROR) << "Failed to write stack traces to '" << stack_trace_file_ << "'";
113 LOG(INFO) << "Wrote stack traces to '" << stack_trace_file_ << "'";
signal_catcher.h 52 std::string stack_trace_file_; member in class:art::SignalCatcher
runtime.h 117 std::string stack_trace_file_; member in class:art::Runtime::ParsedOptions
463 std::string stack_trace_file_; member in class:art::Runtime
runtime.cc 575 parsed->stack_trace_file_ = option.substr(strlen("-Xstacktracefile:"));
806 signal_catcher_ = new SignalCatcher(stack_trace_file_);
866 stack_trace_file_ = options->stack_trace_file_;
    [all...]

Completed in 55 milliseconds