Lines Matching refs:clk
29 def show_subtree(self, clk, level): argument
33 clk['name'].string(),
34 clk['enable_count'],
35 clk['prepare_count'],
36 clk['protect_count'],
37 clk['rate'],
38 '(c)' if clk['flags'] & constants.LX_CLK_GET_RATE_NOCACHE else ' '))
40 for child in clk_core_for_each_child(clk['children']):
49 for clk in clk_core_for_each_child(gdb.parse_and_eval("clk_root_list")):
50 self.show_subtree(clk, 0)
51 for clk in clk_core_for_each_child(gdb.parse_and_eval("clk_orphan_list")):
52 self.show_subtree(clk, 0)