Searched full:runnable (Results 1 – 18 of 18) sorted by relevance
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/10.interfaces/07.interface_inheritance/multi_layer_interface/type_system/ |
| D | type_system_5.ets | 21 interface Runnable { 29 class Athlete implements Runnable, Jumpable {
|
| D | type_system_4.ets | 20 interface Runnable { 28 class Athlete implements Runnable, Jumpable {
|
| /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_worker.h | 68 /// @return the moving average number of runnable coroutines in the queue 105 …* @brief Adds a coroutine to the runnables queue. Any new incoming RUNNABLE coroutine should be ad… 153 /// @brief schedule runnable coroutines and wait for blocked coroutines 222 * @brief Register a new active (= runnable or running) coroutine on this worker. 278 // runnable coroutines-related members 288 /// the moving average number of coroutines in the runnable queue
|
| D | coroutine.cpp | 129 …bool wasActive = hasWorker && (oldStatus == Coroutine::Status::RUNNABLE || oldStatus == Coroutine:… in OnStatusChanged() 130 …bool isActive = hasWorker && (newStatus == Coroutine::Status::RUNNABLE || newStatus == Coroutine::… in OnStatusChanged() 205 bool isRunnableOrRunning = (status == Status::RUNNABLE) || (status == Status::RUNNING); in IsActive() 230 case Coroutine::Status::RUNNABLE: in operator <<() 231 os << "RUNNABLE"; in operator <<()
|
| D | stackful_coroutine_worker.cpp | 164 // the schedule loop is still runnable in FinalizeFiberScheduleLoop() 405 // precondition: runnable coros are present in ScheduleNextCoroUnlockRunnablesWaiters() 417 // precondition: runnable coros are present in ScheduleNextCoroUnlockRunnables() 428 // precondition: runnable coros are present in ScheduleNextCoroUnlockNone() 443 // precondition: runnable coros are present in PrepareNextRunnableContextForSwitch() 500 size_t migrateCount = runnables_.Size() / 2; // migrate up to half of runnable coroutines in MigrateTo() 502 LOG(DEBUG, COROUTINES) << "The blocked worker does not have runnable coroutines."; in MigrateTo() 519 size_t migrateCount = from->runnables_.Size() / 2; // migrate up to half of runnable coroutines in MigrateFrom() 521 LOG(DEBUG, COROUTINES) << "The target worker does not have runnable coroutines."; in MigrateFrom()
|
| 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 | coroutine.h | 54 * +---------+ | RUNNABLE | | 64 * ACTIVE = (RUNNABLE | RUNNING) & WORKER_ASSIGNED 72 enum class Status { CREATED, RUNNABLE, RUNNING, BLOCKED, TERMINATING, AWAIT_LOOP }; enumerator 194 …* Suspend a coroutine, so its status becomes either Status::RUNNABLE or Status::BLOCKED, depending… 200 /// Unblock the blocked coroutine, setting its status to Status::RUNNABLE 296 /// @return coroutine priority which is used in the runnable queue
|
| D | stackful_coroutine.cpp | 63 SetStatus(Coroutine::Status::RUNNABLE); in AttachToCoroutine() 176 SetStatus(getsBlocked ? Coroutine::Status::BLOCKED : Coroutine::Status::RUNNABLE); in RequestSuspend() 187 SetStatus(Coroutine::Status::RUNNABLE); in RequestUnblock()
|
| D | stackful_coroutine_manager.h | 274 // active coroutines are runnable + running coroutines
|
| /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/runtime_core/static_core/runtime/tests/ |
| D | thread_test.cpp | 185 expected = "Runnable"; in GetThreadStatus()
|
| /arkcompiler/runtime_core/static_core/runtime/include/ |
| D | thread_proxy_static.h | 70 /// Transition to suspended and back to runnable, re-acquire share on mutator_lock_
|
| /arkcompiler/ets_frontend/test262/ |
| D | run_test262.py | 171 def run_check(runnable, env=None): argument 172 report_command('Test command:', runnable, env=env) 179 proc = subprocess.Popen(runnable, env=env)
|
| /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/cmake/ |
| D | PandaAssembly.cmake | 87 # Add a single buildable and runnable Panda Assembly file to the build tree.
|
| /arkcompiler/runtime_core/static_core/runtime/ |
| D | thread.cpp | 486 return "Runnable"; in ThreadStatusAsString()
|