/scripts/ |
A D | verify_builtin_ranges.awk | 15 function get_module_info(fn, mod, obj, s) { 16 if (fn in omod) 17 return omod[fn]; 19 if (match(fn, /\/[^/]+$/) == 0) 22 obj = fn; 24 fn = substr(fn, 1, RSTART) "." substr(fn, RSTART + 1) ".cmd"; 25 if (getline s <fn == 1) { 32 print "ERROR: Failed to read: " fn "\n\n" \ 36 close(fn); 40 close(fn);
|
A D | split-man.pl | 19 $fn = "$ARGV[0]/$1.9"; 20 print STDERR "Creating $fn\n"; 21 open OUT, ">$fn" or die "can't open $fn: $!\n";
|
A D | generate_builtin_ranges.awk | 15 function get_module_info(fn, mod, obj, s) { 16 if (fn in omod) 17 return omod[fn]; 19 if (match(fn, /\/[^/]+$/) == 0) 22 obj = fn; 24 fn = substr(fn, 1, RSTART) "." substr(fn, RSTART + 1) ".cmd"; 25 if (getline s <fn == 1) { 32 close(fn);
|
A D | decode_stacktrace.sh | 46 …for fn in {,/usr/lib/debug}/boot/vmlinux-$release{,.debug} /lib/modules/$release{,/build}/vmlinux … 47 if [ -e "$fn" ] ; then 48 vmlinux=$fn 107 for fn in $(find "$dir" -name "${module//_/[-_]}.ko*") ; do 108 if ${READELF} -WS "$fn" | grep -qwF .debug_line ; then 109 echo $fn
|
A D | make_fit.py | 288 for fn in files: 289 if fn not in fdts: 291 size += os.path.getsize(fn) 292 output_dtb(fsw, seq, fn, args.arch, args.compress) 293 fdts[fn] = seq 295 files_seq = [fdts[fn] for fn in files]
|
A D | faddr2line | 335 done < <(echo "${ELF_SYMS}" | sed 's/\[.*\]//' | ${AWK} -v fn=$sym_name '$8 == fn')
|
A D | unifdef.c | 806 Linetype (*fn)(int *, Linetype, int, Linetype, int); member 937 lt = op->fn(valp, lt, *valp, rt, val); in eval_table()
|
/scripts/coccinelle/locks/ |
A D | call_kern.cocci | 21 identifier fn; 25 fn(...) { 40 identifier gfp.fn; 72 fn@p2(...) 89 fn << gfp.fn; 100 fn << gfp.fn; 105 msg = "ERROR: function %s called on line %s inside lock on line %s but uses GFP_KERNEL" % (fn,p2[0]…
|
/scripts/kconfig/ |
A D | expr.c | 1027 fn(data, NULL, "y"); in expr_print() 1032 fn(data, NULL, "("); in expr_print() 1041 fn(data, NULL, "!"); in expr_print() 1049 fn(data, NULL, "="); in expr_print() 1075 fn(data, NULL, "!="); in expr_print() 1089 fn(data, NULL, "["); in expr_print() 1091 fn(data, NULL, " "); in expr_print() 1093 fn(data, NULL, "]"); in expr_print() 1099 fn(data, NULL, buf); in expr_print() 1104 fn(data, NULL, ")"); in expr_print() [all …]
|
A D | lkc_proto.h | 16 void conf_set_changed_callback(void (*fn)(bool)); 17 void conf_set_message_callback(void (*fn)(const char *s)); 45 void (*fn)(void *, struct symbol *, const char *),
|
A D | confdata.c | 189 void conf_set_message_callback(void (*fn)(const char *s)) in conf_set_message_callback() 191 conf_message_callback = fn; in conf_set_message_callback() 1140 void conf_set_changed_callback(void (*fn)(bool)) in conf_set_changed_callback() 1142 conf_changed_callback = fn; in conf_set_changed_callback()
|
/scripts/dtc/ |
A D | dtc-lexer.l | 81 if (memchr(fn.val, '\0', fn.len - 1)) 85 srcpos_set_line(xstrdup(fn.val), atoi(line) - 1); 86 data_free(fn);
|
A D | livetree.c | 921 static void add_fixup_entry(struct dt_info *dti, struct node *fn, in add_fixup_entry() argument 942 append_to_property(fn, m->ref, entry, strlen(entry) + 1, TYPE_STRING); in add_fixup_entry() 948 struct node *fn, in generate_fixups_tree_internal() argument 962 add_fixup_entry(dti, fn, node, prop, m); in generate_fixups_tree_internal() 967 generate_fixups_tree_internal(dti, fn, c); in generate_fixups_tree_internal()
|
A D | checks.c | 33 check_fn fn; member 46 .fn = (fn_), \ 140 if (c->fn) in check_nodes_props() 141 c->fn(c, dti, node); in check_nodes_props()
|
/scripts/coccinelle/tests/ |
A D | doubletest.cocci | 31 expression r.E,e1,e2,fn; 39 <+... \(fn(...)\|e1 op e2\|e1++\|e1--\|++e1\|--e1\) ...+>
|
/scripts/gcc-plugins/ |
A D | stackleak_plugin.c | 397 const char *fn = DECL_NAME_POINTER(current_function_decl); in stackleak_cleanup_execute() local 412 fprintf(stderr, "stackleak: instrument %s(): calls_alloca\n", fn); in stackleak_cleanup_execute() 419 fprintf(stderr, "stackleak: instrument %s()\n", fn); in stackleak_cleanup_execute()
|