Home
last modified time | relevance | path

Searched refs:string (Results 1 – 25 of 34) sorted by relevance

12

/scripts/genksyms/
Dgenksyms.c71 static struct string_list *mk_node(const char *string);
190 strcmp(defn->string, "}") == 0 && in is_unknown_symbol()
192 strcmp(defn->string, "UNKNOWN") == 0 && in is_unknown_symbol()
194 strcmp(defn->string, "{") == 0); in is_unknown_symbol()
337 free(node->string); in free_node()
350 static struct string_list *mk_node(const char *string) in mk_node() argument
355 newnode->string = xstrdup(string); in mk_node()
384 newnode->string = xstrdup(node->string); in copy_node()
409 if (a->tag != b->tag || strcmp(a->string, b->string)) in equal_list()
424 .string = buffer, in read_node()
[all …]
Dparse.y70 add_symbol(i->string, type, b, is_extern); in record_compound()
302 current_name = (*$1)->string;
311 current_name = (*$1)->string;
480 const char *name = strdup((*$1)->string);
485 const char *name = strdup((*$1)->string);
501 { export_symbol((*$3)->string); $$ = $5; }
Dgenksyms.h41 char *string; member
Dlex.l115 cur_node->string = memcpy(xmalloc(L+1), T, L+1); \
117 find_symbol(cur_node->string, SYM_ENUM_CONST, 1)?\
/scripts/
Dshow_delta13 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:
Dcheckkconfigsymbols.py166 def yel(string): argument
170 return "\033[33m%s\033[0m" % string
173 def red(string): argument
177 return "\033[31m%s\033[0m" % string
Dcheckpatch.pl596 my ($string) = @_;
597 return "" if (!defined($string));
599 while ($string =~ /^\s*\(.*\)\s*$/) {
600 $string =~ s@^\s*\(\s*@@;
601 $string =~ s@\s*\)\s*$@@;
604 $string =~ s@\s+@ @g;
606 return $string;
1866 my ($string) = @_;
1868 $string =~ s/^\s+|\s+$//g;
1870 return $string;
[all …]
Dconfig21 --set-str option string
DKbuild.include244 # Check if both arguments has same arguments. Result is empty string if equal.
256 # Replace >'< with >'\''< to be able to enclose the whole string in '...'
328 # When a Kconfig string contains a filename, it is suitable for
335 # we *do* need to escape any spaces in the string. So, for example:
/scripts/gdb/linux/
Dmodules.py36 if module['name'].string() == name:
51 mod_name = mod_name.string()
78 name=module['name'].string(),
90 name=use['source']['name'].string()))
Dsymbols.py30 module_name = module['name'].string()
99 attrs[n]['name'].string(): attrs[n]['address']
111 module_name = module['name'].string()
Dutils.py66 return container_of(ptr, gdb.lookup_type(typename.string()).pointer(),
67 elementname.string())
Dtasks.py80 comm=task["comm"].string()))
Dcpus.py114 var_ptr = gdb.parse_and_eval("&" + var_name.string())
/scripts/kconfig/
Dzconf.gperf4 %define string-pool-name kconf_id_strings
39 string, T_TYPE, TF_COMMAND, S_STRING keyword
Dzconf.tab.c_shipped86 #include <string.h>
191 char *string;
1147 heuristic is that double-quoting is unnecessary unless the string
1208 /* Internationalized format string. */
1309 produced a string with the wrong number of "%s"s. */
1689 { zconf_error("unknown statement \"%s\"", (yyvsp[(2) - (4)].string)); }
1706 { zconf_error("unknown option \"%s\"", (yyvsp[(1) - (3)].string)); }
1717 struct symbol *sym = sym_lookup((yyvsp[(2) - (3)].string), 0);
1720 …printd(DEBUG_PARSE, "%s:%d:config %s\n", zconf_curname(), zconf_lineno(), (yyvsp[(2) - (3)].string
1735 struct symbol *sym = sym_lookup((yyvsp[(2) - (3)].string), 0);
[all …]
Dzconf.y38 char *string; member
56 %token <string> T_HELPTEXT
69 %token <string> T_WORD
70 %token <string> T_WORD_QUOTE
86 %type <string> prompt
93 %type <string> symbol_option_arg word_opt
Dzconf.l113 zconflval.string = text;
149 zconflval.string = text;
Dnconf.h83 const char *string,
Dnconf.gui.c151 const char *string, in print_in_middle() argument
167 length = strlen(string); in print_in_middle()
171 mvwprintw(win, y, x, "%s", string); in print_in_middle()
Dzconf.lex.c_shipped39 #include <string.h>
801 #include <string.h>
957 /* This used to be an fputs(), but since the string might contain NUL's,
1134 zconflval.string = text;
1218 zconflval.string = text;
1253 zconflval.string = text;
1271 zconflval.string = text;
1286 zconflval.string = text;
2098 /** Setup the input buffer state to scan a string. The next call to zconflex() will
2100 * @param yystr a NUL-terminated string to scan
[all …]
/scripts/dtc/
Dflattree.c52 void (*string)(void *, char *, int); member
109 .string = bin_emit_string,
235 .string = asm_emit_string,
272 emit->string(etarget, tree->fullpath, 0); in flatten_tree()
274 emit->string(etarget, tree->name, 0); in flatten_tree()
305 emit->string(etarget, tree->name, tree->basenamelen); in flatten_tree()
/scripts/dtc/libfdt/
Dfdt_ro.c593 const char *string) in fdt_stringlist_search() argument
602 len = strlen(string) + 1; in fdt_stringlist_search()
612 if (length == len && memcmp(list, string, length) == 0) in fdt_stringlist_search()
/scripts/kconfig/lxdialog/
Ddialog.h230 int first_alpha(const char *string, const char *exempt);
Dutil.c532 int first_alpha(const char *string, const char *exempt) in first_alpha() argument
536 for (i = 0; i < strlen(string); i++) { in first_alpha()
537 c = tolower(string[i]); in first_alpha()

12