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

  /prebuilts/go/darwin-x86/src/cmd/addr2line/
main.go 5 // Addr2line is a minimal simulation of the GNU addr2line tool,
9 // go tool addr2line binary
11 // Addr2line reads hexadecimal addresses, one per line and with optional 0x prefix,
12 // from standard input. For each input address, addr2line prints two output lines,
33 fmt.Fprintf(w, "usage: addr2line binary\n")
46 log.SetPrefix("addr2line: ")
48 // pprof expects this behavior when checking for addr2line
77 // This was an extension in the old C version of 'go tool addr2line'
  /prebuilts/go/linux-x86/src/cmd/addr2line/
main.go 5 // Addr2line is a minimal simulation of the GNU addr2line tool,
9 // go tool addr2line binary
11 // Addr2line reads hexadecimal addresses, one per line and with optional 0x prefix,
12 // from standard input. For each input address, addr2line prints two output lines,
33 fmt.Fprintf(w, "usage: addr2line binary\n")
46 log.SetPrefix("addr2line: ")
48 // pprof expects this behavior when checking for addr2line
77 // This was an extension in the old C version of 'go tool addr2line'
  /art/runtime/
native_stack_dump.cc 72 // The state of an open pipe to addr2line. In "server" mode, addr2line takes input on stdin
82 File in; // The file descriptor that is connected to the output of addr2line.
83 File out; // The file descriptor that is connected to the input of addr2line.
85 const std::string file; // The file addr2line is working on, so that we know when to close
213 static void Addr2line(const std::string& map_src,
232 "/usr/bin/addr2line",
309 // Check whether we have and should use addr2line.
314 use_addr2line = (gAborting > 0) && RunCommand("addr2line -h");
362 Addr2line(it->map.name, it->pc - it->map.start, os, prefix, &addr2line_state)
    [all...]

Completed in 113 milliseconds