Lines Matching +full:line +full:- +full:name

25 .\" $Id: addr2line.1 3642 2018-10-14 14:24:28Z jkoshy $
30 .Sh NAME
32 .Nd translate program addresses to source file names and line numbers
35 .Op Fl a | Fl -addresses
36 .Op Fl b Ar target | Fl -target Ns = Ns Ar target
37 .Op Fl e Ar pathname | Fl -exe Ns = Ns Ar pathname
38 .Op Fl f | Fl -functions
39 .Op Fl i | Fl -inlines
40 .Op Fl j Ar sectionname | Fl -section Ns = Ns Ar sectionname
41 .Op Fl p | Fl -pretty-print
42 .Op Fl s | Fl -basename
43 .Op Fl C | Fl -demangle
44 .Op Fl H | Fl -help
45 .Op Fl V | Fl -version
50 utility translates program addresses specified by the command line
53 to their corresponding source file names and line numbers.
74 .Bl -tag -width indent
75 .It Fl a | Fl -addresses
76 Display the address prior to the line number information.
77 .It Fl b Ar target | Fl -target Ns = Ns Ar target
82 .It Fl e Ar pathname | Fl -exe Ns = Ns Ar pathname
90 .It Fl f | Fl -functions
91 Display function names in addition to file and line number information.
92 .It Fl i | Fl -inlines
93 If the address specified belongs to an inlined function, also display the line
94 number information for its caller, recursively until the first non-inlined
96 .It Fl j Ar sectionname | Fl -section Ns = Ns Ar sectionname
101 .It Fl p | -pretty-print
102 Display the line number information on one line, in human readable manner.
103 .It Fl s | -basename
104 Display only the base name for each file name.
105 .It Fl C | Fl -demangle
107 .It Fl H | Fl -help
109 .It Fl V | Fl -version
117 will print the file name and line number for each address specified
118 on a separate line.
124 will print a line containing the name of the function corresponding
127 followed by a line with the file name and line number.
133 will print line number information and function name on one line in
143 utility prints the file name and line number using the format
146 If a file or function name could not be determined,
149 If the line number could not be determined,
155 to a source file name and line number use:
161 .D1 "% addr2line -e helloworld 080483c4"
168 To print the function name corresponding to an address in addition to
169 its source file and line number use:
170 .D1 "% addr2line -f 080483c4"
172 .Ex -std