/scripts/genksyms/ |
D | genksyms.c | 59 static struct string_list *mk_node(const char *string); 178 strcmp(defn->string, "}") == 0 && in is_unknown_symbol() 180 strcmp(defn->string, "UNKNOWN") == 0 && in is_unknown_symbol() 182 strcmp(defn->string, "{") == 0); in is_unknown_symbol() 325 free(node->string); in free_node() 338 static struct string_list *mk_node(const char *string) in mk_node() argument 343 newnode->string = xstrdup(string); in mk_node() 372 newnode->string = xstrdup(node->string); in copy_node() 397 if (a->tag != b->tag || strcmp(a->string, b->string)) in equal_list() 412 .string = buffer, in read_node() [all …]
|
D | parse.y | 58 add_symbol(i->string, type, b, is_extern); in record_compound() 297 current_name = (*$1)->string; 306 current_name = (*$1)->string; 475 const char *name = strdup((*$1)->string); 480 const char *name = strdup((*$1)->string); 496 { export_symbol((*$3)->string); $$ = $5; }
|
D | genksyms.h | 30 char *string; member
|
D | lex.l | 103 cur_node->string = memcpy(xmalloc(L+1), T, L+1); \ 105 find_symbol(cur_node->string, SYM_ENUM_CONST, 1)?\
|
/scripts/gdb/linux/ |
D | device.py | 26 return dev_init_name.string() 27 return dev['kobj']['name'].string() 51 if item['bus']['name'].string() == name: 58 if item['class']['name'].string() == name: 106 gdb.write('bus {}:\t{}\n'.format(bus['bus']['name'].string(), bus)) 126 gdb.write("class {}:\t{}\n".format(cls['class']['name'].string(), cls)) 157 name = name.string() 158 bus = get_bus_by_name(bus.string()) 171 name = name.string() 172 cls = get_class_by_name(cls.string())
|
D | modules.py | 36 if module['name'].string() == name: 51 mod_name = mod_name.string() 85 name=module['name'].string(), 95 name=use['source']['name'].string())) 126 s = "0x%x" % addr + " is in " + mod['name'].string() + ".ko\n"
|
D | proc.py | 32 gdb.write(gdb.parse_and_eval("saved_command_line").string() + "\n") 47 gdb.write(gdb.parse_and_eval("(char *)linux_banner").string()) 79 res['name'].string() + "\n") 117 for key, string in lst.items(): 119 opts += string 177 devname = mnt['mnt_devname'].string() 193 fstype = superblock['s_type']['name'].string()
|
D | clk.py | 33 clk['name'].string(), 66 if child['name'].string() == name: 73 name = name.string()
|
D | interrupts.py | 57 name = chip['name'].string() 72 text += "-%-8s" % (desc['name'].string()) 79 text += " %s" % (action['name'].string()) 85 text += ", %s" % (action['name'].string()) 181 text += " %s" % (ipi_types[ipi].string())
|
D | genpd.py | 17 path = kobj['name'].string() 60 genpd['name'].string(),
|
D | symbols.py | 30 module_name = module['name'].string() 100 attrs[n]['battr']['attr']['name'].string(): attrs[n]['address'] 115 module_name = module['name'].string()
|
D | vfs.py | 25 return p + d['d_iname'].string()
|
D | utils.py | 85 return container_of(ptr, gdb.lookup_type(typename.string()).pointer(), 86 elementname.string())
|
D | slab.py | 191 if cache['name'].string() == cache_name: 205 raise gdb.GdbError("SLAB_STORE_USER is not set in %s" % target_cache['name'].string()) 316 …{:12} | {:12} | {:8} | {:11} | {:13}\n".format(hex(cache), cache['name'].string(), str(active_objs…
|
D | tasks.py | 81 task["comm"].string()))
|
/scripts/ |
D | show_delta | 13 import string 49 (time_str, rest) = string.split(line[1:],']',1) 50 time = string.atof(time_str) 114 if string.find(rest, base_str)==1:
|
D | checkkconfigsymbols.py | 212 def yel(string): argument 216 return "\033[33m%s\033[0m" % string if COLOR else string 219 def red(string): argument 223 return "\033[31m%s\033[0m" % string if COLOR else string
|
D | generate_rust_target.rs | 35 Value::String(string) => write!(formatter, "\"{}\"", string), in fmt()
|
D | config | 22 --set-str option string
|
D | checkpatch.pl | 898 my ($string) = @_; 900 return trim($string) if ($string =~ /^\s*0[0-7]{3,3}\s*$/); 907 while ($string =~ /\b(($single_mode_perms_string_search)\b(?:\s*\|\s*)?\s*)/g) { 908 $curpos = pos($string); 1095 my ($string) = @_; 1096 return "" if (!defined($string)); 1098 while ($string =~ /^\s*\(.*\)\s*$/) { 1099 $string =~ s@^\s*\(\s*@@; 1100 $string =~ s@\s*\)\s*$@@; 1103 $string =~ s@\s+@ @g; [all …]
|
D | Kconfig.include | 62 # $(m32-flag): -m32 if the compiler supports it, or an empty string otherwise. 63 # $(m64-flag): -m64 if the compiler supports it, or an empty string otherwise.
|
/scripts/kconfig/ |
D | lexer.l | 142 yylval.string = text; 147 yylval.string = expand_token(yytext, yyleng); 148 if (strlen(yylval.string)) 150 free(yylval.string); 157 yylval.string = text;
|
D | parser.y | 38 char *string; member 46 %token <string> T_HELPTEXT 47 %token <string> T_WORD 48 %token <string> T_WORD_QUOTE 83 %token <string> T_ASSIGN_VAL 96 %type <string> end 98 %type <string> word_opt assign_val
|
/scripts/dtc/libfdt/ |
D | libfdt_env.h | 85 static inline size_t fdt_strnlen(const char *string, size_t max_count) in fdt_strnlen() argument 87 const char *p = memchr(string, 0, max_count); in fdt_strnlen() 88 return p ? p - string : max_count; in fdt_strnlen()
|
/scripts/dtc/ |
D | flattree.c | 37 void (*string)(void *, const char *, int); member 94 .string = bin_emit_string, 213 .string = asm_emit_string, 250 emit->string(etarget, tree->fullpath, 0); in flatten_tree() 252 emit->string(etarget, tree->name, 0); in flatten_tree() 283 emit->string(etarget, tree->name, tree->basenamelen); in flatten_tree()
|