Lines Matching refs:callstack
39 class CallStack(object):
87 # position of a frame within a callstack. The reason for not extracting
90 current_stack = CallStack(-1)
97 # If this callstack is crash stack, update the boolean.
100 current_stack = CallStack(stack_priority)
102 # If this is from freed or allocation, add the callstack we have
108 current_stack = CallStack(stack_priority)
122 # Add the current callstack only if there are frames in it.
127 """Check if this line is the start of the new callstack.
137 True if the line is the start of new callstack, False otherwise. If True,
146 # If the line matches the callstack start pattern.
160 # Create patterns for each callstack type.
208 # All other callstack gets priority 1.
311 """Returns the callstack with the highest priority.
317 The highest priority callstack in the stacktrace.
320 key=lambda callstack: callstack.priority)