Searched full:runnable (Results 1 – 14 of 14) sorted by relevance
| /arkcompiler/runtime_core/static_core/runtime/coroutines/ |
| D | threaded_coroutine.cpp | 128 while (GetStatus() != Coroutine::Status::RUNNABLE) { in WaitUntilInitialized() 145 SetStatus(Coroutine::Status::RUNNABLE); in InitializationDone() 148 SetStatus(Coroutine::Status::RUNNABLE); in InitializationDone() 155 SetStatus(getsBlocked ? Coroutine::Status::BLOCKED : Coroutine::Status::RUNNABLE); in RequestSuspend() 167 SetStatus(Coroutine::Status::RUNNABLE); in RequestUnblock()
|
| D | threaded_coroutine.h | 39 …tine instance) and registers the created coroutine in the CoroutineManager (in the RUNNABLE status) 55 * Changes status to Status::RUNNABLE or Status::BLOCKED, depending on the suspend 64 /// Unblock the coroutine and set its status to Status::RUNNABLE
|
| D | stackful_coroutine.cpp | 40 SetStatus(Coroutine::Status::RUNNABLE); in AttachToCoroutine() 139 SetStatus(getsBlocked ? Coroutine::Status::BLOCKED : Coroutine::Status::RUNNABLE); in RequestSuspend() 150 SetStatus(Coroutine::Status::RUNNABLE); in RequestUnblock()
|
| D | stackful_coroutine.h | 47 * created coroutine in the CoroutineManager (in the RUNNABLE status) 62 …* Suspends the execution context, sets its status to either Status::RUNNABLE or Status::BLOCKED, d… 68 /// Unblock the coroutine and set its status to Status::RUNNABLE
|
| D | stackful_coroutine_worker.cpp | 113 // the schedule loop is still runnable in FinalizeFiberScheduleLoop() 301 // precondition: runnable coros are present in ScheduleNextCoroUnlockRunnablesWaiters() 313 // precondition: runnable coros are present in ScheduleNextCoroUnlockRunnables() 324 // precondition: runnable coros are present in ScheduleNextCoroUnlockNone() 338 // precondition: runnable coros are present in PrepareNextRunnableContextForSwitch()
|
| D | stackful_coroutine_worker.h | 65 /// @return the moving average number of runnable coroutines in the queue 192 // runnable coroutines-related members 202 /// the moving average number of coroutines in the runnable queue
|
| D | coroutine.h | 45 * +---------+ | RUNNABLE | | 59 enum class Status { CREATED, RUNNABLE, RUNNING, BLOCKED, TERMINATING, AWAIT_LOOP }; enumerator 174 …* Suspend a coroutine, so its status becomes either Status::RUNNABLE or Status::BLOCKED, depending… 180 /// Unblock the blocked coroutine, setting its status to Status::RUNNABLE
|
| D | coroutine.cpp | 159 case Coroutine::Status::RUNNABLE: in operator <<() 160 os << "RUNNABLE"; in operator <<()
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | monitor.yaml | 25 .record panda.Runnable <external, panda.interface> 37 .function void panda.Thread.ctor(panda.Thread a0, panda.Runnable a1) <external, ctor> 41 .record RL <panda.implements=panda.Runnable> {
|
| /arkcompiler/ets_frontend/test262/ |
| D | run_test262.py | 169 def run_check(runnable, env=None): argument 170 report_command('Test command:', runnable, env=env) 177 proc = subprocess.Popen(runnable, env=env)
|
| /arkcompiler/runtime_core/cmake/ |
| D | PandaAssembly.cmake | 87 # Add a single buildable and runnable Panda Assembly file to the build tree.
|
| /arkcompiler/runtime_core/static_core/cmake/ |
| D | PandaAssembly.cmake | 88 # Add a single buildable and runnable Panda Assembly file to the build tree.
|
| /arkcompiler/runtime_core/static_core/runtime/include/ |
| D | managed_thread.h | 690 /// Transition to suspended and back to runnable, re-acquire share on mutator_lock_
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | thread.cpp | 558 return "Runnable"; in ThreadStatusAsString()
|