Home
last modified time | relevance | path

Searched refs:job_queue_head_p (Results 1 – 2 of 2) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-jobqueue.c65 JERRY_CONTEXT (job_queue_head_p) = NULL; in ecma_job_queue_init()
261 if (JERRY_CONTEXT (job_queue_head_p) == NULL) in ecma_enqueue_job()
263 JERRY_CONTEXT (job_queue_head_p) = job_p; in ecma_enqueue_job()
327 while (JERRY_CONTEXT (job_queue_head_p) != NULL && !ECMA_IS_VALUE_ERROR (ret)) in ecma_process_all_enqueued_jobs()
329 ecma_job_queue_item_t *job_p = JERRY_CONTEXT (job_queue_head_p); in ecma_process_all_enqueued_jobs()
330 JERRY_CONTEXT (job_queue_head_p) = ecma_job_queue_get_next (job_p); in ecma_process_all_enqueued_jobs()
360 while (JERRY_CONTEXT (job_queue_head_p) != NULL) in ecma_free_all_enqueued_jobs()
362 ecma_job_queue_item_t *job_p = JERRY_CONTEXT (job_queue_head_p); in ecma_free_all_enqueued_jobs()
363 JERRY_CONTEXT (job_queue_head_p) = ecma_job_queue_get_next (job_p); in ecma_free_all_enqueued_jobs()
/third_party/jerryscript/jerry-core/jcontext/
Djcontext.h183 ecma_job_queue_item_t *job_queue_head_p; /**< points to the head item of the job queue */ member