/scripts/ |
D | ver_linux | 72 function version(cmd, ver) { 73 cmd = cmd " 2>&1" 74 while (cmd | getline > 0) { 80 close(cmd)
|
D | get_maintainer.pl | 1537 my ($cmd) = @_; 1540 my $output = `$cmd`; 1548 my ($cmd) = @_; 1551 my $output = `$cmd`; 1577 my ($cmd, $file) = @_; 1584 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd); 1616 my ($cmd) = @_; 1619 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd); 1644 my ($cmd) = @_; 1648 @lines = &{$VCS_cmds{"execute_cmd"}}($cmd); [all …]
|
D | Kbuild.include | 182 echo-cmd = $(if $($(quiet)cmd_$(1)),\ 186 cmd = @set -e; $(echo-cmd) $(cmd_$(1)) 199 cmd-check = $(filter-out $(subst $(space),$(space_escape),$(strip $(cmd_$@))), \ 202 cmd-check = $(if $(strip $(cmd_$@)),,1) 205 # Replace >$< with >$$< to preserve $ when reloading the .cmd file 207 # Replace >#< with >$(pound)< to avoid starting a comment in the .cmd file 211 make-cmd = $(call escsq,$(subst $(pound),$$(pound),$(subst $$,$$$$,$(cmd_$(1))))) 218 if_changed = $(if $(any-prereq)$(cmd-check), \ 219 $(cmd); \ 220 printf '%s\n' 'cmd_$@ := $(make-cmd)' > $(dot-target).cmd, @:) [all …]
|
D | Makefile.build | 121 $(call cmd,cc_symtypes_c) 257 $(CONFIG_SHELL) $(srctree)/scripts/gen_ksymdeps.sh $@ >> $(dot-target).cmd 261 $(call cmd,checksrc) 263 $(call cmd,gen_ksymdeps) 264 $(call cmd,checkdoc) 265 $(call cmd,objtool) 266 $(call cmd,modversions_c) 267 $(call cmd,record_mcount) 272 $(call cmd,gen_ksymdeps) 273 $(call cmd,objtool) [all …]
|
D | get_abi.pl | 27 my ($cmd, $arg) = @ARGV; 29 pod2usage(2) if ($cmd ne "search" && $cmd ne "rest" && $cmd ne "validate"); 30 pod2usage(2) if ($cmd eq "search" && !$arg); 370 if ($cmd eq "rest") { 372 } elsif ($cmd eq "search") {
|
D | Makefile.asm-generic | 46 $(if $(unwanted),$(call cmd,remove)) 50 $(call cmd,wrap)
|
D | kernel-doc | 398 my $cmd = $1; 400 if ($cmd eq "man") { 404 } elsif ($cmd eq "rst") { 408 } elsif ($cmd eq "none") { 410 } elsif ($cmd eq "module") { # not needed for XML, inherits from calling document 412 } elsif ($cmd eq "function") { # to only output specific functions 416 } elsif ($cmd eq "nofunction") { # output all except specific functions 420 } elsif ($cmd eq "export") { # only exported symbols 423 } elsif ($cmd eq "internal") { # only non-exported symbols 426 } elsif ($cmd eq "export-file") { [all …]
|
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.headersinst | 76 $(call cmd,remove) 82 -include $(foreach f,$(existing-headers),$(dir $(f)).$(notdir $(f)).cmd) 92 $(call cmd,check)
|
D | Makefile.modpost | 66 $(call cmd,modpost) 114 $(call cmd,modpost)
|
D | Makefile.modsign | 27 $(call cmd,sign_ko,$(MODLIB)/$(modinst_dir))
|
D | Makefile.modinst | 33 $(call cmd,modules_install,$(MODLIB)/$(modinst_dir))
|
D | Makefile.dtbinst | 32 $(call cmd,dtb_install,$(install-dir))
|
D | leaking_addresses.pl | 401 open my $cmd, '-|', 'dmesg'; 402 while (<$cmd>) { 407 close $cmd;
|
D | Makefile.clean | 53 $(call cmd,clean)
|
D | Makefile.modfinal | 75 -include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
D | checkkconfigsymbols.py | 224 def execute(cmd): argument 227 stdout = subprocess.check_output(cmd, stderr=subprocess.STDOUT, shell=False)
|
D | Makefile.lib | 212 $(call cmd,shipped) 310 $(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/mod/ |
D | sumversion.c | 307 char *cmd, *file, *line, *dir; in parse_source_files() local 312 cmd = NOFAIL(malloc(strlen(objfile) + sizeof("..cmd"))); in parse_source_files() 318 sprintf(cmd, "%.*s.%s.cmd", dirlen, objfile, base); in parse_source_files() 321 sprintf(cmd, ".%s.cmd", objfile); in parse_source_files() 327 file = grab_file(cmd, &flen); in parse_source_files() 329 warn("could not find %s for %s\n", cmd, objfile); in parse_source_files() 388 free(cmd); in parse_source_files()
|
/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()
|
D | Makefile | 193 $(call cmd,moc)
|