Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for flushChild (0.07 sec)

  1. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    		pendingIsASN1:  isASN1,
    		inContinuation: b.inContinuation,
    	}
    
    	b.callContinuation(f, b.child)
    	b.flushChild()
    	if b.child != nil {
    		panic("cryptobyte: internal error")
    	}
    }
    
    func (b *Builder) flushChild() {
    	if b.child == nil {
    		return
    	}
    	b.child.flushChild()
    	child := b.child
    	b.child = nil
    
    	if child.err != nil {
    		b.err = child.err
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
Back to top