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
48 self.show_subtree(clk, 0)
50 self.show_subtree(clk, 0)
59 def __init__(self): argument
60 super(LxClkCoreLookup, self).__init__("lx_clk_core_lookup")
62 def lookup_hlist(self, hlist_head, name): argument
66 result = self.lookup_hlist(child['children'], name)
70 def invoke(self, name): argument
72 return (self.lookup_hlist(gdb.parse_and_eval("clk_root_list"), name) or
73 self.lookup_hlist(gdb.parse_and_eval("clk_orphan_list"), name))