OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GOTRACEBACK
(Results
1 - 14
of
14
) sorted by null
/prebuilts/go/darwin-x86/src/runtime/
runtime1.go
9
// Keep a cached value to make
gotraceback
fast,
13
//
gotraceback
value.
16
// The
GOTRACEBACK
environment variable controls the
18
//
GOTRACEBACK
=0 suppress all tracebacks
19
//
GOTRACEBACK
=1 default behavior - show tracebacks but exclude runtime frames
20
//
GOTRACEBACK
=2 show tracebacks including runtime frames
21
//
GOTRACEBACK
=crash show tracebacks including runtime frames, then crash (core dump etc)
23
func
gotraceback
(crash *bool) int32 {
func
374
switch p := gogetenv("
GOTRACEBACK
"); p {
extern.go
107
The
GOTRACEBACK
variable controls the amount of output generated when a Go
111
If
GOTRACEBACK
=0, the per-goroutine stack traces are omitted entirely.
112
If
GOTRACEBACK
=1, the default behavior is used.
113
If
GOTRACEBACK
=2, the per-goroutine stack traces include run-time functions.
114
If
GOTRACEBACK
=crash, the per-goroutine stack traces include run-time functions,
crash_unix_test.go
54
cmd.Env = append(cmd.Env, "
GOTRACEBACK
=crash")
crash_test.go
32
// Exclude
GOTRACEBACK
for the same reason.
33
if strings.HasPrefix(env, "
GOTRACEBACK
=") {
/prebuilts/go/linux-x86/src/runtime/
runtime1.go
9
// Keep a cached value to make
gotraceback
fast,
13
//
gotraceback
value.
16
// The
GOTRACEBACK
environment variable controls the
18
//
GOTRACEBACK
=0 suppress all tracebacks
19
//
GOTRACEBACK
=1 default behavior - show tracebacks but exclude runtime frames
20
//
GOTRACEBACK
=2 show tracebacks including runtime frames
21
//
GOTRACEBACK
=crash show tracebacks including runtime frames, then crash (core dump etc)
23
func
gotraceback
(crash *bool) int32 {
func
374
switch p := gogetenv("
GOTRACEBACK
"); p {
extern.go
107
The
GOTRACEBACK
variable controls the amount of output generated when a Go
111
If
GOTRACEBACK
=0, the per-goroutine stack traces are omitted entirely.
112
If
GOTRACEBACK
=1, the default behavior is used.
113
If
GOTRACEBACK
=2, the per-goroutine stack traces include run-time functions.
114
If
GOTRACEBACK
=crash, the per-goroutine stack traces include run-time functions,
crash_unix_test.go
54
cmd.Env = append(cmd.Env, "
GOTRACEBACK
=crash")
crash_test.go
32
// Exclude
GOTRACEBACK
for the same reason.
33
if strings.HasPrefix(env, "
GOTRACEBACK
=") {
/prebuilts/go/darwin-x86/misc/cgo/test/
issue7978.go
106
if os.Getenv("
GOTRACEBACK
") != "2" {
107
t.Fatalf("
GOTRACEBACK
must be 2")
/prebuilts/go/linux-x86/misc/cgo/test/
issue7978.go
106
if os.Getenv("
GOTRACEBACK
") != "2" {
107
t.Fatalf("
GOTRACEBACK
must be 2")
/prebuilts/go/darwin-x86/src/net/http/
main_test.go
40
// These only show up with
GOTRACEBACK
=2; Issue 5005 (comment 28)
/prebuilts/go/linux-x86/src/net/http/
main_test.go
40
// These only show up with
GOTRACEBACK
=2; Issue 5005 (comment 28)
/prebuilts/go/darwin-x86/src/cmd/dist/
test.go
590
env := mergeEnvLists([]string{"
GOTRACEBACK
=2"}, os.Environ())
819
env := mergeEnvLists([]string{"
GOTRACEBACK
=2"}, os.Environ())
/prebuilts/go/linux-x86/src/cmd/dist/
test.go
590
env := mergeEnvLists([]string{"
GOTRACEBACK
=2"}, os.Environ())
819
env := mergeEnvLists([]string{"
GOTRACEBACK
=2"}, os.Environ())
Completed in 2991 milliseconds