HomeSort by relevance Sort by last modified time
    Searched defs:race (Results 1 - 13 of 13) sorted by null

  /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
race.go 5 // +build race
7 package race package
  /prebuilts/go/darwin-x86/src/runtime/race/
doc.go 5 // Package race implements data race detection logic.
7 // For details about the race detector see
9 package race package
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.
  /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
norace.go 5 // +build !race
7 package race package
race.go 5 // +build race
7 package race package
  /prebuilts/go/linux-x86/src/runtime/race/
doc.go 5 // Package race implements data race detection logic.
7 // For details about the race detector see
9 package race package
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.
  /build/soong/cmd/microfactory/
microfactory.go 67 race = false
279 if race {
280 cmd.Args = append(cmd.Args, "-race")
281 fmt.Fprintln(hash, "-race")
404 if race {
405 cmd.Args = append(cmd.Args, "-race")
495 flags.BoolVar(&race, "race", false, "enable data race detection.")
66 race = false var
  /external/valgrind/none/tests/
tls.c 11 static int race; variable
20 return ∽̱
76 T(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...]

Completed in 544 milliseconds