type net/http.http2priorityNode
23 uses
net/http (current package)
h2_bundle.go#L9917: nodes: make(map[uint32]*http2priorityNode),
h2_bundle.go#L9942: type http2priorityNode struct {
h2_bundle.go#L9951: parent *http2priorityNode
h2_bundle.go#L9952: kids *http2priorityNode // start of the kids list
h2_bundle.go#L9953: prev, next *http2priorityNode // doubly-linked list of siblings
h2_bundle.go#L9956: func (n *http2priorityNode) setParent(parent *http2priorityNode) {
h2_bundle.go#L9991: func (n *http2priorityNode) addBytes(b int64) {
h2_bundle.go#L10004: func (n *http2priorityNode) walkReadyInOrder(openParent bool, tmp *[]*http2priorityNode, f func(*http2priorityNode, bool) bool) bool {
h2_bundle.go#L10057: type http2sortPriorityNodeSiblings []*http2priorityNode
h2_bundle.go#L10080: root http2priorityNode
h2_bundle.go#L10083: nodes map[uint32]*http2priorityNode
h2_bundle.go#L10091: closedNodes, idleNodes []*http2priorityNode
h2_bundle.go#L10100: tmp []*http2priorityNode
h2_bundle.go#L10124: n := &http2priorityNode{
h2_bundle.go#L10176: n = &http2priorityNode{
h2_bundle.go#L10234: var n *http2priorityNode
h2_bundle.go#L10255: ws.root.walkReadyInOrder(false, &ws.tmp, func(n *http2priorityNode, openParent bool) bool {
h2_bundle.go#L10281: func (ws *http2priorityWriteScheduler) addClosedOrIdleNode(list *[]*http2priorityNode, maxSize int, n *http2priorityNode) {
h2_bundle.go#L10295: func (ws *http2priorityWriteScheduler) removeNode(n *http2priorityNode) {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |