Lines Matching refs:js_function
141 handle_clear_require_cache (const jerry_value_t js_function, in handle_clear_require_cache() argument
146 (void) js_function; in handle_clear_require_cache()
157 handle_require (const jerry_value_t js_function, in handle_require() argument
162 (void) js_function; in handle_require()
201 jerry_value_t js_global = 0, js_function = 0, js_property_name = 0; in main() local
213 js_function = jerry_create_external_function (handle_require); in main()
215 res = jerry_set_property (js_global, js_property_name, js_function); in main()
220 jerry_release_value (js_function); in main()
222 js_function = jerry_create_external_function (handle_clear_require_cache); in main()
224 res = jerry_set_property (js_global, js_property_name, js_function); in main()
229 jerry_release_value (js_function); in main()