Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for runtime_FrameStartLine (0.29 sec)

  1. src/runtime/symtab.go

    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname runtime_FrameStartLine runtime/pprof.runtime_FrameStartLine
    func runtime_FrameStartLine(f *Frame) int {
    	return f.startLine
    }
    
    // runtime_FrameSymbolName returns the full symbol name of the function in a Frame.
    // For generic functions this differs from f.Function in that this doesn't replace
    // the shape name to "...".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. src/runtime/pprof/proto.go

    			funcID = uint64(len(b.funcs)) + 1
    			b.funcs[funcName] = int(funcID)
    			newFuncs = append(newFuncs, newFunc{
    				id:        funcID,
    				name:      funcName,
    				file:      frame.File,
    				startLine: int64(runtime_FrameStartLine(&frame)),
    			})
    		}
    		b.pbLine(tagLocation_Line, funcID, int64(frame.Line))
    	}
    	for i := range b.mem {
    		if b.mem[i].start <= addr && addr < b.mem[i].end || b.mem[i].fake {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
Back to top