/openbmc/linux/arch/m68k/fpsp040/ |
H A D | tbldo.S | 63 .long serror |$01-5 fint ERROR 64 .long serror |$01-6 fint ERROR 65 .long serror |$01-7 fint ERROR 72 .long serror |$02-5 fsinh ERROR 73 .long serror |$02-6 fsinh ERROR 74 .long serror |$02-7 fsinh ERROR 81 .long serror |$03-5 fintrz ERROR 82 .long serror |$03-6 fintrz ERROR 83 .long serror |$03-7 fintrz ERROR 85 .long serror |$04-0 ERROR - illegal extension [all …]
|
/openbmc/qemu/scripts/ |
H A D | checkpatch.pl | 1320 sub ERROR { subroutine 1348 ERROR("Do not add expected files together with tests, " . 1406 ERROR("Saw unacceptable licenses '" . join(',', @unknown) . 1627 ERROR("do not set execute permissions for source files\n" . $permhere); 1634 ERROR("please use python3 interpreter\n" . $herecurr); 1643 ERROR("Author email address is mangled by the mailing list\n" . $herecurr); 1653 ERROR("The correct form is \"Signed-off-by\"\n" . 1657 ERROR("space required after Signed-off-by:\n" . 1686 ERROR("expected 'SPDX-License-Identifer' in new file $expect_spdx_file"); 1717 ERROR("Tag $tag not permitted in QEMU code, valid " . [all …]
|
/openbmc/linux/tools/thermal/thermometer/ |
H A D | thermometer.c | 91 ERROR("Invalid regular expression\n"); in configuration_default_init() 109 ERROR("'%s' is not accessible\n", path); in configuration_init() 121 ERROR("Failed to parse %s:%d - %s\n", config_error_file(&cfg), in configuration_init() 129 ERROR("No thermal zone configured to be monitored\n"); in configuration_init() 145 ERROR("Missing node name '%d'\n", i); in configuration_init() 150 ERROR("Thermal zone name not found\n"); in configuration_init() 155 ERROR("Polling value not found"); in configuration_init() 164 ERROR("Invalid regular expression '%s'\n", name); in configuration_init() 249 ERROR("Usage: %s --help\n", argv[0]); in options_init() 267 ERROR("Failed to open '%s': %m\n", tz_path); in thermometer_add_tz() [all …]
|
/openbmc/linux/scripts/dtc/ |
H A D | dtc-parser.y | 16 #define ERROR(loc, ...) \ macro 130 ERROR(&@2, "Header flags don't match earlier ones"); 177 ERROR(&@2, "Label or path %s not found", $1); 179 ERROR(&@2, "Label-relative reference %s not supported in plugin", $1); 190 ERROR(&@2, "Label-relative reference %s not supported in plugin", $3); 196 ERROR(&@3, "Label or path %s not found", $3); 208 ERROR(&@2, "Label-relative reference %s not supported in plugin", $2); 216 ERROR(&@2, "Label or path %s not found", $2); 235 ERROR(&@2, "Label or path %s not found", $2); 246 ERROR(&@3, "Label or path %s not found", $3); [all …]
|
/openbmc/linux/lib/zstd/common/ |
H A D | error_private.h | 43 #undef ERROR /* already defined on Visual Studio */ 44 #define ERROR(name) ZSTD_ERROR(name) macro 47 ERR_STATIC unsigned ERR_isError(size_t code) { return (code > ERROR(maxCode)); } in ERR_isError() 104 __FILE__, __LINE__, ERR_QUOTE(cond), ERR_QUOTE(ERROR(err))); \ 108 return ERROR(err); \ 119 __FILE__, __LINE__, ERR_QUOTE(ERROR(err))); \ 123 return ERROR(err); \
|
H A D | entropy_common.c | 81 if (countSize > hbSize) return ERROR(corruption_detected); in FSE_readNCount_body() 90 if (nbBits > FSE_TABLELOG_ABSOLUTE_MAX) return ERROR(tableLog_tooLarge); in FSE_readNCount_body() 196 if (remaining != 1) return ERROR(corruption_detected); in FSE_readNCount_body() 198 if (charnum > maxSV1) return ERROR(maxSymbolValue_tooSmall); in FSE_readNCount_body() 199 if (bitCount > 32) return ERROR(corruption_detected); in FSE_readNCount_body() 271 if (!srcSize) return ERROR(srcSize_wrong); in HUF_readStats_body() 278 if (iSize+1 > srcSize) return ERROR(srcSize_wrong); in HUF_readStats_body() 279 if (oSize >= hwSize) return ERROR(corruption_detected); in HUF_readStats_body() 287 if (iSize+1 > srcSize) return ERROR(srcSize_wrong); in HUF_readStats_body() 297 if (huffWeight[n] > HUF_TABLELOG_MAX) return ERROR(corruption_detected); in HUF_readStats_body() [all …]
|
H A D | fse_decompress.c | 83 …if (FSE_BUILD_DTABLE_WKSP_SIZE(tableLog, maxSymbolValue) > wkspSize) return ERROR(maxSymbolValue_t… in FSE_buildDTable_internal() 84 if (maxSymbolValue > FSE_MAX_SYMBOL_VALUE) return ERROR(maxSymbolValue_tooLarge); in FSE_buildDTable_internal() 85 if (tableLog > FSE_MAX_TABLELOG) return ERROR(tableLog_tooLarge); in FSE_buildDTable_internal() 161 …if (position!=0) return ERROR(GENERIC); /* position must reach all cells once, otherwise normali… in FSE_buildDTable_internal() 217 if (nbBits < 1) return ERROR(GENERIC); /* min size */ in FSE_buildDTable_raw() 276 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSE_decompress_usingDTable_generic() 283 if (op>(omax-2)) return ERROR(dstSize_tooSmall); in FSE_decompress_usingDTable_generic() 332 if (wkspSize < sizeof(*wksp)) return ERROR(GENERIC); in FSE_decompress_wksp_body() 338 if (tableLog > maxLog) return ERROR(tableLog_tooLarge); in FSE_decompress_wksp_body() 344 …if (FSE_DECOMPRESS_WKSP_SIZE(tableLog, maxSymbolValue) > wkspSize) return ERROR(tableLog_tooLarge); in FSE_decompress_wksp_body()
|
/openbmc/linux/tools/objtool/ |
H A D | builtin-check.c | 12 #define ERROR(format, ...) \ macro 147 ERROR("--dump can't be combined with other options"); in opts_valid() 155 ERROR("--unret requires --rethunk"); in opts_valid() 162 ERROR("At least one command required"); in opts_valid() 169 ERROR("--mnop requires --mcount"); in mnop_opts_valid() 182 ERROR("Linked object detected, forcing --link"); in link_opts_valid() 188 ERROR("--noinstr requires --link"); in link_opts_valid() 193 ERROR("--ibt requires --link"); in link_opts_valid() 198 ERROR("--unret requires --link"); in link_opts_valid()
|
/openbmc/linux/drivers/net/wireless/marvell/mwifiex/ |
H A D | pcie.c | 204 mwifiex_dbg(adapter, ERROR, "failed to map pci memory!\n"); in mwifiex_map_pci_memory() 310 mwifiex_dbg(adapter, ERROR, in mwifiex_pcie_suspend() 671 mwifiex_dbg(adapter, ERROR, in mwifiex_pm_wakeup_card() 711 mwifiex_dbg(adapter, ERROR, in mwifiex_pcie_disable_host_int() 738 mwifiex_dbg(adapter, ERROR, in mwifiex_pcie_enable_host_int() 795 mwifiex_dbg(adapter, ERROR, in mwifiex_init_rxq_ring() 853 mwifiex_dbg(adapter, ERROR, in mwifiex_pcie_init_evt_ring() 1022 mwifiex_dbg(adapter, ERROR, in mwifiex_pcie_create_txbd_ring() 1089 mwifiex_dbg(adapter, ERROR, in mwifiex_pcie_create_rxbd_ring() 1158 mwifiex_dbg(adapter, ERROR, in mwifiex_pcie_create_evtbd_ring() [all …]
|
H A D | sdio.c | 717 mwifiex_dbg(adapter, ERROR, in mwifiex_write_data_sync() 915 mwifiex_dbg(adapter, ERROR, in mwifiex_sdio_suspend() 1134 mwifiex_dbg(adapter, ERROR, in mwifiex_write_data_to_card() 1138 mwifiex_dbg(adapter, ERROR, in mwifiex_write_data_to_card() 1234 mwifiex_dbg(adapter, ERROR, in mwifiex_get_wr_port_data() 1267 mwifiex_dbg(adapter, ERROR, in mwifiex_sdio_poll_card_status() 1302 mwifiex_dbg(adapter, ERROR, "read mp_regs failed\n"); in mwifiex_interrupt_status() 1367 mwifiex_dbg(adapter, ERROR, in mwifiex_sdio_enable_host_int() 1376 mwifiex_dbg(adapter, ERROR, in mwifiex_sdio_enable_host_int() 1397 mwifiex_dbg(adapter, ERROR, in mwifiex_sdio_card_to_host() [all …]
|
H A D | cfg80211.c | 153 mwifiex_dbg(priv->adapter, ERROR, "deleting the crypto keys\n"); in mwifiex_cfg80211_del_key() 210 mwifiex_dbg(priv->adapter, ERROR, "invalid buffer and length\n"); in mwifiex_cfg80211_mgmt_tx() 230 mwifiex_dbg(priv->adapter, ERROR, in mwifiex_cfg80211_mgmt_tx() 291 mwifiex_dbg(priv->adapter, ERROR, "Invalid parameter for ROC\n"); in mwifiex_cfg80211_remain_on_channel() 448 mwifiex_dbg(priv->adapter, ERROR, "set default Tx key index\n"); in mwifiex_cfg80211_set_default_key() 485 mwifiex_dbg(priv->adapter, ERROR, "crypto keys added\n"); in mwifiex_cfg80211_add_key() 514 mwifiex_dbg(priv->adapter, ERROR, in mwifiex_cfg80211_set_default_mgmt_key() 550 mwifiex_dbg(adapter, ERROR, in mwifiex_send_domain_info_cmd_fw() 656 mwifiex_dbg(adapter, ERROR, in mwifiex_reg_notifier() 727 mwifiex_dbg(adapter, ERROR, in mwifiex_cfg80211_set_wiphy_params() [all …]
|
H A D | txrx.c | 41 mwifiex_dbg(adapter, ERROR, in mwifiex_handle_rx_packet() 132 mwifiex_dbg(adapter, ERROR, "data: -EBUSY is returned\n"); in mwifiex_process_tx() 135 mwifiex_dbg(adapter, ERROR, in mwifiex_process_tx() 144 mwifiex_dbg(adapter, ERROR, in mwifiex_process_tx() 172 mwifiex_dbg(adapter, ERROR, in mwifiex_host_to_card() 192 mwifiex_dbg(adapter, ERROR, "data: -ENOSR is returned\n"); in mwifiex_host_to_card() 207 mwifiex_dbg(adapter, ERROR, "data: -EBUSY is returned\n"); in mwifiex_host_to_card() 210 mwifiex_dbg(adapter, ERROR, in mwifiex_host_to_card()
|
/openbmc/u-boot/scripts/dtc/ |
H A D | dtc-parser.y | 29 #define ERROR(loc, ...) \ macro 132 ERROR(&@2, "Header flags don't match earlier ones"); 177 ERROR(&@2, "Label or path %s not found", $1); 188 ERROR(&@3, "Label or path %s not found", $3); 206 ERROR(&@2, "Label or path %s not found", $2); 217 ERROR(&@3, "Label or path %s not found", $3); 335 ERROR(&@2, "Array elements must be" 361 ERROR(&@2, "Value out of range for" 376 ERROR(&@2, "References are only allowed in " 463 ERROR(&@$, "Division by zero"); [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/ |
H A D | test_bpftool_build.sh | 28 ERROR=0 36 exit $ERROR 46 ERROR=1 && printf "FAILURE: Did not find bpftool\n" 54 ERROR=1 81 ERROR=1
|
/openbmc/linux/tools/testing/selftests/futex/include/ |
H A D | logging.h | 52 const char *ERROR = ERROR_NORMAL; variable 75 ERROR = ERROR_COLOR; in log_color() 79 ERROR = ERROR_NORMAL; in log_color() 136 ERROR, strerror(err), ##args); \ 138 fprintf(stderr, "\t%s: "message, ERROR, ##args); \
|
/openbmc/linux/arch/powerpc/kernel/ |
H A D | prom_init_check.sh | 39 ERROR=0 48 ERROR=1 84 ERROR=1 94 exit $ERROR
|
/openbmc/u-boot/scripts/ |
H A D | checkpatch.pl | 2084 sub ERROR { subroutine 2450 ERROR("MODIFIED_INCLUDE_ASM", 2495 ERROR("DIFF_IN_COMMIT_MSG", 2505 ERROR("EXECUTE_PERMISSIONS", 2564 ERROR("BAD_SIGN_OFF", 2601 ERROR("STABLE_ADDRESS", 2607 ERROR("GERRIT_CHANGE_ID", 2696 ERROR("GIT_COMMIT_ID", 2715 ERROR("CORRUPTED_PATCH", 2795 if (ERROR("DOS_LINE_ENDINGS", [all …]
|
/openbmc/linux/tools/thermal/thermal-engine/ |
H A D | thermal-engine.c | 295 ERROR("Usage: %s --help\n", argv[0]); in main() 300 ERROR("Failed to daemonize: %p\n"); in main() 305 ERROR("Failed to initialize logging facility\n"); in main() 311 ERROR("Failed to initialize the thermal library\n"); in main() 317 ERROR("No thermal zone available\n"); in main() 324 ERROR("Failed to initialize the mainloop\n"); in main() 329 ERROR("Failed to setup the mainloop\n"); in main() 336 ERROR("Mainloop failed\n"); in main()
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/ |
H A D | rdist-6.1.5-fix-msgsndnotify-loop.patch | 16 - (void) sprintf(buf, "REMOTE ERROR: %s", msg); 18 - (void) sprintf(buf, "LOCAL ERROR: %s", msg); 30 + (void) sprintf(buf, "REMOTE ERROR: %s", msg); 32 + (void) sprintf(buf, "LOCAL ERROR: %s", msg);
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 098.out | 32 ERROR cluster 0 refcount=0 reference=1 33 ERROR cluster 1 refcount=0 reference=1 34 ERROR cluster 3 refcount=0 reference=1 46 ERROR cluster 0 refcount=0 reference=1 47 ERROR cluster 1 refcount=0 reference=1 48 ERROR cluster 3 refcount=0 reference=1
|
H A D | 108.out | 8 ERROR cluster 0 refcount=0 reference=1 9 ERROR cluster 3 refcount=0 reference=1 10 ERROR cluster 4 refcount=0 reference=1 11 ERROR cluster 5 refcount=0 reference=1 33 ERROR cluster 256 refcount=0 reference=1 66 ERROR cluster 16 refcount=0 reference=1 83 ERROR could not resize image: Invalid argument 99 ERROR could not resize image: Invalid argument 119 ERROR cluster 0 refcount=0 reference=1 141 ERROR cluster 0 refcount=0 reference=1 [all …]
|
H A D | 060.out | 6 ERROR cluster 3 refcount=1 reference=3 33 ERROR refcount block 0 refcount=2 34 ERROR cluster 2 refcount=1 reference=2 42 ERROR refcount block 0 refcount=2 43 ERROR cluster 2 refcount=1 reference=2 66 ERROR cluster 4 refcount=1 reference=2 78 ERROR cluster 4 refcount=1 reference=2 193 ERROR cluster 0 refcount=0 reference=1 194 ERROR cluster 1 refcount=0 reference=1 195 ERROR cluster 3 refcount=0 reference=1 [all …]
|
/openbmc/linux/scripts/ |
H A D | checkpatch.pl | 2468 sub ERROR { subroutine 2876 ERROR("MODIFIED_INCLUDE_ASM", 2946 ERROR("DIFF_IN_COMMIT_MSG", 2956 ERROR("EXECUTE_PERMISSIONS", 3075 ERROR("BAD_SIGN_OFF", 3258 if (ERROR("GERRIT_CHANGE_ID", 3399 ERROR("GIT_COMMIT_ID", 3434 ERROR("CORRUPTED_PATCH", 3582 if (ERROR("DOS_LINE_ENDINGS", 3589 if (ERROR("TRAILING_WHITESPACE", [all …]
|
/openbmc/linux/lib/zstd/decompress/ |
H A D | huf_decompress.c | 177 return ERROR(corruption_detected); in HUF_DecompressAsmArgs_init() 205 if (length4 > srcSize) return ERROR(corruption_detected); /* overflow */ in HUF_DecompressAsmArgs_init() 251 return ERROR(corruption_detected); in HUF_initRemainingDStream() 258 return ERROR(corruption_detected); in HUF_initRemainingDStream() 348 if (sizeof(*wksp) > wkspSize) return ERROR(tableLog_tooLarge); in HUF_readDTableX1_wksp_bmi2() 362 …if (tableLog > (U32)(dtd.maxTableLog+1)) return ERROR(tableLog_tooLarge); /* DTable too small, H… in HUF_readDTableX1_wksp_bmi2() 543 if (!BIT_endOfDStream(&bitD)) return ERROR(corruption_detected); in HUF_decompress1X1_usingDTable_internal_body() 555 …if (cSrcSize < 10) return ERROR(corruption_detected); /* strict minimum : jump table + 1 byte per… in HUF_decompress4X1_usingDTable_internal_body() 589 if (length4 > cSrcSize) return ERROR(corruption_detected); /* overflow */ in HUF_decompress4X1_usingDTable_internal_body() 590 if (opStart4 > oend) return ERROR(corruption_detected); /* overflow */ in HUF_decompress4X1_usingDTable_internal_body() [all …]
|
/openbmc/linux/drivers/usb/gadget/function/ |
H A D | u_uac1_legacy.c | 128 ERROR(snd->card, in playback_default_hw_params() 166 ERROR(card, "Preparing sound card failed: %d\n", in u_audio_playback() 175 ERROR(card, "Playback error: %d\n", (int)result); in u_audio_playback() 214 ERROR(card, "unable to open sound control device file: %s\n", in gaudio_open_snd_dev() 227 ERROR(card, "No such PCM playback device: %s\n", fn_play); in gaudio_open_snd_dev() 240 ERROR(card, "No such PCM capture device: %s\n", fn_cap); in gaudio_open_snd_dev() 291 ERROR(card, "we need at least one control device\n"); in gaudio_setup()
|