Home
last modified time | relevance | path

Searched refs:wait (Results 1 – 25 of 53) sorted by relevance

123

/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_test_suite/atomics/
Dconcurrent_wait_store_notify.ets16 // 1. If this test prints "1 ok" then the order of events is as follows: wait -> store -> notify
17 // 2. "0 not-equal": store -> wait -> notify, or store -> notify -> wait
33 let res = Atomics.wait(arr, 0, 0) as string
41 wait()
48 function wait(): int {
Dskipped_cyclic_barrier.ets33 wait()
34 c.println("wait completed")
46 function wait() {
51 // wait until is 0
54 Atomics.wait(arr, 0, cur)
Dconcurrent_store_load.ets27 wait()
37 function wait(): int {
Dconcurrent_increment.ets28 wait()
40 function wait(): int {
Dskipped_rendezvous_channel.ets57 Atomics.wait(arr, 0, oldValue)
73 Atomics.wait(arr, 0, 0)
DCMakeLists.txt26 # --- Non-concurrent wait/notify tests
32 # --- Concurrent wait/notify tests
Dnonconcurrent_wait_not_equal.ets20 let x = Atomics.wait(arr, 0, 1)
Dskipped_wait_timeout.ets27 let reason = Atomics.wait(arr, 0, 0, 10)
Dnonconcurrent_wait_i32_not_equal.ets23 let x = Atomics.wait(arr, 0, 0)
Dnonconcurrent_wait_i64_not_equal.ets23 let x = Atomics.wait(arr, 0, 0)
Dconcurrent_countdownlatch.ets36 Atomics.wait(arr, 0, cur)
/arkcompiler/ets_runtime/test/workloadtest/
Dwork_load.py72 process.wait()
79 process.wait()
98 proc.wait()
104 proc.wait()
125 process.wait()
/arkcompiler/runtime_core/libpandabase/tests/
Dbase_thread_test.cpp46 cv.wait(lk, [] { return operated; }); in ThreadFunc()
78 cv.wait(lk, [] { return updated; }); in __anon8d86b7760202()
/arkcompiler/ets_frontend/ets2panda/compiler/core/
DcompileQueue.cpp70 …queue->jobsAvailable_.wait(lock, [queue]() { return queue->terminate_ || queue->jobsCount_ != 0; }… in Worker()
111 jobsFinished_.wait(lock, [this]() { return activeWorkers_ == 0 && jobsCount_ == 0; }); in Wait()
DcompileJob.cpp25 cond_.wait(lock, [this] { return dependencies_ == 0; }); in Run()
/arkcompiler/ets_frontend/es2panda/util/
DworkerQueue.cpp63 …queue->jobsAvailable_.wait(lock, [queue]() { return queue->terminate_ || queue->jobsCount_ != 0; }… in Worker()
104 jobsFinished_.wait(lock, [this]() { return activeWorkers_ == 0 && jobsCount_ == 0; }); in Wait()
/arkcompiler/ets_frontend/es2panda/compiler/core/
DcompileQueue.cpp38 cond_.wait(lock, [this] { return dependencies_ == 0; }); in Run()
58 cond_.wait(lock, [this] { return dependencies_ == 0; }); in Run()
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/escompat/
DAtomics.ets262 public static wait(typedArray: Int32Array, offset: int, value: int): string {
275 public static wait(typedArray: Int32Array, offset: int, value: int, timeout: long): string {
283 … * Notifies (wakes up) threads that are suspended by the Atomics.wait() calls at the given index.
286 …* Note: This method also wakes up threads suspended by the BigInt64Array Atomics.wait(t64, offset6…
357 public static wait(typedArray: BigInt64Array, offset: int, value: long): string {
370 public static wait(typedArray: BigInt64Array, offset: int, value: long, timeout: long): string {
378 … * Notifies (wakes up) threads that are suspended by the Atomics.wait() calls at the given index.
381 …* Note: This method also wakes up threads suspended by the Int32Array Atomics.wait(t32, offset32) …
/arkcompiler/runtime_core/static_core/runtime/tests/
Dmultithreaded_intern_string_table_test.cpp93 preCv_.wait(lk); in PreCheck()
131 postCv_.wait(lk); in PostFree()
/arkcompiler/runtime_core/docs/diagrams/
Dgc-trigger-sequence-OOM.pusequence29 Allocator -> GCTaskQueue: Add new GC task and wait for GC
/arkcompiler/runtime_core/static_core/docs/diagrams/
Dgc-trigger-sequence-OOM.plantuml29 Allocator -> GCTaskQueue: Add new GC task and wait for GC
/arkcompiler/ets_frontend/es2panda/scripts/
Dgenerate_js_bytecode.py61 proc.wait()
/arkcompiler/ets_frontend/es2panda/aot/
DemitFiles.cpp107 cond_.wait(lock, [this] { return dependencies_ == 0; }); in Run()
/arkcompiler/ets_runtime/test/regresstest/
Drun_regress_test.py122 ret = proc.wait()
270 ret = proc.wait()
280 proc.wait()
286 proc.wait()
/arkcompiler/toolchain/tooling/
Dprotocol_handler.cpp63 requestQueueCond_.wait(queueLock); in ProcessCommand()

123