Lines Matching defs:http2priorityNode
11163 type http2priorityNode struct { struct
11164 q http2writeQueue // queue of pending frames to write
11165 id uint32 // id of the stream, or 0 for the root of the tree
11166 weight uint8 // the actual weight is weight+1, so the value is in [1,256]
11167 state http2priorityNodeState // open | closed | idle
11168 bytes int64 // number of bytes written by this node, or 0 if closed
11169 subtreeBytes int64 // sum(node.bytes) of all nodes in this subtree
11172 parent *http2priorityNode
11173 kids *http2priorityNode // start of the kids list
11174 prev, next *http2priorityNode // doubly-linked list of siblings
11177 func (n *http2priorityNode) setParent(parent *http2priorityNode) {
11212 func (n *http2priorityNode) addBytes(b int64) {
11225 …dyInOrder(openParent bool, tmp *[]*http2priorityNode, f func(*http2priorityNode, bool) bool) bool {