Home | History | Annotate | Download | only in tools

Lines Matching refs:stack

19 # the cycle of mutexes and the stack traces where each mutex was acquired, and
208 stack = set([thisnode])
209 while stack:
210 node = stack.pop()
213 stack.update(B[node])
234 stack = [(startnode, list(subG.neighbors(startnode)))]
235 while stack:
236 thisnode, nbrs = stack[-1]
244 stack.append((nextnode, list(subG.neighbors(nextnode))))
256 stack.pop()
295 [ stack trace ]
298 [ stack trace ]
302 [ stack trace ]
362 'Could not find stack trace where Thread %d was created' %
501 '''Closure that prints the symbolized stack trace.'''