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