/scripts/ |
D | ver_linux | 64 function version(cmd, ver) { 65 cmd = cmd " 2>&1" 66 while (cmd | getline > 0) { 72 close(cmd)
|
D | get_maintainer.pl | 1544 my ($cmd) = @_; 1547 my $output = `$cmd`; 1555 my ($cmd) = @_; 1558 my $output = `$cmd`; 1584 my ($cmd, $file) = @_; 1591 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd); 1623 my ($cmd) = @_; 1626 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd); 1651 my ($cmd) = @_; 1655 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd); [all …]
|
D | Kbuild.include | 174 echo-cmd = $(if $($(quiet)cmd_$(1)),\ 204 cmd = @set -e; $(echo-cmd) $($(quiet)redirect) $(delete-on-interrupt) $(cmd_$(1)) 217 cmd-check = $(filter-out $(subst $(space),$(space_escape),$(strip $(cmd_$@))), \ 220 cmd-check = $(if $(strip $(cmd_$@)),,1) 223 # Replace >$< with >$$< to preserve $ when reloading the .cmd file 225 # Replace >#< with >$(pound)< to avoid starting a comment in the .cmd file 229 make-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1))))) 239 if_changed = $(if $(newer-prereqs)$(cmd-check), \ 240 $(cmd); \ 241 printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:) [all …]
|
D | Makefile.build | 139 $(call cmd,cc_symtypes_c) 247 $(CONFIG_SHELL) $(srctree)/scripts/gen_ksymdeps.sh $@ >> $(dot-target).cmd 255 $(call cmd,gen_ksymdeps) 256 $(call cmd,checksrc) 257 $(call cmd,checkdoc) 258 $(call cmd,objtool) 259 $(call cmd,modversions_c) 260 $(call cmd,record_mcount) 265 $(call cmd,gen_ksymdeps) 266 $(call cmd,objtool) [all …]
|
D | kernel-doc | 425 my $cmd = $1; 427 if ($cmd eq "man") { 431 } elsif ($cmd eq "rst") { 435 } elsif ($cmd eq "none") { 437 } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document 439 } elsif ($cmd eq "function") { # to only output specific functions 443 } elsif ($cmd eq "nosymbol") { # Exclude specific symbols 446 } elsif ($cmd eq "export") { # only exported symbols 449 } elsif ($cmd eq "internal") { # only non-exported symbols 452 } elsif ($cmd eq "export-file") { [all …]
|
D | get_abi.pl | 37 my ($cmd, $arg) = @ARGV; 39 pod2usage(2) if ($cmd ne "search" && $cmd ne "rest" && $cmd ne "validate"); 40 pod2usage(2) if ($cmd eq "search" && !$arg); 507 if ($cmd eq "search") { 510 if ($cmd eq "rest") {
|
D | Makefile.asm-generic | 46 $(if $(unwanted),$(call cmd,remove)) 50 $(call cmd,wrap)
|
D | Makefile.package | 58 $(call cmd,src_tar,$(KERNELPATH),kernel.spec) 75 $(call cmd,src_tar,$(KDEB_SOURCENAME)) 96 $(call cmd,src_tar,$(KERNELPATH)) 139 $(call cmd,perf_tar)
|
D | Makefile.modsign | 27 $(call cmd,sign_ko,$(MODLIB)/$(modinst_dir))
|
D | Makefile.dtbinst | 30 $(call cmd,dtb_install)
|
D | Makefile.modinst | 33 $(call cmd,modules_install,$(MODLIB)/$(modinst_dir))
|
D | Makefile.headersinst | 73 $(call cmd,remove) 79 -include $(foreach f,$(existing-headers),$(dir $(f)).$(notdir $(f)).cmd)
|
D | leaking_addresses.pl | 401 open my $cmd, '-|', 'dmesg'; 402 while (<$cmd>) { 407 close $cmd;
|
D | Makefile.modpost | 64 $(call cmd,modpost) 182 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
D | Makefile.clean | 57 $(call cmd,clean)
|
D | Makefile.modfinal | 96 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
D | sphinx-pre-install | 258 my $cmd = shift; 261 open IN, "$cmd --version 2>&1 |";
|
D | checkkconfigsymbols.py | 224 def execute(cmd): argument 227 stdout = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=False)
|
D | Makefile.lib | 270 $(call cmd,shipped) 380 $(call cmd,dtb_check)
|
/scripts/gdb/linux/ |
D | symbols.py | 31 cmd = self.gdb_command 34 cmd.module_files_updated = False 43 if module_name in cmd.loaded_modules: 46 cmd.load_all_symbols() 48 cmd.load_module_symbols(module)
|
/scripts/kconfig/ |
D | preprocess.c | 145 char *cmd; in do_shell() local 149 cmd = argv[0]; in do_shell() 151 p = popen(cmd, "r"); in do_shell() 153 perror(cmd); in do_shell() 174 perror(cmd); in do_shell()
|
/scripts/mod/ |
D | sumversion.c | 306 char *cmd, *file, *line, *dir, *pos; in parse_source_files() local 310 cmd = NOFAIL(malloc(strlen(objfile) + sizeof("..cmd"))); in parse_source_files() 316 sprintf(cmd, "%.*s.%s.cmd", dirlen, objfile, base); in parse_source_files() 319 sprintf(cmd, ".%s.cmd", objfile); in parse_source_files() 325 file = read_text_file(cmd); in parse_source_files() 388 free(cmd); in parse_source_files()
|