Home | History | Annotate | Download | only in testprog

Lines Matching refs:func

14 func init() {
38 func SimpleDeadlock() {
43 func InitDeadlock() {
48 func LockedDeadlock() {
53 func LockedDeadlock2() {
54 go func() {
62 func GoexitDeadlock() {
63 F := func() {
73 func StackOverflow() {
74 var f func() byte
75 f = func() byte {
83 func ThreadExhaustion() {
87 go func() {
96 func RecursivePanic() {
97 func() {
98 defer func() {
102 func(x [8192]byte) {
103 defer func() {
114 func GoexitExit() {
115 go func() {
119 runtime.SetFinalizer(&i, func(p *int) {})
124 func GoNil() {
125 defer func() {
128 var f func()
133 func MainGoroutineID() {
137 func NoHelperGoroutines() {
139 runtime.SetFinalizer(&i, func(p *int) {})
140 time.AfterFunc(time.Hour, func() {})
144 func Breakpoint() {
148 func GoexitInPanic() {
149 go func() {
150 defer func() {
160 func (errorThatGosched) Error() string {
165 func GoschedInPanic() {
171 func (errorThatPrint) Error() string {
177 func SyscallInPanic() {
181 func PanicAfterGoexit() {
182 defer func() {
188 func RecoveredPanicAfterGoexit() {
189 defer func() {
190 defer func() {
201 func PanicTraceback() {
205 func pt1() {
206 defer func() {
212 func pt2() {
213 defer func() {
221 func (*panicError) Error() string {
225 func PanicLoop() {