Lines Matching refs:node
35 node = head['next'].dereference()
36 while node.address != head.address:
37 yield node.address
38 node = node['next'].dereference()
42 for node in list_for_each(head):
43 yield utils.container_of(node, gdbtype, member)
53 node = head['first'].dereference()
54 while node.address:
55 yield node.address
56 node = node['next'].dereference()
60 for node in hlist_for_each(head):
61 yield utils.container_of(node, gdbtype, member)