/scripts/ |
D | syscallhdr.sh | 36 prefix= 50 --prefix) 51 prefix=$2 86 echo "#define __NR_$prefix$name $nr" 92 echo "#define __NR_${prefix}syscalls $(($max + 1))"
|
D | syscallnr.sh | 31 prefix= 39 --prefix) 40 prefix=$2 71 echo "#define __NR_${prefix}syscalls $(($max + 1))"
|
D | Makefile.modfinal | 15 mixed-build-prefix = $(if $(KBUILD_MIXED_TREE),$(KBUILD_MIXED_TREE)/) 44 if [ -f $(mixed-build-prefix)vmlinux ]; then \ 45 …LLVM_OBJCOPY="$(OBJCOPY)" $(PAHOLE) -J $(PAHOLE_FLAGS) --btf_base $(mixed-build-prefix)vmlinux $@;… 60 …relink-ext).o %.mod.o scripts/module.lds $(if $(KBUILD_BUILTIN),$(mixed-build-prefix)vmlinux) FORCE 61 +$(call if_changed_except,ld_ko_o,$(mixed-build-prefix)vmlinux)
|
D | recordmcount.pl | 382 my $prefix; 394 $prefix = $1; 397 $prefix = $filename; 401 my $mcount_s = $dirname . "/.tmp_mc_" . $prefix . ".s"; 402 my $mcount_o = $dirname . "/.tmp_mc_" . $prefix . ".o"; 492 foreach my $prefix (keys %text_section_prefixes) { 493 if (substr($1, 0, length $prefix) eq $prefix) {
|
D | Makefile.modpost | 47 mixed-build-prefix = $(if $(KBUILD_MIXED_TREE),$(KBUILD_MIXED_TREE)/) 69 input-symdump := $(mixed-build-prefix)vmlinux.symvers 76 ifneq ($(wildcard $(mixed-build-prefix)vmlinux.symvers),) 79 Module.symvers: $(mixed-build-prefix)vmlinux.symvers modules-only.symvers FORCE
|
D | faddr2line | 83 local prefix=${file_line%init/main.c:*} 84 if [[ -z $prefix ]] || [[ $prefix = $file_line ]]; then 88 DIR_PREFIX=$prefix
|
D | get_feat.pl | 20 my $prefix=$basename . "../Documentation/features"; 29 "dir=s" => \$prefix, 95 return if ($file =~ m,($prefix)/arch-support.txt,); 99 $subsys = $2 if ( m,.*($prefix)/([^/]+).*,); 501 find({wanted =>\&parse_feat, no_chdir => 1}, $prefix);
|
D | documentation-file-ref-check | 104 my $prefix = $1; 124 my $fulref = "$prefix$ref";
|
D | get_abi.pl | 16 my $prefix="Documentation/ABI"; 27 "dir=s" => \$prefix, 307 $prefix, $file[0], 527 $prefix =~ s,/?$,/,; 532 find({wanted =>\&parse_abi, no_chdir => 1}, $prefix);
|
D | sphinx-pre-install | 8 my $prefix = "./"; 9 $prefix = "$ENV{'srctree'}/" if ($ENV{'srctree'}); 11 my $conf = $prefix . "Documentation/conf.py"; 12 my $requirement_file = $prefix . "Documentation/sphinx/requirements.txt";
|
D | Makefile.clang | 28 CLANG_FLAGS += --prefix=$(GCC_TOOLCHAIN_DIR)$(notdir $(CROSS_COMPILE))
|
D | Makefile.compiler | 12 cc-cross-prefix = $(firstword $(foreach c, $(1), \
|
D | Makefile.package | 119 git --git-dir=$(srctree)/.git archive --prefix=$(perf-tar)/ \
|
D | checkpatch.pl | 414 my ($hashRef, $prefix) = @_; 417 print "\nNOTE: $prefix message types:"; 2318 my $prefix = ''; 2347 $output .= $prefix . $level . ':'; 2513 my $prefix = $absolute; 2514 substr($prefix, -length($file)) = ''; 2517 if ($prefix ne ".../") { 2775 $prefix = ''; 2877 $prefix = "$realfile:$realline: " 2880 $prefix = "$filename:$realline: "; [all …]
|
/scripts/dtc/ |
D | srcpos.h | 96 extern void PRINTF(3, 0) srcpos_verror(struct srcpos *pos, const char *prefix, 98 extern void PRINTF(3, 4) srcpos_error(struct srcpos *pos, const char *prefix,
|
D | srcpos.c | 373 void srcpos_verror(struct srcpos *pos, const char *prefix, in srcpos_verror() argument 380 fprintf(stderr, "%s: %s ", prefix, srcstr); in srcpos_verror() 387 void srcpos_error(struct srcpos *pos, const char *prefix, in srcpos_error() argument 393 srcpos_verror(pos, prefix, fmt, va); in srcpos_error()
|
D | dtc.h | 87 #define strstarts(s, prefix) (strncmp((s), (prefix), strlen(prefix)) == 0) argument
|
D | dtc.c | 31 static void fill_fullpaths(struct node *tree, const char *prefix) in fill_fullpaths() argument 36 tree->fullpath = join_path(prefix, tree->name); in fill_fullpaths()
|
D | flattree.c | 102 static void emit_label(FILE *f, const char *prefix, const char *label) in emit_label() argument 104 fprintf(f, "\t.globl\t%s_%s\n", prefix, label); in emit_label() 105 fprintf(f, "%s_%s:\n", prefix, label); in emit_label() 106 fprintf(f, "_%s_%s:\n", prefix, label); in emit_label()
|
/scripts/kconfig/tests/ |
D | pytest.ini | 5 # them as top-level modules. It is silly to prefix or suffix a test file with
|
/scripts/clang-tools/ |
D | gen_compile_commands.py | 187 prefix = command_prefix.replace('\#', '#').replace('$(pound)', '#') 196 'command': prefix + file_path,
|
/scripts/selinux/mdp/ |
D | mdp.c | 228 #define GENFSCON(fstype, prefix) \ in main() argument 230 fstype, prefix, mls ? ":" SYSTEMLOW : "") in main()
|
/scripts/kconfig/ |
D | menu.c | 700 static void get_dep_str(struct gstr *r, struct expr *expr, const char *prefix) in get_dep_str() argument 703 str_append(r, prefix); in get_dep_str() 780 enum prop_type tok, const char *prefix) in get_symbol_props_str() argument 787 str_append(r, prefix); in get_symbol_props_str()
|
D | confdata.c | 681 const char *prefix = ""; in header_print_symbol() local 684 prefix = "0x"; in header_print_symbol() 686 CONFIG_, sym->name, prefix, value); in header_print_symbol()
|
/scripts/mod/ |
D | modpost.c | 360 #define strstarts(str, prefix) (strncmp(str, prefix, strlen(prefix)) == 0) argument
|