OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:gdesc
(Results
1 - 2
of
2
) sorted by null
/prebuilts/go/darwin-x86/src/internal/trace/
goroutines.go
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 {
type
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)
[
all
...]
/prebuilts/go/linux-x86/src/internal/trace/
goroutines.go
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 {
type
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)
[
all
...]
Completed in 81 milliseconds