Lines Matching refs:hook
945 for hook in lldb.runhooks:
946 self.runCmd(hook)
950 for hook in lldb.runHooks:
951 child.sendline(hook)
1052 def addTearDownHook(self, hook): argument
1058 if callable(hook):
1060 print >> sbuf, "Adding tearDown hook:", getsource_if_available(hook)
1061 self.hooks.append(hook)
1089 for hook in reversed(self.hooks):
1091 print >> sbuf, "Executing tearDown hook:", getsource_if_available(hook)
1092 hook()