Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-port/default/
Ddefault-external-context.c21 extern jerry_context_t *jerry_dynamic_global_context_p;
39 jerry_port_default_set_current_context (jerry_context_t *context_p) /**< store created context */ in jerry_port_default_set_current_context()
65 jerry_context_t *
77 jerry_port_default_set_current_context (jerry_context_t *context_p) /**< points to the created cont… in jerry_port_default_set_current_context()
87 jerry_context_t *
97 static jerry_context_t *current_context_p = NULL;
103 jerry_port_default_set_current_context (jerry_context_t *context_p) /**< points to the created cont… in jerry_port_default_set_current_context()
113 jerry_context_t *
/third_party/jerryscript/jerry-core/api/
Dexternal-context-helpers.c37 jerry_context_t * bms_task_context = jerry_create_context (BMS_TASK_HEAP_SIZE * CONVERTION_RATIO, in bms_task_context_init()
63 jerry_context_t * js_task_context = jerry_create_context (JS_TASK_HEAP_SIZE * CONVERTION_RATIO, in js_task_context_init()
77 jerry_context_t * external_context = jerry_create_context (heap_size, alloc, NULL); in jerry_external_context_init()
Dgenerate-bytecode.h43 jerry_context_t *context_p;
Djerry.c231 …memset ((char *) &JERRY_CONTEXT_STRUCT + offsetof (jerry_context_t, JERRY_CONTEXT_FIRST_MEMBER), 0, in jerry_init()
232 sizeof (jerry_context_t) - offsetof (jerry_context_t, JERRY_CONTEXT_FIRST_MEMBER)); in jerry_init()
3489 jerry_context_t *
3498 size_t total_size = sizeof (jerry_context_t) + JMEM_ALIGNMENT; in jerry_create_context()
3514 jerry_context_t *context_p = (jerry_context_t *) alloc (total_size, cb_data_p); in jerry_create_context()
3523 uintptr_t context_ptr = ((uintptr_t) context_p) + sizeof (jerry_context_t); in jerry_create_context()
/third_party/jerryscript/targets/nuttx-stm32f4/
Djerry_port.c209 static jerry_context_t *current_context_p = NULL;
215 jerry_port_default_set_current_context (jerry_context_t *context_p) /**< points to the created cont… in jerry_port_default_set_current_context()
225 jerry_context_t *
/third_party/jerryscript/jerry-core/jcontext/
Djcontext.c126 jerry_context_t jerry_global_context;
149 jerry_context_t *jerry_dynamic_global_context_p = NULL;
Djcontext.h120 struct jerry_context_t struct
253 extern jerry_context_t *jerry_dynamic_global_context_p; argument
283 extern jerry_context_t jerry_global_context;
/third_party/jerryscript/jerry-port/default/include/
Djerryscript-port-default.h38 void jerry_port_default_set_current_context (jerry_context_t *context_p);
/third_party/jerryscript/tests/unit-core/
Dtest-native-callback-nested.c56 jerry_context_t *ctx_p = jerry_create_context (1024, context_alloc_fn, NULL); in main()
/third_party/jerryscript/jerry-core/include/
Djerryscript-port.h171 struct jerry_context_t *jerry_port_get_current_context (void);
Djerryscript-core.h321 typedef struct jerry_context_t jerry_context_t; typedef
614 jerry_context_t *jerry_create_context (uint32_t heap_size, jerry_context_alloc_t alloc, void *cb_da…
/third_party/jerryscript/docs/
D05.PORT-API.md222 struct jerry_context_t *jerry_port_get_current_context (void);
344 static jerry_context_t *current_context_p = NULL;
350 jerry_port_default_set_current_context (jerry_context_t *context_p) /**< points to the created cont…
360 jerry_context_t *
D02.API-REFERENCE.md312 ## jerry_context_t section in JerryScript types
321 typedef struct jerry_context_t jerry_context_t;
7063 jerry_context_t *
7090 __thread jerry_context_t *tls_context;
7092 jerry_context_t *
7148 - [jerry_context_t](#jerry_context_t)
/third_party/jerryscript/jerry-main/
Dmain-unix-snapshot.c80jerry_context_t *context_p = jerry_create_context (JERRY_GLOBAL_HEAP_SIZE * 1024, context_alloc, N… in context_init()
Dmain-unix.c688jerry_context_t *context_p = jerry_create_context (JERRY_GLOBAL_HEAP_SIZE * 1024, context_alloc, N… in main()