Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for StartLine (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    	Column   int64
    
    	functionIDX uint64
    }
    
    // Function corresponds to Profile.Function
    type Function struct {
    	ID         uint64
    	Name       string
    	SystemName string
    	Filename   string
    	StartLine  int64
    
    	nameX       int64
    	systemNameX int64
    	filenameX   int64
    }
    
    // Parse parses a profile and checks for its validity. The input
    // may be a gzip-compressed encoded protobuf or one of many legacy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	fName := fmt.Sprintf("%q%q%q%d", ni.Name, ni.OrigName, ni.File, ni.StartLine)
    
    	if f := fm[fName]; f != nil {
    		return f, false
    	}
    
    	f := &profile.Function{
    		ID:         uint64(len(fm) + 1),
    		Name:       ni.Name,
    		SystemName: ni.OrigName,
    		Filename:   ni.File,
    		StartLine:  int64(ni.StartLine),
    	}
    	fm[fName] = f
    	return f, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/objfile.go

    		fn := s.Func()
    		if fn == nil {
    			continue
    		}
    		o := goobj.FuncInfo{
    			Args:      uint32(fn.Args),
    			Locals:    uint32(fn.Locals),
    			FuncID:    fn.FuncID,
    			FuncFlag:  fn.FuncFlag,
    			StartLine: fn.StartLine,
    		}
    		pc := &fn.Pcln
    		i := 0
    		o.File = make([]goobj.CUFileIndex, len(pc.UsedFiles))
    		for f := range pc.UsedFiles {
    			o.File[i] = f
    			i++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    	pcsp      uint32
    	pcfile    uint32
    	pcln      uint32
    	npcdata   uint32
    	cuOffset  uint32     // runtime.cutab offset of this function's CU
    	startLine int32      // line number of start of function (func keyword/TEXT directive)
    	funcID    abi.FuncID // set for certain special runtime functions
    	flag      abi.FuncFlag
    	_         [1]byte // pad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/link.go

    	SymIdx int32
    }
    
    // A FuncInfo contains extra fields for STEXT symbols.
    type FuncInfo struct {
    	Args      int32
    	Locals    int32
    	Align     int32
    	FuncID    abi.FuncID
    	FuncFlag  abi.FuncFlag
    	StartLine int32
    	Text      *Prog
    	Autot     map[*LSym]struct{}
    	Pcln      Pcln
    	InlMarks  []InlMark
    	spills    []RegSpill
    
    	dwarfInfoSym       *LSym
    	dwarfLocSym        *LSym
    	dwarfRangesSym     *LSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  6. src/runtime/export_test.go

    }
    
    var AlignUp = alignUp
    
    func BlockUntilEmptyFinalizerQueue(timeout int64) bool {
    	return blockUntilEmptyFinalizerQueue(timeout)
    }
    
    func FrameStartLine(f *Frame) int {
    	return f.startLine
    }
    
    // PersistentAlloc allocates some memory that lives outside the Go heap.
    // This memory will never be freed; use sparingly.
    func PersistentAlloc(n uintptr) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    	return (*goobj.FuncInfo)(nil).ReadFuncID(fi.data)
    }
    
    func (fi *FuncInfo) FuncFlag() abi.FuncFlag {
    	return (*goobj.FuncInfo)(nil).ReadFuncFlag(fi.data)
    }
    
    func (fi *FuncInfo) StartLine() int32 {
    	return (*goobj.FuncInfo)(nil).ReadStartLine(fi.data)
    }
    
    // Preload has to be called prior to invoking the various methods
    // below related to pcdata, funcdataoff, files, and inltree nodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"NewReader", Func, 0},
    		{"NewWriter", Func, 0},
    		{"ParseError", Type, 0},
    		{"ParseError.Column", Field, 0},
    		{"ParseError.Err", Field, 0},
    		{"ParseError.Line", Field, 0},
    		{"ParseError.StartLine", Field, 10},
    		{"Reader", Type, 0},
    		{"Reader.Comma", Field, 0},
    		{"Reader.Comment", Field, 0},
    		{"Reader.FieldsPerRecord", Field, 0},
    		{"Reader.LazyQuotes", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top