Lines Matching defs:gdesc
7 // GDesc contains statistics about execution of a single goroutine.
8 type GDesc struct {
25 *gdesc // private part
28 // gdesc is a private part of GDesc that is required only during analysis.
29 type gdesc struct {
40 func GoroutineStats(events []*Event) map[uint64]*GDesc {
41 gs := make(map[uint64]*GDesc)
48 g := &GDesc{ID: ev.Args[0], CreationTime: ev.Ts, gdesc: new(gdesc)}
154 g.gdesc = nil