/glibc-2.36/locale/programs/ |
D | locfile-kw.h | 31 #line 1 "locfile-kw.gperf" 53 #line 23 "locfile-kw.gperf" 133 #line 30 "locfile-kw.gperf" in locfile_hash() 136 #line 70 "locfile-kw.gperf" in locfile_hash() 138 #line 129 "locfile-kw.gperf" in locfile_hash() 140 #line 29 "locfile-kw.gperf" in locfile_hash() 143 #line 168 "locfile-kw.gperf" in locfile_hash() 145 #line 153 "locfile-kw.gperf" in locfile_hash() 147 #line 161 "locfile-kw.gperf" in locfile_hash() 149 #line 158 "locfile-kw.gperf" in locfile_hash() [all …]
|
D | charmap-kw.h | 31 #line 1 "charmap-kw.gperf" 53 #line 23 "charmap-kw.gperf" 133 #line 38 "charmap-kw.gperf" in charmap_hash() 136 #line 39 "charmap-kw.gperf" in charmap_hash() 138 #line 34 "charmap-kw.gperf" in charmap_hash() 140 #line 36 "charmap-kw.gperf" in charmap_hash() 143 #line 27 "charmap-kw.gperf" in charmap_hash() 145 #line 28 "charmap-kw.gperf" in charmap_hash() 147 #line 29 "charmap-kw.gperf" in charmap_hash() 149 #line 25 "charmap-kw.gperf" in charmap_hash() [all …]
|
/glibc-2.36/nss/ |
D | nss_action_parse.c | 33 while (line[0] != '\0' && isspace (line[0])) \ 34 ++line; 40 nss_action_parse (const char *line, struct action_list *result) in nss_action_parse() argument 45 if (line[0] == '\0') in nss_action_parse() 50 const char *name = line; in nss_action_parse() 51 while (line[0] != '\0' && !isspace (line[0]) && line[0] != '[') in nss_action_parse() 52 ++line; in nss_action_parse() 53 if (name == line) in nss_action_parse() 57 = { .module = __nss_module_allocate (name, line - name), }; in nss_action_parse() 70 if (line[0] == '[') in nss_action_parse() [all …]
|
D | nss_database.c | 123 const char *line; in nss_database_select_default() local 128 line = "nis [NOTFOUND=return] files"; in nss_database_select_default() 131 line = "compat [NOTFOUND=return] files"; in nss_database_select_default() 136 line = "files dns"; in nss_database_select_default() 144 line = "files"; in nss_database_select_default() 148 line = "nis"; in nss_database_select_default() 152 line = "nis nisplus"; in nss_database_select_default() 166 *result = __nss_action_parse (line); in nss_database_select_default() 208 process_line (struct nss_database_data *data, char *line) in process_line() argument 214 while (isspace (line[0])) in process_line() [all …]
|
/glibc-2.36/nss/nss_files/ |
D | files-parse.c | 84 extern int parse_line (char *line, void *result, 96 parse_line (char *line, void *generic_result, \ 103 char *p = strpbrk (line, EOLSET "\n"); \ 115 variable = line; \ 116 while (*line != '\0' && !terminator_p (*line)) \ 117 ++line; \ 118 if (*line != '\0') \ 120 *line = '\0'; \ 122 ++line; \ 123 while (swallow && terminator_p (*line)); \ [all …]
|
D | files-alias.c | 90 char *line; in libc_hidden_def() local 100 line = __fgets_unlocked (first_unused, room_left, stream); in libc_hidden_def() 101 if (line == NULL) in libc_hidden_def() 128 while (isspace (*line)) in libc_hidden_def() 129 ++line; in libc_hidden_def() 132 while (*line != '\0' && *line != ':') in libc_hidden_def() 133 *first_unused++ = *line++; in libc_hidden_def() 134 if (*line == '\0' || result->alias_name == first_unused) in libc_hidden_def() 142 ++line; in libc_hidden_def() 154 while (isspace (*line)) in libc_hidden_def() [all …]
|
/glibc-2.36/manual/ |
D | summary.pl | 66 while (my $line = <$input>) { 67 if ($line =~ $nde) { 68 $node = &get_node($line); 69 } elsif ($line =~ $def) { 70 &process_annotation($line); 71 } elsif ($line =~ $list) { 73 } elsif ($line =~ $stds) { 74 &record_error("Misplaced annotation", ["[$.] ".$line]); 75 } elsif ($line =~ $ign) { 105 my $line = shift; [all …]
|
/glibc-2.36/iconvdata/ |
D | bug-iconv12.c | 29 int exp_errno, int line) in run_conversion() argument 44 printf ("line %d: cannot convert from %s to %s: %m\n", line, from, to); in run_conversion() 93 , line, from, to); in run_conversion() 123 #define RUN_UCS4_UTF32_INPUT(b0, b1, b2, b3, err, line) \ in do_test() argument 128 fails += run_conversion ("UCS4", "UTF-8", buf, 4, err, line); \ in do_test() 129 fails += run_conversion ("UCS4", "UTF-16LE", buf, 4, err, line); \ in do_test() 130 fails += run_conversion ("UCS4", "UTF-16BE", buf, 4, err, line); \ in do_test() 131 fails += run_conversion ("UCS4", "UTF-32LE", buf, 4, err, line); \ in do_test() 132 fails += run_conversion ("UCS4", "UTF-32BE", buf, 4, err, line); \ in do_test() 133 fails += run_conversion ("UTF-32BE", "WCHAR_T", buf, 4, err, line); \ in do_test() [all …]
|
/glibc-2.36/posix/ |
D | tst-pcre.c | 30 char *line = NULL; in main() local 56 if ((len = getline (&line, &line_len, f)) <= 0 in main() 57 || strncmp (line, "# PCRE", 6) != 0) in main() 61 free (line); in main() 67 while ((len = getline (&line, &line_len, f)) > 0) in main() 74 if (line[len - 1] == '\n') in main() 75 line[--len] = '\0'; in main() 77 if (line[0] == '#') in main() 80 if (line[0] == '\0') in main() 89 if (line[0] == '/') in main() [all …]
|
D | tst-boost.c | 73 char *line = NULL; in main() local 98 while ((len = getline (&line, &line_len, f)) > 0) in main() 103 if (line[len - 1] == '\n') in main() 104 line[--len] = '\0'; in main() 106 puts (line); in main() 108 if (line[0] == ';') in main() 111 if (line[0] == '\0') in main() 114 if (line[0] == '-') in main() 116 if (strstr (line, "REG_BASIC")) in main() 120 if (strstr (line, "REG_ICASE")) in main() [all …]
|
D | annexc.c | 710 char line[BUFSIZ], *command; in get_null_defines() local 751 while (fgets (line, sizeof line, input) != NULL) in get_null_defines() 754 if (strlen (line) < 9 || line[7] != ' ') in get_null_defines() 757 line); in get_null_defines() 760 if (line[8] == '_') in get_null_defines() 773 start = &line[8]; in get_null_defines() 803 char line[BUFSIZ], command[sizeof fmt + strlen (header->name) in check_header() local 819 sprintf (line, testfmt, header->subset, header->subset, CC, INC, CC, in check_header() 821 if (xsystem (line)) in check_header() 842 while (fgets (line, sizeof line, input) != NULL) in check_header() [all …]
|
/glibc-2.36/localedata/unicode-gen/ |
D | gen_unicode_ctype.py | 73 line = prefix 76 if line.strip(): 77 line += ';' 83 if len(line+range_string) > max_column: 84 i18n_file.write(line+'/\n') 85 line = prefix 86 line += range_string 87 if line.strip(): 88 i18n_file.write(line+'\n') 104 line = prefix [all …]
|
D | ctype_compatibility.py | 46 for line in i18n_file: 47 line = line.strip('\n') 48 if '%' in line: 49 if line.endswith('/'): 50 line = line[0:line.find('%')] + '/' 52 line = line[0:line.find('%')] 53 line = line.strip() 54 if line.endswith('/'): 55 current_line += line[:-1] 57 yield current_line + line [all …]
|
/glibc-2.36/stdlib/ |
D | isomac.c | 247 char line[BUFSIZ], *command; in get_null_defines() local 289 while (fgets (line, sizeof line, input) != NULL) in get_null_defines() 294 if (strlen (line) < 9 || line[7] != ' ') in get_null_defines() 297 line); in get_null_defines() 300 if (line[8] == '_') in get_null_defines() 313 start = &line[8]; in get_null_defines() 349 char line[BUFSIZ], *command; in check_header() local 380 while (fgets (line, sizeof line, input) != NULL) in check_header() 385 if (strlen (line) < 9 || line[7] != ' ') in check_header() 388 line); in check_header() [all …]
|
/glibc-2.36/inet/ |
D | ether_line.c | 26 ether_line (const char *line, struct ether_addr *addr, char *hostname) in ether_line() argument 33 ch = _tolower (*line++); in ether_line() 38 ch = _tolower (*line); in ether_line() 41 ++line; in ether_line() 47 ch = *line; in ether_line() 57 ++line; in ether_line() 61 while (isspace (*line)) in ether_line() 62 ++line; in ether_line() 64 if (*line == '#' || *line == '\0') in ether_line() 71 while (*line != '\0' && *line != '#' && !isspace (*line)) in ether_line() [all …]
|
/glibc-2.36/localedata/ |
D | xfrm-test.c | 33 char *line; member 45 char *line = NULL; in main() local 79 if (getline (&line, &len, stdin) < 0) in main() 93 strings[nstrings].line = strdup (line); in main() 94 l = strcspn (line, ":(;"); in main() 95 while (l > 0 && isspace (line[l - 1])) in main() 98 saved = line[l]; in main() 99 line[l] = '\0'; in main() 103 line_len = strlen (line); in main() 111 memcpy (word + SMALL_STR_SIZE, line, line_len); in main() [all …]
|
D | collate-test.c | 30 char *line; member 47 char *line = NULL; in main() local 68 if (getline (&line, &len, stdin) < 0) in main() 82 strings[nstrings].line = strdup (line); in main() 83 l = strcspn (line, ":(;"); in main() 84 while (l > 0 && isspace (line[l - 1])) in main() 86 strings[nstrings].key = strndup (line, l); in main() 89 free (line); in main() 117 fputs (strings[n].line, stdout); in main() 118 free (strings[n].line); in main()
|
/glibc-2.36/sysdeps/unix/sysv/linux/ |
D | glibcsyscalls.py | 81 for line in self.__lines: 82 line = line.strip() 83 if (not line) or line[0] == '#': 85 comps = line.split() 102 raise ValueError("invalid line: !r".format(line)) 116 for line in self.__lines: 117 comps = line.strip().split() 124 result.append(line) 145 for line in inp: 146 line = line.strip() [all …]
|
/glibc-2.36/conform/ |
D | conformtest.py | 442 def handle_test_line(self, line, allow): argument 450 orig_line = line 452 if line.startswith('xfail-'): 454 line = line[len('xfail-'):] 456 match = re.match(r'xfail\[(.*?)\]-(.*)', line) 459 line = match.group(2) 468 if line.startswith('optional-'): 470 line = line[len('optional-'):] 474 while line: 475 match = re.match(r'\{(.*?)\}(.*)', line) [all …]
|
D | glibcconform.py | 80 for line in aux_file: 81 line = re.sub(r'/\*.*?\*/', '', line) 82 line = line.strip() 83 if line: 88 m = re.search(r'([A-Za-z0-9_]+) *\([^*]', line) 93 % line)
|
/glibc-2.36/malloc/ |
D | mtrace.pl | 97 my $line = <ADDR>; 98 chomp $line; 100 if ($line ne '??:0') { 101 return $line 113 my $line = &addr2line($binary, $addr); 114 if ($line) { 115 $cache{$addr} = $line; 128 my $line = &addr2line($prog, $address); 129 if ($line) { 130 $cache{$addr} = $line; [all …]
|
/glibc-2.36/stdio-common/ |
D | tst-popen2.c | 37 char *line = NULL; in do_test() local 40 if (getline (&line, &len, f2) != 6) in do_test() 45 else if (strcmp (line, "test1\n") != 0) in do_test() 47 fprintf (f1, "read \"%s\"\n", line); in do_test() 51 if (getline (&line, &len, f2) != -1) in do_test() 57 if (getline (&line, &len, f3) != 6) in do_test() 62 else if (strcmp (line, "test2\n") != 0) in do_test() 64 fprintf (f1, "read \"%s\"\n", line); in do_test() 68 if (getline (&line, &len, f3) != -1) in do_test()
|
/glibc-2.36/scripts/ |
D | glibc_shared_code.py | 36 for line in f.readlines(): 37 line = line.strip() 38 if len(line) == 0 or line[0] == '#': 40 if line[-1] == ':': 41 cur = line[:-1] 44 projects[cur].append(line)
|
D | documented.sh | 65 line="$line 70 $line 72 line="" 78 line="$line 82 line="$line 86 line="$line 90 $line
|
/glibc-2.36/login/ |
D | tst-utmp.c | 150 simulate_login (const char *line, const char *user) in simulate_login() argument 156 if (strcmp (line, entry[n].ut_line) == 0 in simulate_login() 183 simulate_logout (const char *line) in simulate_logout() argument 189 if (strcmp (line, entry[n].ut_line) == 0) in simulate_logout() 208 error (0, 0, "no entry found for `%s'", line); in simulate_logout() 213 check_login (const char *line) in check_login() argument 221 strcpy (ut.ut_line, line); in check_login() 225 error (0, errno, "cannot get entry for line `%s'", line); in check_login() 233 if (strcmp (line, entry[n].ut_line) == 0) in check_login() 245 error (0, 0, "bogus entry for line `%s'", line); in check_login() [all …]
|