/scripts/ |
D | kernel-doc | 575 my %args = %{$_[0]}; 579 …print ".TH \"$args{'function'}\" 9 \"$args{'function'}\" \"$man_date\" \"Kernel Hacker's Manual\" … 582 print $args{'function'} . " \\- " . $args{'purpose'} . "\n"; 585 if ($args{'functiontype'} ne "") { 586 print ".B \"" . $args{'functiontype'} . "\" " . $args{'function'} . "\n"; 588 print ".B \"" . $args{'function'} . "\n"; 593 foreach my $parameter (@{$args{'parameterlist'}}) { 594 if ($count == $#{$args{'parameterlist'}}) { 597 $type = $args{'parametertypes'}{$parameter}; 610 foreach $parameter (@{$args{'parameterlist'}}) { [all …]
|
D | checkkconfigsymbols.py | 86 args = parser.parse_args() 88 if args.commit and args.diff: 91 if args.diff and not re.match(r"^[\w\-\.\^]+\.\.[\w\-\.\^]+$", args.diff): 95 if args.commit or args.diff: 96 if not args.force and tree_is_dirty(): 104 if args.commit: 105 args.find = False 107 if args.ignore: 109 re.match(args.ignore, "this/is/just/a/test.c") 113 return args [all …]
|
D | spdxcheck.py | 214 parser.parse_lines(fd, args.maxlines, el.path) 228 args = ap.parse_args() variable 231 if '-' in args.path and len(args.path) > 1: 259 if len(args.path) and args.path[0] == '-': 261 parser.parse_lines(stdin, args.maxlines, '-') 263 if args.path: 264 for p in args.path: 266 parser.parse_lines(open(p, 'rb'), args.maxlines, p) 276 if args.verbose:
|
D | gen_compile_commands.py | 55 args = parser.parse_args() 57 log_level = args.log_level 61 directory = args.directory or os.getcwd() 62 output = args.output or os.path.join(directory, _DEFAULT_OUTPUT)
|
D | insert-sys-cert.c | 33 #define info(format, args...) fprintf(stderr, "INFO: " format, ## args) argument 34 #define warn(format, args...) fprintf(stdout, "WARNING: " format, ## args) argument 35 #define err(format, args...) fprintf(stderr, "ERROR: " format, ## args) argument
|
D | bpf_helpers_doc.py | 52 args = capture.group(4).split(', ') 53 for a in args: 413 args = argParser.parse_args() variable 416 headerParser = HeaderParser(args.filename)
|
D | diffconfig | 101 print("I/O error[%s]: %s\n" % (e.args[0],e.args[1]))
|
D | checkpatch.pl | 6229 my $args = trim($1); 6230 while ($args =~ m/\s*($Type\s*(?:$Ident|\(\s*\*\s*$Ident?\s*\)\s*$balanced_parens)?)/g) {
|
/scripts/atomic/ |
D | gen-atomic-long.sh | 85 grep '^[a-z]' "$1" | while read name meta args; do 86 gen_proto "${meta}" "${name}" "atomic64" "s64" ${args} 94 grep '^[a-z]' "$1" | while read name meta args; do 95 gen_proto "${meta}" "${name}" "atomic" "int" ${args}
|
D | gen-atomic-fallback.sh | 25 local args="$(gen_args "$@")" 158 grep '^[a-z]' "$1" | while read name meta args; do 159 gen_proto "${meta}" "${name}" "atomic" "int" ${args} 172 grep '^[a-z]' "$1" | while read name meta args; do 173 gen_proto "${meta}" "${name}" "atomic64" "s64" ${args}
|
D | gen-atomic-instrumented.sh | 81 local args="$(gen_args "$@")" 91 ${retstmt}arch_${atomicname}(${args});
|
D | atomics.tbl | 1 # name meta args... 14 # Where args contains list of type[:name], where type is:
|
/scripts/atomic/fallbacks/ |
D | release | 6 ${retstmt}${atomic}_${pfx}${name}${sfx}_relaxed(${args});
|
D | acquire | 5 ${ret} ret = ${atomic}_${pfx}${name}${sfx}_relaxed(${args});
|
D | fence | 7 ret = ${atomic}_${pfx}${name}${sfx}_relaxed(${args});
|
/scripts/gdb/linux/ |
D | symbols.py | 101 args = [] 106 args.append(" -s {name} {addr}".format( 108 return "".join(args)
|
/scripts/genksyms/ |
D | genksyms.c | 708 va_list args; in error_with_pos() local 713 va_start(args, fmt); in error_with_pos() 714 vfprintf(stderr, fmt, args); in error_with_pos() 715 va_end(args); in error_with_pos()
|
/scripts/gcc-plugins/ |
D | structleak_plugin.c | 53 static tree handle_user_attribute(tree *node, tree name, tree args, int flags, bool *no_add_attrs) in handle_user_attribute() argument
|
D | randomize_layout_plugin.c | 76 static tree handle_randomize_layout_attr(tree *node, tree name, tree args, int flags, bool *no_add_… in handle_randomize_layout_attr() argument 119 static tree handle_randomize_considered_attr(tree *node, tree name, tree args, int flags, bool *no_… in handle_randomize_considered_attr() argument 129 static tree handle_randomize_performed_attr(tree *node, tree name, tree args, int flags, bool *no_a… in handle_randomize_performed_attr() argument
|
D | latent_entropy_plugin.c | 123 tree args __unused, in handle_latent_entropy_attribute()
|