HomeSort by relevance Sort by last modified time
    Searched refs:race (Results 1 - 25 of 338) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/runtime/
race0.go 5 // +build !race
7 // Dummy race detection API, used when not built with -race.
19 func raceReadObjectPC(t *_type, addr unsafe.Pointer, callerpc, pc uintptr) { throw("race") }
20 func raceWriteObjectPC(t *_type, addr unsafe.Pointer, callerpc, pc uintptr) { throw("race") }
21 func raceinit() (uintptr, uintptr) { throw("race"); return 0, 0 }
22 func racefini() { throw("race") }
23 func raceproccreate() uintptr { throw("race"); return 0 }
24 func raceprocdestroy(ctx uintptr) { throw("race") }
25 func racemapshadow(addr unsafe.Pointer, size uintptr) { throw("race") }
    [all...]
norace_linux_test.go 5 // The file contains tests that cannot run under race detector for some reason.
6 // +build !race
24 // Can't be run with -race because it inserts calls into newOSProcCreated()
norace_test.go 5 // The file contains tests that cannot run under race detector for some reason.
6 // +build !race
15 // Syscall tests split stack between Entersyscall and Exitsyscall under race detector.
  /prebuilts/go/linux-x86/src/runtime/
race0.go 5 // +build !race
7 // Dummy race detection API, used when not built with -race.
19 func raceReadObjectPC(t *_type, addr unsafe.Pointer, callerpc, pc uintptr) { throw("race") }
20 func raceWriteObjectPC(t *_type, addr unsafe.Pointer, callerpc, pc uintptr) { throw("race") }
21 func raceinit() (uintptr, uintptr) { throw("race"); return 0, 0 }
22 func racefini() { throw("race") }
23 func raceproccreate() uintptr { throw("race"); return 0 }
24 func raceprocdestroy(ctx uintptr) { throw("race") }
25 func racemapshadow(addr unsafe.Pointer, size uintptr) { throw("race") }
    [all...]
norace_linux_test.go 5 // The file contains tests that cannot run under race detector for some reason.
6 // +build !race
24 // Can't be run with -race because it inserts calls into newOSProcCreated()
norace_test.go 5 // The file contains tests that cannot run under race detector for some reason.
6 // +build !race
15 // Syscall tests split stack between Entersyscall and Exitsyscall under race detector.
  /prebuilts/go/darwin-x86/src/runtime/race/
race.go 5 // +build race,linux,amd64 race,freebsd,amd64 race,darwin,amd64 race,windows,amd64
7 package race package
9 // This file merely ensures that we link in runtime/cgo in race build,
11 // The prebuilt race runtime lives in race_GOOS_GOARCH.syso.
12 // Calls to the runtime are done directly from src/runtime/race.go.
doc.go 5 // Package race implements data race detection logic.
7 // For details about the race detector see
9 package race package
  /prebuilts/go/linux-x86/src/runtime/race/
race.go 5 // +build race,linux,amd64 race,freebsd,amd64 race,darwin,amd64 race,windows,amd64
7 package race package
9 // This file merely ensures that we link in runtime/cgo in race build,
11 // The prebuilt race runtime lives in race_GOOS_GOARCH.syso.
12 // Calls to the runtime are done directly from src/runtime/race.go.
doc.go 5 // Package race implements data race detection logic.
7 // For details about the race detector see
9 package race package
  /external/ltp/testcases/kernel/fs/racer/
fs_racer_dir_test.sh 27 mkdir race/$dir
  /prebuilts/go/darwin-x86/src/internal/race/
doc.go 6 Package race contains helper functions for manually instrumenting code for the race detector.
8 The runtime package intentionally exports these functions only in the race build;
9 this package exports them unconditionally but without the "race" build tag they are no-ops.
11 package race package
norace.go 5 // +build !race
7 package race package
  /prebuilts/go/linux-x86/src/internal/race/
doc.go 6 Package race contains helper functions for manually instrumenting code for the race detector.
8 The runtime package intentionally exports these functions only in the race build;
9 this package exports them unconditionally but without the "race" build tag they are no-ops.
11 package race package
  /prebuilts/go/darwin-x86/src/
race.bash 6 # race.bash tests the standard library under the race detector.
12 echo 'race detector is only supported on linux/amd64, freebsd/amd64 and darwin/amd64' 1>&2
39 echo 'race.bash must be run from $GOROOT/src' 1>&2
43 go install -race std
44 go tool dist test -race
  /prebuilts/go/linux-x86/src/
race.bash 6 # race.bash tests the standard library under the race detector.
12 echo 'race detector is only supported on linux/amd64, freebsd/amd64 and darwin/amd64' 1>&2
39 echo 'race.bash must be run from $GOROOT/src' 1>&2
43 go install -race std
44 go tool dist test -race
  /external/compiler-rt/lib/tsan/rtl/
tsan_interface_ann.cc 10 // This file is a part of ThreadSanitizer (TSan), a race detector.
90 ExpectRace *race = list->next; local
91 for (; race != list; race = race->next) {
92 if (race->addr == addr && race->size == size) {
93 atomic_store_relaxed(&race->addcount,
94 atomic_load_relaxed(&race->addcount) + 1);
98 race = (ExpectRace*)internal_alloc(MBlockExpectRace, sizeof(ExpectRace))
129 ExpectRace *race = FindRace(list, addr, size); local
307 ExpectRace *race = dyn_ann_ctx->expect.next; local
    [all...]
  /prebuilts/go/darwin-x86/src/sync/
rwmutex.go 8 "internal/race"
37 if race.Enabled {
39 race.Disable()
45 if race.Enabled {
46 race.Enable()
47 race.Acquire(unsafe.Pointer(&rw.readerSem))
56 if race.Enabled {
58 race.ReleaseMerge(unsafe.Pointer(&rw.writerSem))
59 race.Disable()
63 race.Enable(
    [all...]
waitgroup.go 8 "internal/race"
54 if race.Enabled {
58 race.ReleaseMerge(unsafe.Pointer(wg))
60 race.Disable()
61 defer race.Enable()
66 if race.Enabled {
71 race.Read(unsafe.Pointer(&wg.sema))
106 if race.Enabled {
108 race.Disable()
116 if race.Enabled
    [all...]
  /prebuilts/go/linux-x86/src/sync/
rwmutex.go 8 "internal/race"
37 if race.Enabled {
39 race.Disable()
45 if race.Enabled {
46 race.Enable()
47 race.Acquire(unsafe.Pointer(&rw.readerSem))
56 if race.Enabled {
58 race.ReleaseMerge(unsafe.Pointer(&rw.writerSem))
59 race.Disable()
63 race.Enable(
    [all...]
waitgroup.go 8 "internal/race"
54 if race.Enabled {
58 race.ReleaseMerge(unsafe.Pointer(wg))
60 race.Disable()
61 defer race.Enable()
66 if race.Enabled {
71 race.Read(unsafe.Pointer(&wg.sema))
106 if race.Enabled {
108 race.Disable()
116 if race.Enabled
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/dist/
deps.go 6 "bufio": {"bytes", "errors", "internal/race", "io", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sync", "sync/atomic", "unicode", "unicode/utf8"},
7 "bytes": {"errors", "internal/race", "io", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sync", "sync/atomic", "unicode", "unicode/utf8"},
8 "compress/flate": {"bufio", "bytes", "errors", "fmt", "internal/race", "internal/syscall/windows", "internal/syscall/windows/registry", "internal/syscall/windows/sysdll", "io", "math", "os", "reflect", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sort", "strconv", "sync", "sync/atomic", "syscall", "time", "unicode", "unicode/utf16", "unicode/utf8"},
9 "compress/zlib": {"bufio", "bytes", "compress/flate", "errors", "fmt", "hash", "hash/adler32", "internal/race", "internal/syscall/windows", "internal/syscall/windows/registry", "internal/syscall/windows/sysdll", "io", "math", "os", "reflect", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sort", "strconv", "sync", "sync/atomic", "syscall", "time", "unicode", "unicode/utf16", "unicode/utf8"},
10 "container/heap": {"errors", "internal/race", "math", "reflect", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sort", "strconv", "sync", "sync/atomic", "unicode/utf8"},
11 "context": {"errors", "fmt", "internal/race", "internal/syscall/windows", "internal/syscall/windows/registry", "internal/syscall/windows/sysdll", "io", "math", "os", "reflect", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "strconv", "sync", "sync/atomic", "syscall", "time", "unicode/utf16", "unicode/utf8"},
12 "crypto": {"errors", "hash", "internal/race", "io", "math", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "strconv", "sync", "sync/atomic", "unicode/utf8"},
13 "crypto/sha1": {"crypto", "errors", "hash", "internal/race", "io", "math", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "strconv", "sync", "sync/atomic", "unicode/utf8"},
14 "debug/dwarf": {"encoding/binary", "errors", "fmt", "internal/race", "internal/syscall/windows", "internal/syscall/windows/registry", "internal/syscall/windows/sysdll", "io", "math", "os", "path", "reflect", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sort", "strconv", "strings", "sync", "sync/atomic", "syscall", "time", "unicode", "unicode/utf16", "unicode/utf8"},
15 "debug/elf": {"bufio", "bytes", "compress/flate", "compress/zlib", "debug/dwarf", "encoding/binary", "errors", "fmt", "hash", "hash/adler32", "internal/race", "internal/syscall/windows", "internal/syscall/windows/registry", "internal/syscall/windows/sysdl (…)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/dist/
deps.go 6 "bufio": {"bytes", "errors", "internal/race", "io", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sync", "sync/atomic", "unicode", "unicode/utf8"},
7 "bytes": {"errors", "internal/race", "io", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sync", "sync/atomic", "unicode", "unicode/utf8"},
8 "compress/flate": {"bufio", "bytes", "errors", "fmt", "internal/race", "internal/syscall/windows", "internal/syscall/windows/registry", "internal/syscall/windows/sysdll", "io", "math", "os", "reflect", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sort", "strconv", "sync", "sync/atomic", "syscall", "time", "unicode", "unicode/utf16", "unicode/utf8"},
9 "compress/zlib": {"bufio", "bytes", "compress/flate", "errors", "fmt", "hash", "hash/adler32", "internal/race", "internal/syscall/windows", "internal/syscall/windows/registry", "internal/syscall/windows/sysdll", "io", "math", "os", "reflect", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sort", "strconv", "sync", "sync/atomic", "syscall", "time", "unicode", "unicode/utf16", "unicode/utf8"},
10 "container/heap": {"errors", "internal/race", "math", "reflect", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sort", "strconv", "sync", "sync/atomic", "unicode/utf8"},
11 "context": {"errors", "fmt", "internal/race", "internal/syscall/windows", "internal/syscall/windows/registry", "internal/syscall/windows/sysdll", "io", "math", "os", "reflect", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "strconv", "sync", "sync/atomic", "syscall", "time", "unicode/utf16", "unicode/utf8"},
12 "crypto": {"errors", "hash", "internal/race", "io", "math", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "strconv", "sync", "sync/atomic", "unicode/utf8"},
13 "crypto/sha1": {"crypto", "errors", "hash", "internal/race", "io", "math", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "strconv", "sync", "sync/atomic", "unicode/utf8"},
14 "debug/dwarf": {"encoding/binary", "errors", "fmt", "internal/race", "internal/syscall/windows", "internal/syscall/windows/registry", "internal/syscall/windows/sysdll", "io", "math", "os", "path", "reflect", "runtime", "runtime/internal/atomic", "runtime/internal/sys", "sort", "strconv", "strings", "sync", "sync/atomic", "syscall", "time", "unicode", "unicode/utf16", "unicode/utf8"},
15 "debug/elf": {"bufio", "bytes", "compress/flate", "compress/zlib", "debug/dwarf", "encoding/binary", "errors", "fmt", "hash", "hash/adler32", "internal/race", "internal/syscall/windows", "internal/syscall/windows/registry", "internal/syscall/windows/sysdl (…)
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
race.go 5 // +build race
  /prebuilts/go/linux-x86/src/net/http/
race.go 5 // +build race

Completed in 459 milliseconds

1 2 3 4 5 6 7 8 91011>>