| /scripts/kconfig/ |
| A D | util.c | 14 struct file *file_lookup(const char *name) in file_lookup() 16 struct file *file; in file_lookup() local 18 for (file = file_list; file; file = file->next) { in file_lookup() 19 if (!strcmp(name, file->name)) { in file_lookup() 20 return file; in file_lookup() 24 file = xmalloc(sizeof(*file)); in file_lookup() 25 memset(file, 0, sizeof(*file)); in file_lookup() 26 file->name = xstrdup(name); in file_lookup() 27 file->next = file_list; in file_lookup() 28 file_list = file; in file_lookup() [all …]
|
| A D | expr.h | 20 struct file { struct 21 struct file *next; argument 22 struct file *parent; argument 201 struct file *file; /* what file was this property defined */ member 262 struct file *file; member 286 extern struct file *file_list; 287 extern struct file *current_file; 288 struct file *lookup_file(const char *name);
|
| A D | zconf.l | 22 struct file *file; member 106 current_pos.file = current_file; 398 fprintf(stderr, "%s:%d: can't open file \"%s\"\n", 414 " current file : %s\n", file->name);
|
| A D | streamline_config.pl | 106 my $file = $conf->{"file"}; 108 next if ( ! -f "$file"); 117 print STDERR "using config: '$file'\n"; 119 open(my $infile, '-|', "$exec $file") || die "Failed to run $exec $file";
|
| A D | confdata.c | 878 struct file *file; in conf_write_dep() local 887 for (file = file_list; file; file = file->next) { in conf_write_dep() 888 if (file->next) in conf_write_dep() 889 fprintf(out, "\t%s \\\n", file->name); in conf_write_dep() 891 fprintf(out, "\t%s\n", file->name); in conf_write_dep()
|
| A D | zconf.y | 39 struct file *file; member 103 $$->file->name, $$->lineno); 589 if (current_menu->file != current_file) { in zconf_endtoken() 593 current_menu->file->name, current_menu->lineno, in zconf_endtoken()
|
| A D | menu.c | 18 struct file *file_list; 19 struct file *current_file; 25 fprintf(stderr, "%s:%d:warning: ", menu->file->name, menu->lineno); in menu_warn() 35 fprintf(stderr, "%s:%d:warning: ", prop->file->name, prop->lineno); in prop_warn() 55 menu->file = current_file; in menu_add_entry() 817 str_printf(r, " Defined at %s:%d\n", prop->menu->file->name, in get_symbol_str()
|
| A D | symbol.c | 1077 prop->file->name, prop->lineno); in sym_check_print_recursive() 1081 menu->file->name, menu->lineno, in sym_check_print_recursive() 1086 menu->file->name, menu->lineno, in sym_check_print_recursive() 1091 prop->file->name, prop->lineno, in sym_check_print_recursive() 1096 prop->file->name, prop->lineno, in sym_check_print_recursive() 1101 prop->file->name, prop->lineno, in sym_check_print_recursive() 1106 prop->file->name, prop->lineno, in sym_check_print_recursive() 1112 prop->file->name, prop->lineno, in sym_check_print_recursive() 1288 prop->file = current_file; in prop_alloc()
|
| A D | lkc.h | 99 struct file *file_lookup(const char *name);
|
| /scripts/ |
| A D | kernel-doc | 558 my $file = shift; 595 my $file = shift; 1199 my $file = shift; 1377 my $file = shift; 1586 my $file = shift; 1861 my $file = shift; 1992 my $file; 1998 $file = $orig_file; 2002 $file = $source_map{$file}; 2005 return $file; [all …]
|
| A D | checkstack.pl | 113 my ($func, $file, $lastslash); 119 elsif ($line =~ m/(.*):\s*file format/) { 120 $file = $1; 121 $file =~ s/\.ko//; 122 $lastslash = rindex($file, "/"); 124 $file = substr($file, $lastslash + 1); 143 my $intro = "$addr $func [$file]:"; 160 my $intro = "$addr $func [$file]:";
|
| A D | get_maintainer.pl | 347 my ($file) = @_; 377 push(@self_test_info, {file=>$file, linenr=>$i, line=>$line}); 385 my ($file) = $_; 418 push(@mfiles, "$path$file") if ($file !~ /^\./); 433 my ($file) = @_; 437 if (-f $file && ($email_file_emails || $file =~ /\.yaml$/)) { 534 $file = canonpath($file); 536 if ((-d $file)) { 548 push(@files, $file); 549 if ($file ne "MAINTAINERS" && -f $file && $keywords) { [all …]
|
| A D | setlocalversion | 162 local file res= 164 for file; do 165 case "$file" in 170 if test -e "$file"; then 171 res="$res$(cat "$file")"
|
| A D | coccicheck | 232 $FLAGS --cocci-file $COCCI $OPT $OPTIONS || \ 234 $FLAGS --cocci-file $COCCI $OPT $OPTIONS --no-show-diff || \ 236 $FLAGS --cocci-file $COCCI $OPT $OPTIONS || \ 238 $FLAGS --cocci-file $COCCI $OPT $OPTIONS --no-show-diff || exit 1 241 $FLAGS --cocci-file $COCCI $OPT $OPTIONS --no-show-diff && \ 243 $FLAGS --cocci-file $COCCI $OPT $OPTIONS || exit 1 245 run_cmd $SPATCH -D $MODE $FLAGS --cocci-file $COCCI $OPT $OPTIONS || exit 1
|
| A D | config | 15 Manipulate options in a .config file from the command line. 39 --file config-file .config file to change (default .config)
|
| A D | Kbuild.include | 18 # The temporary file to save gcc -MD generated dependencies must not 56 # The rule defined shall write to stdout the content of the new file. 57 # The existing file will be compared with the new one. 58 # - If no file exist it is created 59 # - If the content differ the new file is used 62 # to specify a valid file as first prerequisite (often the kbuild file) 290 # (5) - due to missing .cmd file 295 # (4) The command line stored in the file named dir/.target.cmd 298 # (5) No dir/.target.cmd file (used to store command line) 299 # (6) No dir/.target.cmd file and target not listed in $(targets) [all …]
|
| A D | checkpatch.pl | 36 my $file = 0; 302 'f|file!' => \$file, 967 close($file); 1075 my ($file) = @_; 1268 my $oldfile = $file; 1273 } elsif ($file) { 2464 my $file = $absolute; 2969 if ($file) { 3471 my $file = $1; 5872 my $file = "$1.h"; [all …]
|
| A D | build-efi.sh | 115 -drive id=disk,file="${IMG}",if=none,format=raw \
|
| A D | Makefile.build | 56 kbuild-file := $(if $(wildcard $(kbuild-dir)/Kbuild),$(kbuild-dir)/Kbuild,$(kbuild-dir)/Makefile) 57 include $(kbuild-file)
|
| /scripts/dtc/ |
| A D | srcpos.h | 76 struct srcfile_state *file; member 88 (Current).file = YYRHSLOC(Rhs, N).file; \ 94 (Current).file = YYRHSLOC (Rhs, 0).file; \
|
| A D | srcpos.c | 207 .file = NULL, 214 pos->file = current_srcfile; in srcpos_update() 248 if (pos->file && pos->file->name) in srcpos_string() 249 fname = pos->file->name; in srcpos_string()
|
| A D | README | 95 If you want to adjust a test file, be aware that tree_tree1.dts is compiled 97 if you change that file you must change tree.S also.
|
| /scripts/kconfig/tests/no_write_if_dep_unmet/ |
| A D | expected_config | 2 # Automatically generated file; DO NOT EDIT.
|
| /scripts/kconfig/tests/err_recursive_inc/ |
| A D | expected_stderr | 3 current file : Kconfig.inc1
|
| /scripts/kconfig/tests/ |
| A D | pytest.ini | 5 # them as top-level modules. It is silly to prefix or suffix a test file with
|