Home
last modified time | relevance | path

Searched refs:error (Results 1 – 25 of 40) sorted by relevance

12

/scripts/kconfig/tests/err_recursive_dep/
Dexpected_stderr1 Kconfig:11:error: recursive dependency detected!
6 Kconfig:5:error: recursive dependency detected!
11 Kconfig:17:error: recursive dependency detected!
17 Kconfig:32:error: recursive dependency detected!
23 Kconfig:37:error: recursive dependency detected!
29 Kconfig:60:error: recursive dependency detected!
34 Kconfig:51:error: recursive dependency detected!
/scripts/
DKconfig.include39 $(error-if,$(failure,command -v $(CC)),C compiler '$(CC)' not found)
40 $(error-if,$(failure,command -v $(LD)),linker '$(LD)' not found)
42 # Get the C compiler name, version, and error out if it is not supported.
44 $(error-if,$(success,test -z "$(cc-info)"),Sorry$(comma) this C compiler is not supported.)
48 # Get the assembler name, version, and error out if it is not supported.
50 $(error-if,$(success,test -z "$(as-info)"),Sorry$(comma) this assembler is not supported.)
54 # Get the linker name, version, and error out if it is not supported.
56 $(error-if,$(success,test -z "$(ld-info)"),Sorry$(comma) this linker is not supported.)
Dcheck_extable.sh67 error=true
90 error=true
143 if [ "${error}" ]; then
Dunifdef.c216 static void error(const char *);
418 static void Eelif (void) { error("Inappropriate #elif"); } in Eelif()
419 static void Eelse (void) { error("Inappropriate #else"); } in Eelse()
420 static void Eendif(void) { error("Inappropriate #endif"); } in Eendif()
421 static void Eeof (void) { error("Premature EOF"); } in Eeof()
422 static void Eioccc(void) { error("Obfuscated preprocessor control line"); } in Eioccc()
532 error("Too many levels of nesting"); in nest()
624 error("EOF in comment"); in done()
1036 error("unterminated char literal"); in skipcomment()
1038 error("unterminated string literal"); in skipcomment()
[all …]
DMakefile.ubsan13 ubsan-cflags-$(CONFIG_UBSAN_TRAP) += -fsanitize-undefined-trap-on-error
Dchecksyscalls.sh271 $* -Wno-error -Wno-unused-macros -E -x c - > /dev/null
DMakefile.clang18 $(error Specify CROSS_COMPILE or add '--target=' option to scripts/Makefile.clang)
/scripts/genksyms/
Dparse.y136 | error ';' { $$ = $2; }
137 | error '}' { $$ = $2; }
312 | direct_declarator '(' error ')'
332 | direct_nested_declarator '(' error ')'
338 | '(' error ')'
386 | direct_m_abstract_declarator '(' error ')'
392 | '(' error ')'
418 | '{' error '}' { $$ = $3; }
434 | error ';'
/scripts/gcc-plugins/
Darm_ssp_per_task_plugin.c72 error(G_("incompatible gcc/plugin versions")); in plugin_init()
82 error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), in plugin_init()
91 error(G_("unknown option '-fplugin-arg-%s-%s'"), in plugin_init()
Dlatent_entropy_plugin.c139 error("%qE attribute only applies to functions and variables", in handle_latent_entropy_attribute()
146 error("variable %qD with %qE attribute must not be initialized", in handle_latent_entropy_attribute()
153 error("variable %qD with %qE attribute must not be local", in handle_latent_entropy_attribute()
162error("variable %qD with %qE attribute must be an integer or a fixed length integer array type or … in handle_latent_entropy_attribute()
178 error("structure variable %qD with %qE attribute has a non-integer field %qE", in handle_latent_entropy_attribute()
217 error("array variable %qD with %qE attribute must be a fixed length integer array type", in handle_latent_entropy_attribute()
600 error(G_("incompatible gcc/plugin versions")); in plugin_init()
609 error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); in plugin_init()
Drandomize_layout_plugin.c23 #error "The RANDSTRUCT plugin requires GCC 4.7 or newer."
64 error("%qE attribute does not apply to functions (%qF)", name, *node); in handle_randomize_layout_attr()
69 error("%qE attribute does not apply to function parameters (%qD)", name, *node); in handle_randomize_layout_attr()
74 error("%qE attribute does not apply to variables (%qD)", name, *node); in handle_randomize_layout_attr()
86 error("%qE attribute used on %qT applies to struct types only", name, type); in handle_randomize_layout_attr()
91 error("%qE attribute is already applied to the type %qT", name, type); in handle_randomize_layout_attr()
343 error(G_("attempted to randomize userland API struct %s"), ORIG_TYPE_NAME(type)); in relayout_struct()
501 error("Only string constants are supported as initializers " in update_decl_size()
870 error(G_("incompatible gcc/plugin versions")); in plugin_init()
888 error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); in plugin_init()
[all …]
Dsancov_plugin.c110 error(G_("incompatible gcc/plugin versions")); in plugin_init()
119 error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); in plugin_init()
Dstackleak_plugin.c562 error(G_("incompatible gcc/plugin versions")); in plugin_init()
570 error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), in plugin_init()
577 error(G_("invalid option argument '-fplugin-arg-%s-%s=%s'"), in plugin_init()
583 error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), in plugin_init()
595 error(G_("unknown option '-fplugin-arg-%s-%s'"), in plugin_init()
Dstructleak_plugin.c220 error(G_("incompatible gcc/plugin versions")); in plugin_init()
246 error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); in plugin_init()
Dgcc-generate-gimple-pass.h20 #error at least PASS_NAME must be defined
/scripts/dtc/
Dchecks.c35 bool warn, error; member
49 .error = (e_), \
71 if (!(c->warn && (quiet < 1)) && !(c->error && (quiet < 2))) in check_msg()
90 (c->error) ? "ERROR" : "Warning", c->name); in check_msg()
157 bool error = false; in run_check() local
169 error = error || run_check(prq, dti); in run_check()
189 if ((c->status != PASSED) && (c->error)) in run_check()
190 error = true; in run_check()
191 return error; in run_check()
1984 static void enable_warning_error(struct check *c, bool warn, bool error) in enable_warning_error() argument
[all …]
/scripts/kconfig/tests/preprocess/builtin_func/
DKconfig10 # 'error-if' is similar, but it terminates the parsing immediately.
12 $(error-if,n,this should not be printed)
/scripts/gdb/linux/
Dutils.py173 except gdb.error:
180 except gdb.error:
197 except gdb.error:
Dconfig.py30 except gdb.error as e:
Dproc.py156 except gdb.error:
266 except gdb.error:
/scripts/coccinelle/null/
Dkmerr.cocci4 /// error handling code later in the function, which may be helpful
5 /// in determining what the error handling code for the call to kmalloc etc
/scripts/coccinelle/api/
Dplatform_get_irq.cocci101 msg = "line %s is redundant because platform_get_irq() already prints an error" % (p1[0].line)
Dpm_runtime.cocci113 msg = "%s returns < 0 as error. Unecessary IS_ERR_VALUE at line %s" % (pm_runtime_api, p2[0].line)
/scripts/mod/
Dmodpost.c367 error("Could not update namespace(%s) for symbol %s\n", in sym_update_namespace()
382 error("%s: '%s' exported twice. Previous export was in %s%s\n", in sym_add_exported()
1370 error("%s+0x%lx references non-executable section '%s'\n", in extable_mismatch_handler()
1671 error("%s: too long path was truncated\n", cmd_file); in extract_crcs_for_object()
1732 error("%s: too long path was truncated\n", objlist); in mod_set_crcs()
1760 error("%s: filename must be suffixed with .o\n", modname); in read_symbols()
1770 error("missing MODULE_LICENSE() in %s\n", modname); in read_symbols()
1892 error("\"%s\" [%s.ko] was exported without definition\n", in check_exports()
1916 error("GPL-incompatible module %s.ko uses GPL-only symbol '%s'\n", in check_exports()
1931 error("module name is too long [%s.ko]\n", mod->name); in check_modname_len()
[all …]
/scripts/kconfig/tests/preprocess/escape/
DKconfig42 # It should not be emit "unterminated reference" error.

12