Searched refs:jerry_context_t (Results 1 – 15 of 15) sorted by relevance
/third_party/jerryscript/jerry-port/default/ |
D | default-external-context.c | 21 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/ |
D | external-context-helpers.c | 37 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()
|
D | generate-bytecode.h | 43 jerry_context_t *context_p;
|
D | jerry.c | 231 …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/ |
D | jerry_port.c | 209 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/ |
D | jcontext.c | 126 jerry_context_t jerry_global_context; 149 jerry_context_t *jerry_dynamic_global_context_p = NULL;
|
D | jcontext.h | 120 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/ |
D | jerryscript-port-default.h | 38 void jerry_port_default_set_current_context (jerry_context_t *context_p);
|
/third_party/jerryscript/tests/unit-core/ |
D | test-native-callback-nested.c | 56 jerry_context_t *ctx_p = jerry_create_context (1024, context_alloc_fn, NULL); in main()
|
/third_party/jerryscript/jerry-core/include/ |
D | jerryscript-port.h | 171 struct jerry_context_t *jerry_port_get_current_context (void);
|
D | jerryscript-core.h | 321 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/ |
D | 05.PORT-API.md | 222 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 *
|
D | 02.API-REFERENCE.md | 312 ## 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/ |
D | main-unix-snapshot.c | 80 …jerry_context_t *context_p = jerry_create_context (JERRY_GLOBAL_HEAP_SIZE * 1024, context_alloc, N… in context_init()
|
D | main-unix.c | 688 …jerry_context_t *context_p = jerry_create_context (JERRY_GLOBAL_HEAP_SIZE * 1024, context_alloc, N… in main()
|