Home
last modified time | relevance | path

Searched defs:http2priorityNode (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/net/http/
Dh2_bundle.go11163 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
[all …]