Searched refs:name (Results 1 – 16 of 16) sorted by relevance
/scripts/ |
A D | gen-rrtypes.py | 47 name, number, comment = row[:3] 48 if name == '*': 49 name = 'ANY' 52 yield Type(name, number, comment) 59 name = typ.name.replace("-", "_").lower() variable 60 print(" ns_t_{0} = {1.number},".format(name, typ)) 66 name = typ.name.replace("-", "_") variable 67 print("#define T_{0} ns_t_{1}".format(name.upper(), name.lower()))
|
A D | test-installation.pl | 116 ($name, $version)= /^lib(.*)\.so-version=\.(.*)$/; 124 next if ($build_mathvec == 0 && $name eq "mvec"); 125 if ($name ne "nss_ldap" && $name ne "db1" 126 && $name ne "thread_db" 127 && $name ne "nss_test1" && $name ne "libgcc_s") { 128 $link_libs .= " -l$name"; 129 $versions{$name} = $version; 180 ($name, $version1, $version2) = 182 $found{$name} = 1; 183 if ($versions{$name} ne $version1 || $version1 ne $version2) { [all …]
|
A D | check-execstack.awk | 19 function check_one(name) { 25 n = split(name, parts, "/"); 30 print name ": *** input did not look like readelf -l output"; 34 print name ": OK"; 37 print name ": *** executable stack signaled, expected"; 39 print name ": *** executable stack signaled"; 45 print name ": *** no PT_GNU_STACK entry, expected"; 47 print name ": *** no PT_GNU_STACK entry"; 51 print name ": no PT_GNU_STACK but default is OK";
|
A D | glibcextract.py | 46 name = arg[0] 50 % (name, value)) 100 name = match.group(1) 113 if name in macros_exp: 115 macros_exp[name] = value 116 macros_args[name] = args 162 if name not in macros_2: 166 elif macros_1[name] != macros_2[name]: 168 % (name, macros_1[name], macros_2[name])) 170 for name in sorted(macros_2.keys()): [all …]
|
A D | check-initfini.awk | 27 function check_one(name) { 29 print name ": *** input did not look like readelf -d output"; 34 print name ": *** _init is in dynamic symbol table"; 39 print name ": *** _fini is in dynamic symbol table"; 44 print name ": OK";
|
A D | gen-libc-modules.awk | 20 name = $2 21 if (name == "ld") 22 name = "rtld" 25 libs[++num] = name
|
A D | check-textrel.awk | 9 function check_one(name) { 11 print name ": *** input did not look like readelf -d output"; 14 print name ": *** text relocations used"; 17 print name ": OK";
|
A D | gen-as-const.py | 62 name = arg[0] 66 % (name, value, name)) 101 name = words[0] 103 sym_data.append((name, value))
|
A D | versions.awk | 116 function closeversion(name, oldname) { 123 if (oldname == "" || name !~ pfx) print "};" > outfile; 127 function close_and_move(name, real_name) { 128 close(name); 129 system(move_if_change " " name " " real_name " >&2");
|
A D | check-obsolete-constructs.py | 355 name = m.group(2) 361 if n and n.group(1) == "__" and n.group(2) == name: 364 if (name[:5] == "u_int" and name[-2:] == "_t" 366 and name[5:-2] == defn[6:-2]): 371 if (name == "ulong" and ntok == 5 377 if (name == "ushort" and ntok == 5 383 if (name == "uint" and ntok == 4
|
A D | move-symbol-to-libc.py | 163 move_symbols(directory, [name for name in files 164 if name != 'libc.abilist' 165 and name.endswith('.abilist')], symbols)
|
A D | build-many-glibcs.py | 462 if cfg.name in self.configs: 465 self.configs[cfg.name] = cfg 467 if c.name in self.glibc_configs: 470 self.glibc_configs[c.name] = c 527 for name in sorted(self.configs.keys()): 528 print(name) 533 print(config.name, config.compiler.name) 1309 self.name = '%s-%s' % (arch, os_name) 1368 cmdlist.push_subdesc(g.name) 1543 'compilers', glibc.compiler.name, 'glibc', glibc.name) [all …]
|
A D | documented.sh | 64 while read name; do 66 <td><tt>$name</tt></td>"
|
A D | test_printers_common.py | 355 for name, value in children.items(): 357 test('print {0}'.format(var), r'{0} = {1}'.format(name, value))
|
A D | pylintrc | 53 # written in a file name "pylint_global.[txt|html]". 137 # f is a useful name for a file descriptor 157 # A regular expression matching the beginning of the name of dummy variables 185 # mixin class is detected if its name ends with "mixin" (case insensitive). 241 # Argument names that match this expression will be ignored. Default to name
|
A D | config.guess | 1119 if test -f /usr/options/cb.name; then 1120 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name`
|
Completed in 26 milliseconds