net/http.http2priorityNode.kids (field)

14 uses

	net/http (current package)
		h2_bundle.go#L9952: 	kids       *http2priorityNode // start of the kids list
		h2_bundle.go#L9966: 			parent.kids = n.next
		h2_bundle.go#L9982: 		n.next = parent.kids
		h2_bundle.go#L9987: 		parent.kids = n
		h2_bundle.go#L10008: 	if n.kids == nil {
		h2_bundle.go#L10021: 	w := n.kids.weight
		h2_bundle.go#L10023: 	for k := n.kids.next; k != nil; k = k.next {
		h2_bundle.go#L10030: 		for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L10041: 	for n.kids != nil {
		h2_bundle.go#L10042: 		*tmp = append(*tmp, n.kids)
		h2_bundle.go#L10043: 		n.kids.setParent(nil)
		h2_bundle.go#L10049: 	for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L10219: 		k := parent.kids
		h2_bundle.go#L10296: 	for k := n.kids; k != nil; k = k.next {