Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-jobqueue.c75 ecma_job_queue_get_type (ecma_job_queue_item_t *job_p) /**< the job */ in ecma_job_queue_get_type() argument
77 return (ecma_job_queue_item_type_t) (job_p->next_and_type & ECMA_JOB_QUEURE_TYPE_MASK); in ecma_job_queue_get_type()
86 ecma_job_queue_get_next (ecma_job_queue_item_t *job_p) /**< the job */ in ecma_job_queue_get_next() argument
88 return (ecma_job_queue_item_t *) (job_p->next_and_type & ~ECMA_JOB_QUEURE_TYPE_MASK); in ecma_job_queue_get_next()
95 ecma_free_promise_reaction_job (ecma_job_promise_reaction_t *job_p) /**< points to the PromiseReact… in ecma_free_promise_reaction_job() argument
97 JERRY_ASSERT (job_p != NULL); in ecma_free_promise_reaction_job()
99 ecma_free_value (job_p->capability); in ecma_free_promise_reaction_job()
100 ecma_free_value (job_p->handler); in ecma_free_promise_reaction_job()
101 ecma_free_value (job_p->argument); in ecma_free_promise_reaction_job()
103 jmem_heap_free_block (job_p, sizeof (ecma_job_promise_reaction_t)); in ecma_free_promise_reaction_job()
[all …]