Home
last modified time | relevance | path

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

/third_party/jerryscript/jerry-ext/handle-scope/
Dhandle-scope-allocator.c84 jerryx_handle_scope_dynamic_t *dy_scope = (jerryx_handle_scope_dynamic_t *) scope; in jerryx_handle_scope_get_parent() local
85 if (dy_scope == jerryx_handle_scope_pool.start) in jerryx_handle_scope_get_parent()
89 jerryx_handle_scope_dynamic_t *parent = dy_scope->parent; in jerryx_handle_scope_get_parent()
159 jerryx_handle_scope_dynamic_t *dy_scope = malloc (sizeof (jerryx_handle_scope_dynamic_t)); in jerryx_handle_scope_alloc() local
160 JERRYX_HANDLE_SCOPE_ASSERT (dy_scope != NULL); in jerryx_handle_scope_alloc()
161 dy_scope->child = NULL; in jerryx_handle_scope_alloc()
166 dy_scope->parent = dy_current; in jerryx_handle_scope_alloc()
167 dy_current->child = dy_scope; in jerryx_handle_scope_alloc()
171 jerryx_handle_scope_pool.start = dy_scope; in jerryx_handle_scope_alloc()
172 dy_scope->parent = NULL; in jerryx_handle_scope_alloc()
[all …]