/openbmc/qemu/scripts/codeconverter/codeconverter/ |
H A D | qom_type_info.py | 181 # self.warn("function name %s doesn't have expected %s suffix", 186 # self.warn("inconsistent function names: %s", ' '.join(funcs)) 241 self.warn("%s class_size is not sizeof?", self.name) 245 self.warn("%s class size type (%s) is not *Class?", self.name, classtype) 280 self.warn("TYPE_INFO(%s) line not found", self.name) 287 self.warn("name not set in TypeInfo variable %s", self.name) 293 self.warn("parent not set in TypeInfo variable %s", self.name) 303 self.warn("can't extract instance type in TypeInfo variable %s", self.name) 304 self.warn("instance_size is set to: %r", values['instance_size'].raw) 313 self.warn("can't extract class type in TypeInfo variable %s", self.name) [all …]
|
/openbmc/linux/arch/arm/kernel/ |
H A D | insn.c | 8 bool warn) in __arm_gen_branch_thumb2() argument 16 WARN_ON_ONCE(warn); in __arm_gen_branch_thumb2() 38 bool link, bool warn) in __arm_gen_branch_arm() argument 48 WARN_ON_ONCE(warn); in __arm_gen_branch_arm() 58 __arm_gen_branch(unsigned long pc, unsigned long addr, bool link, bool warn) in __arm_gen_branch() argument 61 return __arm_gen_branch_thumb2(pc, addr, link, warn); in __arm_gen_branch() 63 return __arm_gen_branch_arm(pc, addr, link, warn); in __arm_gen_branch()
|
/openbmc/openbmc/poky/meta/classes/ |
H A D | oelint.bbclass | 17 bb.warn("%s: DESCRIPTION is not set" % pkgname) 25 bb.warn("%s: HOMEPAGE is not set" % pkgname) 27 bb.warn("%s: HOMEPAGE doesn't start with http:// or https://" % pkgname) 35 bb.warn("%s: SECTION is not set" % pkgname) 37 bb.warn("%s: SECTION should only use lower case" % pkgname) 65 bb.warn("%s: should use BPN instead of PN in %s" % (pkgname, varname)) 67 bb.warn("%s: should use BP instead of P in %s" % (pkgname, varname)) 76 bb.warn("%s: %s doesn't have Signed-off-by" % (pkgname, item)) 78 bb.warn("%s: %s doesn't have Upstream-Status" % (pkgname, item))
|
H A D | useradd-staticids.bbclass | 57 elif error_dynamic == 'warn': 58 bb.warn(msg) 112 …bb.warn("%s: Changing username %s's uid from (%s) to (%s), verify configuration files!" % (d.getVa… 144 …bb.warn("%s: Changing gid for login %s to %s, verify configuration files!" % (d.getVar('PN'), uaar… 230 …bb.warn("%s: Changing groupname %s's gid from (%s) to (%s), verify configuration files!" % (d.getV… 272 #bb.warn("Before: 'USERADD_PARAM:%s' - '%s'" % (pkg, useradd_param)) 274 … #bb.warn("After: 'USERADD_PARAM:%s' - '%s'" % (pkg, d.getVar('USERADD_PARAM:%s' % pkg))) 278 #bb.warn("Before: 'GROUPADD_PARAM:%s' - '%s'" % (pkg, groupadd_param)) 280 … #bb.warn("After: 'GROUPADD_PARAM:%s' - '%s'" % (pkg, d.getVar('GROUPADD_PARAM:%s' % pkg))) 286 #bb.warn("Before: 'EXTRA_USERS_PARAMS' - '%s'" % (d.getVar('EXTRA_USERS_PARAMS'))) [all …]
|
/openbmc/qemu/tests/unit/ |
H A D | test-error-report.c | 22 warn_report("%s", "test warn"); in test_error_report_simple() 31 test-error-report: warning: test warn*\ in test_error_report_simple() 75 warn_report_once("warn"); in test_error_report_once() 84 test-error-report: warning: warn*\ in test_error_report_once() 94 warn_report("warn"); in test_error_report_timestamp() 102 *-*-*:*:* test-error-report: warning: warn*\ in test_error_report_timestamp() 136 g_test_add_func("/error-report/warn", test_error_warn); in main()
|
/openbmc/linux/drivers/net/wireless/silabs/wfx/ |
H A D | key.c | 29 WARN(!(wdev->key_map & BIT(idx)), "inconsistent key allocation"); in wfx_free_key() 36 WARN(key->keylen > sizeof(msg->key_data), "inconsistent data"); in fill_wep_pair() 46 WARN(key->keylen > sizeof(msg->key_data), "inconsistent data"); in fill_wep_group() 58 WARN(key->keylen != sizeof(msg->tkip_key_data) + sizeof(msg->tx_mic_key) + in fill_tkip_pair() 74 WARN(key->keylen != sizeof(msg->tkip_key_data) + 2 * sizeof(msg->rx_mic_key), in fill_tkip_group() 93 WARN(key->keylen != sizeof(msg->aes_key_data), "inconsistent data"); in fill_ccmp_pair() 102 WARN(key->keylen != sizeof(msg->aes_key_data), "inconsistent data"); in fill_ccmp_group() 115 WARN(key->keylen != sizeof(msg->wapi_key_data) + sizeof(msg->mic_key_data), in fill_sms4_pair() 130 WARN(key->keylen != sizeof(msg->wapi_key_data) + sizeof(msg->mic_key_data), in fill_sms4_group() 142 WARN(key->keylen != sizeof(msg->igtk_key_data), "inconsistent data"); in fill_aes_cmac_group() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | libtoaster.js | 109 console.warn(_data.error); 115 console.warn("Call failed"); 116 console.warn(_data); 138 console.warn(_data.error); 144 console.warn("Call failed"); 145 console.warn(_data); 174 console.warn(_data.error); 180 console.warn(_data); 301 console.warn("Failed to load layerDepsModal"); 312 console.warn ("Removing layer from project failed"); [all …]
|
/openbmc/linux/include/asm-generic/ |
H A D | bug.h | 75 * WARN(), WARN_ON(), WARN_ON_ONCE, and so on can be used to report 130 #ifndef WARN 131 #define WARN(condition, format...) ({ \ macro 152 DO_ONCE_LITE_IF(condition, WARN, 1, format) 173 #ifndef WARN 174 #define WARN(condition, format...) ({ \ macro 182 #define WARN_ONCE(condition, format...) WARN(condition, format) 183 #define WARN_TAINT(condition, taint, format...) WARN(condition, format) 184 #define WARN_TAINT_ONCE(condition, taint, format...) WARN(condition, format)
|
/openbmc/linux/scripts/coccinelle/misc/ |
H A D | warn.cocci | 2 /// Use WARN(1,...) rather than printk followed by WARN_ON(1) 35 cocci.print_main("printk + WARN_ON can be just WARN",p) 41 msg = "SUGGESTION: printk + WARN_ON can be just WARN" 50 +WARN(1, 60 WARN(1,es);
|
/openbmc/linux/scripts/ |
H A D | checkpatch.pl | 114 if exceeded, warn on patches 116 --min-conf-desc-length=n set the min description length, if shorter, warn 204 } elsif ($level eq "WARN") { 225 or warn "$P: Can't find a readable $configuration_file file $!\n"; 249 or warn "$P: Can't read the documentation file $docsfile $!\n"; 598 …-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WA… 600 WARN(?:_RATELIMIT|_ONCE|)| 953 warn "No typos will be found - file '$spelling_file': $!\n"; 976 warn "No codespell typos will be found - file '$codespellfile': $!\n"; 1012 or warn "No structs that should be const will be found - file '$conststructsfile': $!\n"; [all …]
|
/openbmc/openbmc/poky/meta/recipes-core/glibc/glibc/ |
H A D | 0002-localedef-fix-ups-hardlink-to-make-it-compile.patch | 123 - warn(_("cannot read %s"), name); 124 + warn(("cannot read %s"), name); 126 - warn(_("cannot read %s"), fp2->name); 127 + warn(("cannot read %s"), fp2->name); 135 - warn(_("cannot stat %s"), name); 136 + warn(("cannot stat %s"), name); 151 - warn(_("failed to hardlink %s to %s (create temporary link as %s failed)"), 152 + warn(("failed to hardlink %s to %s (create temporary link as %s failed)"), 159 - warn(_("failed to hardlink %s to %s (rename temporary link to %s failed)"), 160 + warn(("failed to hardlink %s to %s (rename temporary link to %s failed)"), [all …]
|
/openbmc/phosphor-webui/app/common/components/ |
H A D | alert-banner.js | 16 case 'warn': 35 'alert-banner--warn': $ctrl.type === 'warn', 56 type: '@', // string 'info', 'warn', 'error' or 'success'
|
/openbmc/linux/arch/sh/drivers/pci/ |
H A D | pci.c | 194 unsigned int status_mask, int warn) in pcibios_bus_report_status_early() argument 213 if (warn) in pcibios_bus_report_status_early() 225 int warn) in pcibios_bus_report_status() argument 249 if (warn) in pcibios_bus_report_status() 255 pcibios_bus_report_status(dev->subordinate, status_mask, warn); in pcibios_bus_report_status() 258 void __ref pcibios_report_status(unsigned int status_mask, int warn) in pcibios_report_status() argument 265 hose->index, status_mask, warn); in pcibios_report_status() 267 pcibios_bus_report_status(hose->bus, status_mask, warn); in pcibios_report_status()
|
/openbmc/linux/tools/objtool/ |
H A D | elf.c | 23 #include <objtool/warn.h> 84 WARN("mmap fail " #name); \ 366 WARN("unexpected data attributes for %s", in read_sections() 387 WARN("section entry mismatch"); in read_sections() 496 WARN("couldn't find section for symbol %s", in read_symbols() 535 WARN("%s(): parent function name exceeds maximum length of %d characters", in read_symbols() 545 WARN("%s(): can't find parent function", in read_symbols() 643 WARN("index out of range"); in elf_update_symbol() 654 WARN("malloc"); in elf_update_symbol() 669 WARN("malloc"); in elf_update_symbol() [all …]
|
/openbmc/u-boot/scripts/ |
H A D | checkpatch.pl | 94 --max-line-length=n set the maximum line length, if exceeded, warn 95 --min-conf-desc-length=n set the min description length, if shorter, warn 165 or warn "$P: Can't find a readable $configuration_file file $!\n"; 456 …-z0-9]+_){1,2}(?:printk|emerg|alert|crit|err|warning|warn|notice|info|debug|dbg|vdbg|devel|cont|WA… 458 WARN(?:_RATELIMIT|_ONCE|)| 664 warn "No typos will be found - file '$spelling_file': $!\n"; 687 warn "No codespell typos will be found - file '$codespellfile': $!\n"; 722 or warn "No structs that should be const will be found - file '$conststructsfile': $!\n"; 727 or warn "No additional types will be considered - file '$typedefsfile': $!\n"; 820 or warn "$P: Can't read '$file' $!\n"; [all …]
|
/openbmc/obmc-console/ |
H A D | console-server.c | 174 warn("Can't find realpath for %s", tty_path_input); in tty_find_device() 193 warn("Can't find real name for %s", server->tty.kname); in tty_find_device() 206 warn("Can't query sysfs for device %s", tty_kname_real); in tty_find_device() 218 warn("Can't find parent device for %s", tty_kname_real); in tty_find_device() 278 warn("Can't access attribute %s on device %s", name, in tty_set_sysfs_attr() 287 warn("Error writing to %s attribute of device %s", name, in tty_set_sysfs_attr() 307 warn("Can't read tty termios"); in tty_init_termios() 313 warn("Couldn't set speeds for %s", server->tty.kname); in tty_init_termios() 324 warn("Can't set terminal options for %s", server->tty.kname); in tty_init_termios() 349 warn("Can't open tty %s", server->tty.dev); in tty_init_io() [all …]
|
H A D | log-handler.c | 61 warn("Failed to rename %s to %s", lh->log_filename, in log_trim() 68 warn("Can't open log buffer file %s", lh->log_filename); in log_trim() 136 warn("Can't open log buffer file %s", lh->log_filename); in log_create() 141 warn("Can't query log position for file %s", lh->log_filename); in log_create() 178 warn("Invalid logsize. Default to %ukB", in log_init() 198 warn("Failed to construct rotate filename"); in log_init()
|
H A D | console-client.c | 170 warn("Can't read from server"); in process_console() 201 warn("Can't get terminal attributes for console"); in client_tty_init() 209 warn("Can't set terminal attributes for console"); in client_tty_init() 227 warn("Can't open socket"); in client_init() 239 warn("Failed to configure socket: %s", strerror(errno)); in client_init() 241 warn("Socket name length exceeds buffer limits"); in client_init() 253 warn("Can't connect to console server '@%s'", path); in client_init() 359 warn("Poll failure"); in main()
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | testexport.py | 23 def warn(self, msg): member in my_log 93 …bb.warn("Couldn't find any version of {} native package. Related tests will most probably fail.".f… 100 …bb.warn("Native binary %s %s%s. Running tests under bitbake environment. Version can't be checked … 106 … bb.warn("Couldn't find any version of target package %s. Please ensure it was built. " 123 …bb.warn("Couldn't find the desired version %s for target binary %s. Related test cases will probab… 146 … bb.warn("Couldn't find native package %s%s. Related test cases will be influenced." % 179 bb.warn("Couldn't find target package %s%s. Please ensure it is available " 224 bb.warn("Failed to copy %s binary file %s on the remote target: %s" % 241 bb.warn("No rpm package found for %s %s in .rpm files dir %s. Skipping deployment." % 246 … bb.warn("Failed to copy %s on the remote target: %s" %(param_list[0], d.getVar("MACHINE"))) [all …]
|
/openbmc/linux/tools/objtool/include/objtool/ |
H A D | warn.h | 44 #define WARN(format, ...) \ macro 52 WARN("%s: " format, _str, ##__VA_ARGS__); \ 71 WARN(" %s: " format, _str, ##__VA_ARGS__); \ 77 WARN(format ": %s", ##__VA_ARGS__, elf_errmsg(-1))
|
/openbmc/linux/arch/arm/mach-davinci/ |
H A D | mux.c | 38 unsigned int mask, warn = 0; in davinci_cfg_reg() local 78 warn = 1; in davinci_cfg_reg() 84 if (warn) { in davinci_cfg_reg() 91 if (cfg->debug || warn) { in davinci_cfg_reg()
|
/openbmc/linux/lib/ |
H A D | test_rhashtable.c | 300 if (WARN(err, "error %d on element %d\n", err, i)) in test_rhltable() 320 if (WARN(!h, "key not found during iteration %d of %d", i, entries)) { in test_rhltable() 328 if (WARN(pos == &rhl_test_objects[j].list_node, "old element found, should be gone")) in test_rhltable() 346 if (WARN(!found, "element %d not found", i)) in test_rhltable() 350 WARN(err, "rhltable_remove: err %d for iteration %d\n", err, i); in test_rhltable() 359 WARN(test_bit(i, obj_in_table), "elem %d allegedly still present", i); in test_rhltable() 363 if (WARN(err, "error %d on element %d\n", err, i)) in test_rhltable() 379 if (WARN(err, "cannot remove element at slot %d", i)) in test_rhltable() 382 if (WARN(err != -ENOENT, "removed non-existent element %d, error %d not %d", in test_rhltable() 390 if (WARN(test_and_set_bit(i, obj_in_table), "succeeded to insert same object %d", i)) in test_rhltable() [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/binutils/binutils/ |
H A D | 0006-warn-for-uses-of-system-directories-when-cross-linki.patch | 4 Subject: [PATCH] warn for uses of system directories when cross linking 45 ENABLE_POISON_SYSTEM_DIRECTORIES defined, warn for use of /lib, 73 +/* Define to warn for use of native system library directories */ 96 + warn for use of native system library directories 130 + [warn for use of native system library directories]),, 135 + [Define to warn for use of native system library directories]) 149 + /* If TRUE (the default) warn for uses of system directories when 171 +Do not warn for @option{-L} options using system directories such as 264 + '\0', NULL, N_("Do not warn for -L options using system directories"),
|
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/ |
H A D | 0002-gcc-poison-system-directories.patch | 34 Warn about returning a pointer/reference to a local or temporary variable. 38 +Warn for -I and -L options using system directories if cross compiling 42 Warn when one variable shadows another. Same as -Wshadow=global. 51 +/* Define to warn for use of native system header directories */ 55 +/* Define to warn for use of native system header directories */ 81 + warn for use of native system header directories 118 + [warn for use of native system header directories (no/yes/error)]),, 125 + [Define to warn for use of native system header directories]) 153 +Do not warn for @option{-I} or @option{-L} options using system
|
/openbmc/phosphor-webui/app/common/styles/components/ |
H A D | alert-banner.scss | 23 .alert-banner--warn { 24 background-color: $notification-warn--light; 25 border-left-color: $notification-warn--dark;
|