HomeSort by relevance Sort by last modified time
    Searched full:goid (Results 1 - 25 of 31) sorted by null

1 2

  /prebuilts/go/darwin-x86/src/cmd/trace/
trace.go 25 // httpTrace serves either whole trace (goid==0) or trace for goid goroutine.
34 if goids := r.FormValue("goid"); goids != "" {
35 goid, err := strconv.ParseUint(goids, 10, 64)
37 http.Error(w, fmt.Sprintf("failed to parse goid parameter '%v': %v", goids, err), http.StatusInternalServerError)
40 params = fmt.Sprintf("?goid=%v", goid)
83 if goids := r.FormValue("goid"); goids != "" {
84 goid, err := strconv.ParseUint(goids, 10, 64)
86 log.Printf("failed to parse goid parameter '%v': %v", goids, err
    [all...]
goroutines.go 154 <td> <a href="/trace?goid={{.ID}}">{{.ID}}</a> </td>
  /prebuilts/go/linux-x86/src/cmd/trace/
trace.go 25 // httpTrace serves either whole trace (goid==0) or trace for goid goroutine.
34 if goids := r.FormValue("goid"); goids != "" {
35 goid, err := strconv.ParseUint(goids, 10, 64)
37 http.Error(w, fmt.Sprintf("failed to parse goid parameter '%v': %v", goids, err), http.StatusInternalServerError)
40 params = fmt.Sprintf("?goid=%v", goid)
83 if goids := r.FormValue("goid"); goids != "" {
84 goid, err := strconv.ParseUint(goids, 10, 64)
86 log.Printf("failed to parse goid parameter '%v': %v", goids, err
    [all...]
goroutines.go 154 <td> <a href="/trace?goid={{.ID}}">{{.ID}}</a> </td>
  /prebuilts/go/darwin-x86/src/runtime/
runtime-gdb.py 401 print(s, ptr['goid'], "{0:8s}".format(sts[int(ptr['atomicstatus'])]), blk.function)
404 def find_goroutine(goid):
406 find_goroutine attempts to find the goroutine identified by goid.
410 @param int goid
418 if ptr['goid'] == goid:
424 """Execute gdb command in the context of goroutine <goid>.
429 Usage: (gdb) goroutine <goid> <gdbcmd>
439 goid, cmd = arg.split(None, 1)
440 goid = gdb.parse_and_eval(goid
    [all...]
mgcmark.go 310 print("runtime:scanstack: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", hex(readgstatus(gp)), "\n")
316 print("runtime: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", readgstatus(gp), "\n")
321 print("runtime: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", readgstatus(gp), "\n")
354 print("stkbarPos=", gp.stkbarPos, " len(stkbar)=", len(gp.stkbar), " goid=", gp.goid, " gcphase=", gcphase, "\n")
371 print("rescan below ", hex(nextBarrier), " in [", hex(sp), ",", hex(gp.stack.hi), ") goid=", gp.goid, "\n"
    [all...]
trace.go 193 traceEvent(traceEvGoWaiting, -1, uint64(gp.goid))
196 traceEvent(traceEvGoInSyscall, -1, uint64(gp.goid))
363 data = traceAppend(data, uint64(timers.gp.goid))
522 if nstk > 0 && gp.goid == 1 {
800 traceEvent(traceEvGoCreate, 2, uint64(newg.goid), uint64(pc))
804 traceEvent(traceEvGoStart, -1, uint64(getg().m.curg.goid))
827 traceEvent(traceEvGoUnblock, skip, uint64(gp.goid))
839 traceEvent(traceEvGoSysExit, -1, uint64(getg().m.curg.goid), seq, uint64(ts)/traceTickDiv)
traceback.go 469 print("runtime: g", gp.goid, ": leftover defer sp=", hex(_defer.sp), " pc=", hex(_defer.pc), "\n")
478 print("runtime: g", gp.goid, ": leftover stack barriers ")
510 // Show what created goroutine, except main goroutine (goid 1).
513 if f != nil && showframe(f, gp) && gp.goid != 1 {
647 print("goroutine ", gp.goid, " [", status)
proc1.go 85 print("runtime: gp: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", readgstatus(gp), "\n")
86 print("runtime: g: g=", _g_, ", goid=", _g_.goid, ", g->atomicstatus=", readgstatus(_g_), "\n")
999 gp.goid = int64(xadd64(&sched.goidgen, 1))
    [all...]
heapdump.go 347 dumpint(uint64(gp.goid))
runtime2.go 235 goid int64
  /prebuilts/go/linux-x86/src/runtime/
runtime-gdb.py 401 print(s, ptr['goid'], "{0:8s}".format(sts[int(ptr['atomicstatus'])]), blk.function)
404 def find_goroutine(goid):
406 find_goroutine attempts to find the goroutine identified by goid.
410 @param int goid
418 if ptr['goid'] == goid:
424 """Execute gdb command in the context of goroutine <goid>.
429 Usage: (gdb) goroutine <goid> <gdbcmd>
439 goid, cmd = arg.split(None, 1)
440 goid = gdb.parse_and_eval(goid
    [all...]
mgcmark.go 310 print("runtime:scanstack: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", hex(readgstatus(gp)), "\n")
316 print("runtime: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", readgstatus(gp), "\n")
321 print("runtime: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", readgstatus(gp), "\n")
354 print("stkbarPos=", gp.stkbarPos, " len(stkbar)=", len(gp.stkbar), " goid=", gp.goid, " gcphase=", gcphase, "\n")
371 print("rescan below ", hex(nextBarrier), " in [", hex(sp), ",", hex(gp.stack.hi), ") goid=", gp.goid, "\n"
    [all...]
trace.go 193 traceEvent(traceEvGoWaiting, -1, uint64(gp.goid))
196 traceEvent(traceEvGoInSyscall, -1, uint64(gp.goid))
363 data = traceAppend(data, uint64(timers.gp.goid))
522 if nstk > 0 && gp.goid == 1 {
800 traceEvent(traceEvGoCreate, 2, uint64(newg.goid), uint64(pc))
804 traceEvent(traceEvGoStart, -1, uint64(getg().m.curg.goid))
827 traceEvent(traceEvGoUnblock, skip, uint64(gp.goid))
839 traceEvent(traceEvGoSysExit, -1, uint64(getg().m.curg.goid), seq, uint64(ts)/traceTickDiv)
traceback.go 469 print("runtime: g", gp.goid, ": leftover defer sp=", hex(_defer.sp), " pc=", hex(_defer.pc), "\n")
478 print("runtime: g", gp.goid, ": leftover stack barriers ")
510 // Show what created goroutine, except main goroutine (goid 1).
513 if f != nil && showframe(f, gp) && gp.goid != 1 {
647 print("goroutine ", gp.goid, " [", status)
proc1.go 85 print("runtime: gp: gp=", gp, ", goid=", gp.goid, ", gp->atomicstatus=", readgstatus(gp), "\n")
86 print("runtime: g: g=", _g_, ", goid=", _g_.goid, ", g->atomicstatus=", readgstatus(_g_), "\n")
999 gp.goid = int64(xadd64(&sched.goidgen, 1))
    [all...]
heapdump.go 347 dumpint(uint64(gp.goid))
runtime2.go 235 goid int64
  /prebuilts/go/darwin-x86/src/internal/trace/
goroutines.go 160 // RelatedGoroutines finds a set of goroutines related to goroutine goid.
161 func RelatedGoroutines(events []*Event, goid uint64) map[uint64]bool {
163 // (what goroutines unblock goroutine goid?).
165 gmap[goid] = true
  /prebuilts/go/linux-x86/src/internal/trace/
goroutines.go 160 // RelatedGoroutines finds a set of goroutines related to goroutine goid.
161 func RelatedGoroutines(events []*Event, goid uint64) map[uint64]bool {
163 // (what goroutines unblock goroutine goid?).
165 gmap[goid] = true
  /external/compiler-rt/lib/tsan/go/
tsan_go.cc 152 int goid = ThreadCreate(parent, (uptr)pc, 0, true); local
153 ThreadStart(thr, goid, 0);
  /prebuilts/go/darwin-x86/src/runtime/trace/
trace_test.go 73 for goid := range gs {
76 _ = trace.RelatedGoroutines(events, goid)
  /prebuilts/go/linux-x86/src/runtime/trace/
trace_test.go 73 for goid := range gs {
76 _ = trace.RelatedGoroutines(events, goid)
  /prebuilts/go/darwin-x86/src/cmd/cgo/
gcc.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/cgo/
gcc.go     [all...]

Completed in 344 milliseconds

1 2