Home
last modified time | relevance | path

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

/third_party/jerryscript/targets/riot-stm32f4/source/
Dmain-riotos.c35 jerry_external_handler_t handler_p) /**< function callback */ in register_js_function() argument
37 …rry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_p); in register_js_function()
/third_party/jerryscript/targets/zephyr/src/
Dmain-zephyr.c35 jerry_external_handler_t handler_p) /**< function callback */ in register_js_function() argument
37 …rry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_p); in register_js_function()
/third_party/jerryscript/jerry-ext/handler/
Dhandler-register.c29 jerry_external_handler_t handler_p) /**< function callback */ in jerryx_handler_register_global() argument
33 jerry_value_t function_val = jerry_create_external_function (handler_p); in jerryx_handler_register_global()
/third_party/jerryscript/tests/unit-core/
Dtest-promise.cpp101 jerry_external_handler_t handler_p) /**< function callback */ in register_js_function() argument
105 jerry_value_t function_val = jerry_create_external_function (handler_p); in register_js_function()
Dtest-newtarget.cpp27 jerry_external_handler_t handler_p) /**< function callback */ in register_js_function() argument
31 jerry_value_t function_val = jerry_create_external_function (handler_p); in register_js_function()
Dtest-proxy.cpp146 jerry_external_handler_t handler_p) /**< function callback */ in set_function() argument
148 jerry_value_t function_val = jerry_create_external_function (handler_p); in set_function()
/third_party/jerryscript/targets/nuttx-stm32f4/
Djerry_main.c284 jerry_external_handler_t handler_p) /**< function callback */ in register_js_function() argument
286 …rry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_p); in register_js_function()
/third_party/jerryscript/jerry-ext/include/jerryscript-ext/
Dhandler.h31 jerry_external_handler_t handler_p);
/third_party/jerryscript/docs/
D10.EXT-REFERENCE-HANDLER.md564 jerry_external_handler_t handler_p);
568 - `handler_p` - the address of the external function handler.
582 jerry_external_handler_t handler_p;
599 common_functions[i].handler_p);
D02.API-REFERENCE.md4057 jerry_create_external_function (jerry_external_handler_t handler_p);
4060 - `handler_p` - pointer to native handler of the function object
/third_party/jerryscript/jerry-main/
Dmain-unix.c269 jerry_external_handler_t handler_p) /**< function callback */ in register_js_function() argument
271 …rry_value_t result_val = jerryx_handler_register_global ((const jerry_char_t *) name_p, handler_p); in register_js_function()
/third_party/jerryscript/tests/unit-ext/
Dtest-ext-arg.c900 jerry_external_handler_t handler_p) /**< function callback */ in register_js_function() argument
904 jerry_value_t function_val = jerry_create_external_function (handler_p); in register_js_function()
/third_party/jerryscript/jerry-core/include/
Djerryscript-core.h501 jerry_value_t jerry_create_external_function (jerry_external_handler_t handler_p);
/third_party/jerryscript/jerry-core/api/
Djerry.c1540 jerry_create_external_function (jerry_external_handler_t handler_p) /**< pointer to native handler in jerry_create_external_function() argument
1545 ecma_object_t *func_obj_p = ecma_op_create_external_function_object (handler_p); in jerry_create_external_function()