Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for encodeMessage (0.17 sec)

  1. src/internal/profile/encode.go

    func (p *Profile) encode(b *buffer) {
    	for _, x := range p.SampleType {
    		encodeMessage(b, 1, x)
    	}
    	for _, x := range p.Sample {
    		encodeMessage(b, 2, x)
    	}
    	for _, x := range p.Mapping {
    		encodeMessage(b, 3, x)
    	}
    	for _, x := range p.Location {
    		encodeMessage(b, 4, x)
    	}
    	for _, x := range p.Function {
    		encodeMessage(b, 5, x)
    	}
    	encodeStrings(b, 6, p.stringTable)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 19:52:28 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    func (p *Profile) encode(b *buffer) {
    	for _, x := range p.SampleType {
    		encodeMessage(b, 1, x)
    	}
    	for _, x := range p.Sample {
    		encodeMessage(b, 2, x)
    	}
    	for _, x := range p.Mapping {
    		encodeMessage(b, 3, x)
    	}
    	for _, x := range p.Location {
    		encodeMessage(b, 4, x)
    	}
    	for _, x := range p.Function {
    		encodeMessage(b, 5, x)
    	}
    	encodeStrings(b, 6, p.stringTable)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                bind();
            }
            byte[] inB = this.transportContext.getBufferCache().getBuffer();
            byte[] out = this.transportContext.getBufferCache().getBuffer();
            try {
                NdrBuffer buf = encodeMessage(msg, out);
                int off = sendFragments(msg, out, buf);
    
                // last fragment gets written (possibly) using transact/call semantics
                int have = doSendReceiveFragment(out, off, msg.length, inB);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
Back to top