Lines Matching full:stacktrace
75 in the stacktrace
76 First call returns the arguments recorded for the first call in the stacktrace
81 was present in stacktrace")
99 The initial run of the program which captures the stacktrace in init.log file
117 def get_stacktrace_functions(stacktrace): argument
119 Gets the functions from ASAN/HWASAN's stacktrace
121 stacktrace: (string) ASAN/HWASAN's stacktrace output
123 functions: (list) functions in the stacktrace
125 stacktrace_start = stacktrace[stacktrace.index('==ERROR: '):].split("\n")
128 # skip the first two lines of stacktrace
141 #remove last function from stacktrace because it would be _start
183 def parse_stacktrace(stacktrace): argument
185 Parses the ASAN/HWASAN's stacktrace to a list of functions, their addresses
188 stacktrace: (string) ASAN/HWASAN's stacktrace output
192 stacktrace_functions = get_stacktrace_functions(stacktrace)[:-1]
219 parsed_functions: (list) functions in the stacktrace (in the same order) as
253 parsed_functions: A list of functions in the stacktrace (in the same order)