Home
last modified time | relevance | path

Searched defs:cpuProfile (Results 1 – 5 of 5) sorted by relevance

/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/
Dcpuprof.go37 type cpuProfile struct { struct
38 lock mutex
39 on bool // profiling is on
40 log *profBuf // profile events written here
53 extra [1000]uintptr
54 numExtra int
55 lostExtra uint64 // count of frames lost because extra is full
56 lostAtomic uint64 // count of frames lost because of being in atomic64 on mips/arm; updated racily
106 func (p *cpuProfile) add(tagPtr *unsafe.Pointer, stk []uintptr) {
138 func (p *cpuProfile) addNonGo(stk []uintptr) {
[all …]
/aosp_15_r20/build/soong/mk2rbc/mk2rbc/
H A Dmk2rbc.go56 cpuProfile = flag.String("cpu_profile", "", "write cpu profile to file") var
/aosp_15_r20/prebuilts/go/linux-x86/src/go/doc/testdata/
Dtesting.go65cpuProfile = flag.String("test.cpuprofile", "", "write a cpu profile to the named file during … var
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/
Dlegacy_profile.go331 func cpuProfile(b []byte, period int64, parse func(b []byte) (uint64, []byte)) (*Profile, error) { func
/aosp_15_r20/prebuilts/go/linux-x86/src/testing/
Dtesting.go465 cpuProfile *string var