Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for nextSymbol (0.38 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/binutils/disasm.go

    				continue
    			}
    		}
    		// Reset on unrecognized lines.
    		function, file, line = "", "", 0
    	}
    
    	return assembly, nil
    }
    
    // nextSymbol parses the nm output to find the next symbol listed.
    // Skips over any output it cannot recognize.
    func nextSymbol(buf *bytes.Buffer) (uint64, string, error) {
    	for {
    		line, err := buf.ReadString('\n')
    		if err != nil {
    			if err != io.EOF || line == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top