Lines Matching refs:self
26 def __init__(self): argument
27 super(LxClkSummary, self).__init__("lx-clk-summary", gdb.COMMAND_DATA)
29 def show_subtree(self, clk, level): argument
41 self.show_subtree(child, level + 1)
43 def invoke(self, arg, from_tty): argument
50 self.show_subtree(clk, 0)
52 self.show_subtree(clk, 0)
61 def __init__(self): argument
62 super(LxClkCoreLookup, self).__init__("lx_clk_core_lookup")
64 def lookup_hlist(self, hlist_head, name): argument
68 result = self.lookup_hlist(child['children'], name)
72 def invoke(self, name): argument
74 return (self.lookup_hlist(gdb.parse_and_eval("clk_root_list"), name) or
75 self.lookup_hlist(gdb.parse_and_eval("clk_orphan_list"), name))