Searched refs:name (Results 1 - 25 of 63) sorted by relevance

123

/scripts/
H A Dnamespace.pl5 # Perform a name space analysis on the linux kernel.
61 # * Repeat the name space analysis until you can live with with the
82 my %def = (); # all definitions for each name
84 my %ref = (); # $ref{$name} exists if there is a true external reference to $name
85 my %export = (); # $export{$name} exists if there is an EXPORT_... of $name
161 $_ = $File::Find::name;
221 my ($source, $type, $name);
265 ($type, $name)
[all...]
H A Dbloat-o-meter19 size, type, name = l[:-1].split()
22 if name[:6] == "__mod_": continue
24 if "." in name[1:]: name = "static." + name.split(".")[0]
25 sym[name] = sym.get(name, 0) + int(size, 16)
37 for name in old:
38 if name not in common:
40 down += old[name]
[all...]
H A Dcheckkconfigsymbols.sh10 Kconfigs="`find . -name 'Kconfig' -o -name 'Kconfig*[^~]'`"
13 find $paths -name '*.[chS]' -o -name 'Makefile' -o -name 'Makefile*[^~]'| while read i
41 for (name in names) {
43 printf ", %s", name;
45 printf "%s", name;
52 # Remove the _MODULE suffix when checking the variable name. This should
H A Dpatch-kernel109 name="gzip"
113 name="bzip"
117 name="bzip2"
121 name="zip"
125 name="uncompress"
129 name="plaintext"
140 # First param is patch name (e.g. patch-2.4.9-ac5) - without path or extension
143 echo -n "Applying $1 (${name})... "
151 if [ "`find $sourcedir/ '(' -name '*.rej' -o -name '
[all...]
H A Dcleanpatch78 $name = basename($0);
87 print STDERR "Usage: $name [-width #] files...\n";
96 print STDERR "$name: $f\n";
104 print STDERR "$name: Cannot open file: $f: $!\n";
123 print STDERR "$name: $f: binary file\n";
181 print STDERR "$name: $f: malformed patch\n";
187 print STDERR "$name: $f: malformed patch\n";
240 print STDERR "$name: $f: malformed patch\n";
252 die "$name: Failed to truncate modified file: $f: $!\n";
H A Dtags.sh15 ignore="( -name SCCS -o -name BitKeeper -o -name .svn -o \
16 -name CVS -o -name .pc -o -name .hg -o \
17 -name .git ) \
51 find ${tree}arch/$1 $ignore $prune -name "$2" -print;
57 include=$(find ${tree}arch/$1/ -name include -type d);
60 find $include $ignore -name "
[all...]
H A Dcleanfile78 $name = basename($0);
87 print STDERR "Usage: $name [-width #] files...\n";
96 print STDERR "$name: $f\n";
104 print STDERR "$name: Cannot open file: $f: $!\n";
123 print STDERR "$name: $f: binary file\n";
171 die "$name: Failed to truncate modified file: $f: $!\n";
H A Dget_maintainer.pl678 my ($name, $address) = parse_email($email);
680 my $tmp_email = format_email($name, $address, $email_usename);
742 --n => include name 'Full Name <addr\@domain.tld>'
751 --subsystem => print subsystem name if any
783 other automated tools that expect only ["name"] <email address>
833 my $name = "";
837 $name = $1;
845 $name =~ s/^\s+|\s+$//g;
846 $name =~ s/^\"|\"$//g;
849 if ($name
[all...]
/scripts/kconfig/
H A Dkconfig_load.c7 #define P(name,type,arg) type (*name ## _p) arg
25 #define P(name,type,arg) \
27 name ## _p = dlsym(handle, #name); \
H A Dutil.c12 struct file *file_lookup(const char *name) argument
15 const char *file_name = sym_expand_string_value(name);
18 if (!strcmp(name, file->name)) {
26 file->name = file_name;
33 int file_write_dep(const char *name) argument
40 if (!name)
41 name = ".kconfig.d";
48 fprintf(out, "\t%s \\\n", file->name);
50 fprintf(out, "\t%s\n", file->name);
[all...]
H A Dconfdata.c66 char *name = getenv("KCONFIG_CONFIG"); local
68 return name ? name : ".config";
73 char *name = getenv("KCONFIG_AUTOCONFIG"); local
75 return name ? name : "include/config/auto.conf";
83 char *dst, name[SYMBOL_MAXLENGTH]; local
86 dst = name;
90 dst = name;
94 sym = sym_lookup(name,
108 char *env, *name; local
182 conf_read_simple(const char *name, int def) argument
341 conf_read(const char *name) argument
421 conf_write_string(bool headerfile, const char *name, const char *str, FILE *out) argument
555 conf_write(const char *name) argument
661 const char *name; local
775 const char *name; local
[all...]
H A Dlkc.h16 static inline void bindtextdomain(const char *name, const char *dir) {} argument
25 #define P(name,type,arg) extern type name arg
28 #define P(name,type,arg) extern type (*name ## _p) arg
65 int name; member in struct:kconf_id
78 FILE *zconf_fopen(const char *name);
79 void zconf_initscan(const char *name);
80 void zconf_nextfile(const char *name);
123 struct file *file_lookup(const char *name);
[all...]
H A Dconf.c137 printf("(%s) ", sym->name);
169 if (sym->name)
170 printf("(%s) ", sym->name);
283 if (child->sym->name)
284 printf(" (%s)", child->sym->name);
427 if (sym->name && !sym_is_choice_value(sym)) {
428 printf("%s%s\n", CONFIG_, sym->name);
462 const char *name; local
504 name = av[optind];
505 conf_parse(name);
[all...]
H A Dsymbol.c16 .name = "y",
20 .name = "m",
24 .name = "n",
28 .name = "",
312 sym->curr.val = sym->name;
360 sym->name);
779 struct symbol *sym_lookup(const char *name, int flags) argument
785 if (name) {
786 if (name[0] && !name[
820 sym_find(const char *name) argument
863 char *p, name[SYMBOL_MAXLENGTH]; local
[all...]
H A Dlkc_proto.h4 P(conf_parse,void,(const char *name));
5 P(conf_read,int,(const char *name));
6 P(conf_read_simple,int,(const char *name, int));
7 P(conf_write_defconfig,int,(const char *name));
8 P(conf_write,int,(const char *name));
31 P(sym_lookup,struct symbol *,(const char *name, int flags));
32 P(sym_find,struct symbol *,(const char *name));
H A Dzconf.l262 * ./name
263 * $(srctree)/name
268 FILE *zconf_fopen(const char *name)
273 f = fopen(name, "r");
274 if (!f && name != NULL && name[0] != '/') {
277 sprintf(fullname, "%s/%s", env, name);
284 void zconf_initscan(const char *name)
286 yyin = zconf_fopen(name);
288 printf("can't find file %s\n", name);
[all...]
/scripts/dtc/libfdt/
H A Dlibfdt.h156 #define __fdt_set_hdr(name) \
157 static inline void fdt_set_##name(void *fdt, uint32_t val) \
160 fdth->name = cpu_to_fdt32(val); \
263 * @name: name of the subnode to locate
264 * @namelen: number of characters of name to consider
267 * namelen characters of name for matching the subnode name. This is
272 const char *name, int namelen);
277 * @name
374 fdt_get_property_w(void *fdt, int nodeoffset, const char *name, int *lenp) argument
411 fdt_getprop_w(void *fdt, int nodeoffset, const char *name, int *lenp) argument
723 fdt_setprop_inplace_cell(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
789 fdt_property_cell(void *fdt, const char *name, uint32_t val) argument
939 fdt_setprop_cell(void *fdt, int nodeoffset, const char *name, uint32_t val) argument
[all...]
H A Dfdt_wip.c58 int fdt_setprop_inplace(void *fdt, int nodeoffset, const char *name, argument
64 propval = fdt_getprop_w(fdt, nodeoffset, name, &proplen);
83 int fdt_nop_property(void *fdt, int nodeoffset, const char *name) argument
88 prop = fdt_get_property_w(fdt, nodeoffset, name, &len);
H A Dfdt_ro.c101 const char *name, int namelen)
113 && _fdt_nodename_eq(fdt, offset, name, namelen))
124 const char *name)
126 return fdt_subnode_offset_namelen(fdt, parentoffset, name, strlen(name));
171 *len = strlen(nh->name);
173 return nh->name;
183 const char *name, int *lenp)
216 if (strcmp(fdt_string(fdt, namestroff), name) == 0) {
245 const char *name, in
100 fdt_subnode_offset_namelen(const void *fdt, int offset, const char *name, int namelen) argument
123 fdt_subnode_offset(const void *fdt, int parentoffset, const char *name) argument
181 fdt_get_property(const void *fdt, int nodeoffset, const char *name, int *lenp) argument
244 fdt_getprop(const void *fdt, int nodeoffset, const char *name, int *lenp) argument
272 const char *name; local
[all...]
H A Dfdt_rw.c205 static int _fdt_resize_property(void *fdt, int nodeoffset, const char *name, argument
211 *prop = fdt_get_property_w(fdt, nodeoffset, name, &oldlen);
223 static int _fdt_add_property(void *fdt, int nodeoffset, const char *name, argument
234 namestroff = _fdt_find_add_string(fdt, name);
251 int fdt_set_name(void *fdt, int nodeoffset, const char *name) argument
263 newlen = strlen(name);
270 memcpy(namep, name, newlen+1);
274 int fdt_setprop(void *fdt, int nodeoffset, const char *name, argument
282 err = _fdt_resize_property(fdt, nodeoffset, name, len, &prop);
284 err = _fdt_add_property(fdt, nodeoffset, name, le
292 fdt_delprop(void *fdt, int nodeoffset, const char *name) argument
307 fdt_add_subnode_namelen(void *fdt, int parentoffset, const char *name, int namelen) argument
348 fdt_add_subnode(void *fdt, int parentoffset, const char *name) argument
[all...]
/scripts/selinux/genheaders/
H A Dgenheaders.c9 const char *name; member in struct:security_class_mapping
61 for (i = 0; secclass_map[i].name; i++) {
63 map->name = stoupperx(map->name);
75 for (i = 0; secclass_map[i].name; i++) {
77 fprintf(fout, "#define SECCLASS_%s", map->name);
78 for (j = 0; j < max(1, 40 - strlen(map->name)); j++)
97 for (i = 0; secclass_map[i].name; i++) {
99 substr = strstr(map->name, needle);
101 fprintf(fout, "\tcase SECCLASS_%s:\n", map->name);
[all...]
/scripts/selinux/mdp/
H A Dmdp.c32 static void usage(char *name) argument
34 printf("usage: %s [-m] policy_file context_file\n", name);
40 const char *name; member in struct:security_class_mapping
72 for (i = 0; secclass_map[i].name; i++)
73 fprintf(fout, "class %s\n", secclass_map[i].name);
83 for (i = 0; secclass_map[i].name; i++) {
85 fprintf(fout, "class %s\n", map->name);
102 for (i = 0; secclass_map[i].name; i++)
104 secclass_map[i].name);
/scripts/dtc/
H A Dutil.c37 char *join_path(const char *path, const char *name) argument
40 int lenn = strlen(name);
57 memcpy(str+lenp, name, lenn+1);
H A Dchecks.c26 fprintf(stderr, "=== %s: ", (c)->name); \
55 const char *name; member in struct:check
70 .name = #nm, \
102 (c->level == ERROR) ? "ERROR" : "Warning", c->name);
125 TRACE(c, "%s\t'%s'", node->fullpath, prop->name);
151 c->prereq[i]->name);
226 if (streq(child->name, child2->name))
227 FAIL(c, "Duplicate node name %s",
239 if (streq(prop->name, prop
[all...]
/scripts/genksyms/
H A Dgenksyms.h45 const char *name; member in struct:symbol
62 struct symbol *find_symbol(const char *name, enum symbol_type ns, int exact);
63 struct symbol *add_symbol(const char *name, enum symbol_type type,

Completed in 150 milliseconds

123