Searched defs:Addr2linePipe (Results  1 – 2 of 2) sorted by relevance
| /art/runtime/ | 
| D | native_stack_dump.cc | 96 struct Addr2linePipe {  struct97   Addr2linePipe(int in_fd, int out_fd, const std::string& file_name, pid_t pid)  in Addr2linePipe()  argument
 100   ~Addr2linePipe() {  in ~Addr2linePipe()
 104   File in;      // The file descriptor that is connected to the output of addr2line.
 105   File out;     // The file descriptor that is connected to the input of addr2line.
 107   const std::string file;     // The file addr2line is working on, so that we know when to close
 109   const pid_t child_pid;      // The pid of the child, which we should kill when we're done.
 110   bool odd;                   // Print state for indentation of lines.
 
 | 
| /art/tools/signal_dumper/ | 
| D | signal_dumper.cc | 132 struct Addr2linePipe {  struct133   Addr2linePipe(int in_fd, int out_fd, const std::string& file_name, pid_t pid)  in Addr2linePipe()  argument
 136   ~Addr2linePipe() {  in ~Addr2linePipe()
 140   unique_fd in;      // The file descriptor that is connected to the output of addr2line.
 141   unique_fd out;     // The file descriptor that is connected to the input of addr2line.
 143   const std::string file;     // The file addr2line is working on, so that we know when to close
 145   const pid_t child_pid;      // The pid of the child, which we should kill when we're done.
 146   bool odd;                   // Print state for indentation of lines.
 
 |