/scripts/kconfig/tests/err_recursive_dep/ |
D | expected_stderr | 1 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/ |
D | Kconfig.include | 39 $(error-if,$(failure,command -v $(CC)),compiler '$(CC)' not found) 40 $(error-if,$(failure,command -v $(LD)),linker '$(LD)' not found) 42 # Get the compiler name, version, and error out if it is not supported. 44 $(error-if,$(success,test -z "$(cc-info)"),Sorry$(comma) this 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.)
|
D | check_extable.sh | 67 error=true 90 error=true 143 if [ "${error}" ]; then
|
D | unifdef.c | 216 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 …]
|
D | Makefile.ubsan | 13 ubsan-cflags-$(CONFIG_UBSAN_TRAP) += -fsanitize-undefined-trap-on-error
|
D | checksyscalls.sh | 271 $* -Wno-error -E -x c - > /dev/null
|
D | Makefile.clang | 17 $(error Specify CROSS_COMPILE or add '--target=' option to scripts/Makefile.clang)
|
/scripts/genksyms/ |
D | parse.y | 136 | 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/ |
D | arm_ssp_per_task_plugin.c | 79 error(G_("incompatible gcc/plugin versions")); in plugin_init() 89 error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), in plugin_init() 103 error(G_("unknown option '-fplugin-arg-%s-%s'"), in plugin_init()
|
D | latent_entropy_plugin.c | 139 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() 162 …error("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()
|
D | randomize_layout_plugin.c | 23 #error "The RANDSTRUCT plugin requires GCC 4.7 or newer." 82 error("%qE attribute does not apply to functions (%qF)", name, *node); in handle_randomize_layout_attr() 87 error("%qE attribute does not apply to function parameters (%qD)", name, *node); in handle_randomize_layout_attr() 92 error("%qE attribute does not apply to variables (%qD)", name, *node); in handle_randomize_layout_attr() 104 error("%qE attribute used on %qT applies to struct types only", name, type); in handle_randomize_layout_attr() 109 error("%qE attribute is already applied to the type %qT", name, type); in handle_randomize_layout_attr() 361 error(G_("attempted to randomize userland API struct %s"), ORIG_TYPE_NAME(type)); in relayout_struct() 519 error("Only string constants are supported as initializers " in update_decl_size() 951 error(G_("incompatible gcc/plugin versions")); in plugin_init() 969 error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); in plugin_init() [all …]
|
D | sancov_plugin.c | 110 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()
|
D | stackleak_plugin.c | 558 error(G_("incompatible gcc/plugin versions")); in plugin_init() 566 error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), in plugin_init() 573 error(G_("invalid option argument '-fplugin-arg-%s-%s=%s'"), in plugin_init() 579 error(G_("no value supplied for option '-fplugin-arg-%s-%s'"), in plugin_init() 591 error(G_("unknown option '-fplugin-arg-%s-%s'"), in plugin_init()
|
D | cyc_complexity_plugin.c | 59 error(G_("incompatible gcc/plugin versions")); in plugin_init()
|
D | structleak_plugin.c | 222 error(G_("incompatible gcc/plugin versions")); in plugin_init() 248 error(G_("unknown option '-fplugin-arg-%s-%s'"), plugin_name, argv[i].key); in plugin_init()
|
/scripts/dtc/ |
D | checks.c | 35 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() 149 bool error = false; in run_check() local 161 error = error || run_check(prq, dti); in run_check() 181 if ((c->status != PASSED) && (c->error)) in run_check() 182 error = true; in run_check() 183 return error; in run_check() 1870 static void enable_warning_error(struct check *c, bool warn, bool error) in enable_warning_error() argument [all …]
|
D | Makefile | 23 $(error dtc needs libyaml for DT schema validation support. \
|
/scripts/kconfig/tests/preprocess/builtin_func/ |
D | Kconfig | 10 # 'error-if' is similar, but it terminates the parsing immediately. 12 $(error-if,n,this should not be printed)
|
/scripts/gdb/linux/ |
D | utils.py | 173 except gdb.error: 180 except gdb.error: 197 except gdb.error:
|
D | config.py | 30 except gdb.error as e:
|
D | proc.py | 156 except gdb.error: 266 except gdb.error:
|
/scripts/coccinelle/null/ |
D | kmerr.cocci | 4 /// 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/ |
D | platform_get_irq.cocci | 101 msg = "line %s is redundant because platform_get_irq() already prints an error" % (p1[0].line)
|
D | pm_runtime.cocci | 113 msg = "%s returns < 0 as error. Unecessary IS_ERR_VALUE at line %s" % (pm_runtime_api, p2[0].line)
|
/scripts/kconfig/tests/preprocess/escape/ |
D | Kconfig | 42 # It should not be emit "unterminated reference" error.
|