Home
last modified time | relevance | path

Searched defs:WaitGroup (Results 1 – 25 of 27) sorted by relevance

12

/aosp_15_r20/external/rust/android-crates-io/crates/crossbeam-utils/src/sync/
Dwait_group.rs46 pub struct WaitGroup { struct
50 /// Inner state of a `WaitGroup`. argument
56 impl Default for WaitGroup { implementation
67 impl WaitGroup { impl
118 impl Drop for WaitGroup { implementation
129 impl Clone for WaitGroup { implementation
130 fn clone(&self) -> WaitGroup { in clone()
140 impl fmt::Debug for WaitGroup { implementation
/aosp_15_r20/prebuilts/go/linux-x86/src/sync/
Dwaitgroup.go25 type WaitGroup struct { struct
26 noCopy noCopy
28 state atomic.Uint64 // high 32 bits are counter, low 32 bits are waiter count.
29 sema uint32
45 func (wg *WaitGroup) Add(delta int) {
88 func (wg *WaitGroup) Done() {
93 func (wg *WaitGroup) Wait() {
Dwaitgroup_test.go13 func testWaitGroup(t *testing.T, wg1 *WaitGroup, wg2 *WaitGroup) {
/aosp_15_r20/prebuilts/go/linux-x86/test/fixedbugs/issue19467.dir/
Dmysync.go9 type WaitGroup struct { struct
10 Callers []uintptr
13 func (wg *WaitGroup) Add(x int) {
19 func (wg *WaitGroup) Done() {
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/testdata/testprogcgo/
Deintr.go112 func testPipe(wg *sync.WaitGroup) {
159 func testNet(wg *sync.WaitGroup) {
218 func testExec(wg *sync.WaitGroup) {
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/pprof/
Dpprof_test.go2677 func inlineA(mu *sync.Mutex, wg *sync.WaitGroup) { inlineB(mu, wg) }
2678 func inlineB(mu *sync.Mutex, wg *sync.WaitGroup) { inlineC(mu, wg) }
2679 func inlineC(mu *sync.Mutex, wg *sync.WaitGroup) {
2685 func inlineD(mu *sync.Mutex, wg *sync.WaitGroup) { inlineE(mu, wg) }
2686 func inlineE(mu *sync.Mutex, wg *sync.WaitGroup) { inlineF(mu, wg) }
2687 func inlineF(mu *sync.Mutex, wg *sync.WaitGroup) {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/trace/testdata/testprog/
Dmain.go97 func cpu10(wg *sync.WaitGroup) {
102 func cpu20(wg *sync.WaitGroup) {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/dist/
Dutil.go163 func bgrun(wg *sync.WaitGroup, dir string, cmd ...string) {
173 func bgwait(wg *sync.WaitGroup) {
/aosp_15_r20/hardware/google/gfxstream/guest/android-emu/aemu/base/threads/
DAndroidWorkPool.cpp39 class WaitGroup { // intrusive refcounted class
42 WaitGroup(int numTasksRemaining) : in WaitGroup() function in gfxstream::guest::WaitGroup
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/testdata/
Dsayhi.go8 func sayhi(n int, wg *sync.WaitGroup) {
/aosp_15_r20/external/swiftshader/third_party/marl/src/
H A Dwaitgroup_bench.cpp19 BENCHMARK_DEFINE_F(Schedule, WaitGroup)(benchmark::State& state) { in BENCHMARK_DEFINE_F() argument
/aosp_15_r20/external/swiftshader/third_party/marl/include/marl/
H A Dparallelize.h25 MARL_NO_EXPORT inline void parallelizeChain(WaitGroup&) {} in parallelizeChain() argument
H A Dwaitgroup.h80 WaitGroup::WaitGroup(unsigned int initialCount /* = 0 */, in WaitGroup() function
/aosp_15_r20/external/cronet/third_party/boringssl/src/util/pregenerate/
H A Dpregenerate.go81 func worker(taskChan <-chan Task, errorChan chan<- taskError, wg *sync.WaitGroup) {
/aosp_15_r20/external/boringssl/src/util/pregenerate/
H A Dpregenerate.go81 func worker(taskChan <-chan Task, errorChan chan<- taskError, wg *sync.WaitGroup) {
/aosp_15_r20/development/tools/repo_diff/service/repodiff/interactors/
H A Drunner.go12 sync.WaitGroup anonMember
/aosp_15_r20/external/cronet/third_party/boringssl/src/util/fipstools/acvp/acvptool/test/
H A Dcheck_expected.go135 func worker(wg *sync.WaitGroup, work <-chan invocation, numFailed *uint32) {
/aosp_15_r20/external/grpc-grpc/src/python/grpcio_tests/tests/unit/
H A Dtest_common.py119 class WaitGroup(object): class
/aosp_15_r20/external/boringssl/src/util/fipstools/acvp/acvptool/test/
H A Dcheck_expected.go135 func worker(wg *sync.WaitGroup, work <-chan invocation, numFailed *uint32) {
/aosp_15_r20/prebuilts/go/linux-x86/src/log/syslog/
Dsyslog_test.go60 func runStreamSyslog(l net.Listener, done chan<- string, wg *sync.WaitGroup) {
/aosp_15_r20/external/rust/android-crates-io/crates/crossbeam-channel/tests/
Dgolang.rs164 struct WaitGroup(Arc<WaitGroupInner>); struct
171 impl WaitGroup { impl
/aosp_15_r20/external/cronet/third_party/boringssl/src/util/
H A Dall_tests.go265 func worker(tests <-chan test, results chan<- result, done *sync.WaitGroup) {
/aosp_15_r20/external/boringssl/src/util/
H A Dall_tests.go274 func worker(tests <-chan test, results chan<- result, done *sync.WaitGroup) {
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/
Dgc_test.go749 func countpwg(n *int, ready *sync.WaitGroup, teardown chan bool) {
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/link/internal/ld/
Ddata.go1120 func writeParallel(wg *sync.WaitGroup, fn writeFn, ctxt *Link, seek, vaddr, length uint64) {

12