/third_party/jerryscript/targets/nuttx-stm32f4/ |
D | jerry_main.c | 77 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: cannot open file: %s\n", file_name); in read_file() 84 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Failed to seek (error: %d)\n", fseek_status); in read_file() 92 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Failed to get the file size(error %ld)\n", script_len); in read_file() 103 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Out of memory error\n"); in read_file() 112 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to read file: %s\n", file_name); in read_file() 257 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "%c", source_p[pos]); in print_unhandled_exception() 263 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "\n"); in print_unhandled_exception() 267 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "~"); in print_unhandled_exception() 270 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "^\n"); in print_unhandled_exception() 275 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Script Error: %s\n", err_str_buf); in print_unhandled_exception() [all …]
|
D | jerry_port.c | 49 jerry_port_log (jerry_log_level_t level, /**< log level */ in jerry_port_log() function 88 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to open file: %s\n", file_name_p); in jerry_port_read_source() 99 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to allocate memory for module"); in jerry_port_read_source() 110 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to read file: %s\n", file_name_p); in jerry_port_read_source()
|
/third_party/jerryscript/jerry-main/ |
D | main-unix-snapshot.c | 99 …jerry_port_log (JERRY_LOG_LEVEL_WARNING, "Ignoring '%s' option because this feature is disabled!\n… in check_feature() 118 … jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: %s %s\n", cli_state_p->error, cli_state_p->arg); in check_cli_error() 122 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: %s\n", cli_state_p->error); in check_cli_error() 145 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to open file: %s\n", file_name); in read_file() 156 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to read file: %s\n", file_name); in read_file() 162 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: file too large: %s\n", file_name); in read_file() 183 … jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Snapshot error: [value cannot be converted to string]\n"); in print_unhandled_exception() 192 … jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Snapshot error: [value cannot be converted to string]\n"); in print_unhandled_exception() 202 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Snapshot error: %s\n", (char *) err_str_buf); in print_unhandled_exception() 307 … jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: Exactly one input file must be specified\n"); in process_generate() [all …]
|
D | main-unix.c | 58 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to open file, missing filename\n"); in read_file() 72 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to open file: %s\n", file_name); in read_file() 80 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to read file: %s\n", file_name); in read_file() 242 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "%c", buffer[pos]); in print_unhandled_exception() 248 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "\n"); in print_unhandled_exception() 252 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "~"); in print_unhandled_exception() 255 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "^\n"); in print_unhandled_exception() 260 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Script Error: %s\n", err_str_buf); in print_unhandled_exception() 275 jerry_port_log (JERRY_LOG_LEVEL_WARNING, "Warning: failed to register '%s' method.", name_p); in register_js_function() 392 …jerry_port_log (JERRY_LOG_LEVEL_WARNING, "Ignoring '%s' option because this feature is disabled!\n… in check_feature() [all …]
|
D | main-unix-test.c | 42 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to open file: %s\n", file_name); in read_file() 49 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to read file: %s\n", file_name); in read_file() 127 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Unhandled exception: Script Error!\n"); in main()
|
/third_party/jerryscript/jerry-ext/handler/ |
D | handler-assert.c | 48 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Script Error: assertion failed\n"); in jerryx_handler_assert_fatal() 52 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Script backtrace (top 5):\n"); in jerryx_handler_assert_fatal() 71 jerry_port_log (JERRY_LOG_LEVEL_ERROR, " %"PRIu32": ", idx); in jerryx_handler_assert_fatal() 80 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "%s", string_buffer); in jerryx_handler_assert_fatal() 85 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "\n"); in jerryx_handler_assert_fatal()
|
/third_party/jerryscript/jerry-ext/common/ |
D | jext-common.h | 90 #define JERRYX_ERROR_MSG(...) jerry_port_log (JERRY_LOG_LEVEL_ERROR, __VA_ARGS__) 91 #define JERRYX_WARNING_MSG(...) jerry_port_log (JERRY_LOG_LEVEL_WARNING, __VA_ARGS__) 92 #define JERRYX_DEBUG_MSG(...) jerry_port_log (JERRY_LOG_LEVEL_DEBUG, __VA_ARGS__) 93 #define JERRYX_TRACE_MSG(...) jerry_port_log (JERRY_LOG_LEVEL_TRACE, __VA_ARGS__)
|
/third_party/jerryscript/jerry-core/jrt/ |
D | jrt.h | 115 #define JERRY_ERROR_MSG(...) jerry_port_log (JERRY_LOG_LEVEL_ERROR, __VA_ARGS__) 116 #define JERRY_WARNING_MSG(...) jerry_port_log (JERRY_LOG_LEVEL_WARNING, __VA_ARGS__) 117 #define JERRY_DEBUG_MSG(...) jerry_port_log (JERRY_LOG_LEVEL_DEBUG, __VA_ARGS__) 118 #define JERRY_TRACE_MSG(...) jerry_port_log (JERRY_LOG_LEVEL_TRACE, __VA_ARGS__)
|
/third_party/jerryscript/targets/esp8266/user/ |
D | jerry_port.c | 29 jerry_port_log (jerry_log_level_t level, /**< log level */ in jerry_port_log() function 47 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Jerry Fatal Error!\n"); in jerry_port_fatal()
|
/third_party/jerryscript/targets/zephyr/src/ |
D | jerry-port.c | 27 jerry_port_log (jerry_log_level_t level, /**< log level */ in jerry_port_log() function 45 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Jerry Fatal Error!\n"); in jerry_port_fatal()
|
D | main-zephyr.c | 41 jerry_port_log (JERRY_LOG_LEVEL_WARNING, "Warning: failed to register '%s' method.", name_p); in register_js_function()
|
/third_party/jerryscript/targets/curie_bsp/source/ |
D | curie-bsp-port.c | 28 jerry_port_log (jerry_log_level_t level, /**< log level */ in jerry_port_log() function 50 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Jerry Fatal Error!\n"); in jerry_port_fatal()
|
/third_party/jerryscript/jerry-port/default/ |
D | default-module.c | 53 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to open file: %s\n", file_name_p); in jerry_port_read_source() 64 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to allocate memory for module"); in jerry_port_read_source() 75 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Error: failed to read file: %s\n", file_name_p); in jerry_port_read_source()
|
D | default-io.c | 79 jerry_port_log (jerry_log_level_t level, /**< message log level */ in jerry_port_log() function
|
/third_party/jerryscript/tests/unit-ext/ |
D | test-common.h | 30 jerry_port_log (JERRY_LOG_LEVEL_ERROR, \
|
/third_party/jerryscript/tests/unit-core/ |
D | test-common.h | 35 jerry_port_log (JERRY_LOG_LEVEL_ERROR, \
|
D | test-regression-3588.c | 45 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Skipping test, ES2015 support is disabled.\n"); in main()
|
D | test-dataview.c | 26 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "DataView support is disabled!\n"); in main()
|
D | test-container.c | 29 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Containers are disabled!\n"); in main()
|
D | test-resource-name.c | 43 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "Line info support is disabled!\n"); in main()
|
/third_party/jerryscript/jerry-ext/debugger/ |
D | debugger-tcp.c | 117 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "TCP Error: %s\n", error_message); in jerryx_debugger_tcp_log_error() 120 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "TCP Error: %s\n", strerror (errno_value)); in jerryx_debugger_tcp_log_error()
|
/third_party/jerryscript/jerry-core/api/ |
D | jerryscript_adapter.c | 54 jerry_port_log (JERRY_LOG_LEVEL_ERROR, "[JERRYSCRIPT]Init g_contextRecords Error.\n"); in JerryInitContextRecords()
|
/third_party/jerryscript/jerry-core/include/ |
D | jerryscript-port.h | 108 void JERRY_ATTR_FORMAT (printf, 2, 3) jerry_port_log (jerry_log_level_t level, const char *format, …
|
/third_party/jerryscript/targets/mbedos5/source/ |
D | jerry_port_mbed.c | 30 jerry_port_log (jerry_log_level_t level, /**< log level */ in jerry_port_log() function
|
/third_party/jerryscript/jerry-ext/handle-scope/ |
D | handle-scope-internal.h | 33 jerry_port_log (JERRY_LOG_LEVEL_ERROR, \
|