HomeSort by: relevance | last modified time | path
    Searched refs:line_buffer (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/external/ibm-public/postfix/dist/src/util/
dict_thash.c 74 VSTRING *line_buffer = 0; /* DICT_THASH_OPEN_RETURN() */ local
87 if (line_buffer != 0) \
88 vstring_free(line_buffer); \
121 if (line_buffer == 0)
122 line_buffer = vstring_alloc(100);
124 while (readllines(line_buffer, fp, &last_line, &lineno)) {
131 && allascii(STR(line_buffer)) == 0
132 && valid_utf8_stringz(STR(line_buffer)) == 0) {
135 VSTREAM_PATH(fp), lineno, STR(line_buffer));
143 for (value = STR(line_buffer); *value; value++)
    [all...]
dict_cidr.c 259 VSTRING *line_buffer = 0; local
276 if (line_buffer != 0) \
277 vstring_free(line_buffer); \
300 line_buffer = vstring_alloc(100);
317 while (readllines(line_buffer, map_fp, &last_line, &lineno)) {
319 vstring_str(line_buffer), lineno,
dict_regexp.c 756 VSTRING *line_buffer = 0; local
772 if (line_buffer != 0) \
773 vstring_free(line_buffer); \
798 line_buffer = vstring_alloc(100);
816 while (readllines(line_buffer, map_fp, &last_line, &lineno)) {
817 p = vstring_str(line_buffer);
dict_pcre.c 1008 VSTRING *line_buffer = 0; local
1025 if (line_buffer != 0) \
1026 vstring_free(line_buffer); \
1049 line_buffer = vstring_alloc(100);
1074 while (readllines(line_buffer, map_fp, &last_line, &lineno)) {
1075 p = vstring_str(line_buffer);
  /src/external/ibm-public/postfix/dist/src/global/
fold_addr.c 111 VSTRING *line_buffer = vstring_alloc(1); local
118 while (vstring_fgets_nonl(line_buffer, VSTREAM_IN)) {
119 vstream_printf("> %s\n", STR(line_buffer));
120 cmd = argv_split(STR(line_buffer), CHARS_SPACE);
169 vstring_free(line_buffer);
  /src/external/gpl2/texinfo/dist/info/
nodemenu.c 54 static char *line_buffer = (char *)NULL; local
56 if (!line_buffer)
57 line_buffer = (char *)xmalloc (1000);
71 sprintf (line_buffer, "* %s::", node->nodename);
87 sprintf (line_buffer, "* (%s)%s::", file, node->nodename);
90 len = pad_to (36, line_buffer);
99 sprintf (line_buffer + len, "%d", lines);
102 len = pad_to (44, line_buffer);
103 sprintf (line_buffer + len, "%ld", node->nodelen);
107 len = pad_to (51, line_buffer);
    [all...]
indices.c 653 char *line_buffer;
659 line_buffer = (char *)xmalloc (500);
667 sprintf (line_buffer, "* %s [%s]: ",
669 len = pad_to (40, line_buffer);
670 sprintf (line_buffer + len, "(%s)%s.",
672 printf_to_message_buffer ("%s\n", line_buffer, NULL, NULL);
674 free (line_buffer);
652 char *line_buffer; local
  /src/external/gpl3/gdb/dist/gdb/
event-top.c 560 return current_ui->line_buffer;
782 std::string &line_buffer = get_command_line_buffer ();
785 const char *cmd = handle_line_of_input (line_buffer, rl.get (), 1, "prompt");
849 SCOPE_EXIT { line_buffer.clear (); };
866 std::string line_buffer;
888 if (!line_buffer.empty ())
901 if (!line_buffer.empty () && line_buffer.back () == '\r')
902 line_buffer.pop_back ();
906 line_buffer += c
780 std::string &line_buffer = get_command_line_buffer (); local
864 std::string line_buffer; local
    [all...]
ui.h 71 std::string line_buffer; member in struct:ui
completer.c 621 const char *line_buffer)
626 int point = strlen (line_buffer);
638 return line_buffer;
667 if (quote_char != '\'' && line_buffer[scan] == '\\')
678 if (line_buffer[scan] == quote_char)
686 else if (strchr (info->quote_characters, line_buffer[scan]))
689 quote_char = line_buffer[scan];
703 scan = line_buffer[point];
714 && (*rl_char_is_quoted_p) (const_cast<char *> (line_buffer),
725 scan = line_buffer[point]
    [all...]
top.c 757 std::string line_buffer;
798 if (!line_buffer.empty ())
808 if (!line_buffer.empty () && line_buffer.back () == '\r')
809 line_buffer.pop_back ();
813 line_buffer += c;
816 return make_unique_xstrdup (line_buffer.c_str ());
754 std::string line_buffer; local
completer.h 596 const char *line_buffer,
  /src/external/gpl3/gdb.old/dist/gdb/
event-top.c 526 return current_ui->line_buffer;
748 std::string &line_buffer = get_command_line_buffer ();
751 const char *cmd = handle_line_of_input (line_buffer, rl.get (), 1, "prompt");
815 SCOPE_EXIT { line_buffer.clear (); };
832 std::string line_buffer;
854 if (!line_buffer.empty ())
867 if (!line_buffer.empty () && line_buffer.back () == '\r')
868 line_buffer.pop_back ();
872 line_buffer += c
746 std::string &line_buffer = get_command_line_buffer (); local
830 std::string line_buffer; local
    [all...]
ui.h 70 std::string line_buffer; member in struct:ui
top.c 766 std::string line_buffer;
807 if (!line_buffer.empty ())
817 if (!line_buffer.empty () && line_buffer.back () == '\r')
818 line_buffer.pop_back ();
822 line_buffer += c;
825 return make_unique_xstrdup (line_buffer.c_str ());
763 std::string line_buffer; local
completer.c 291 const char *line_buffer)
296 int point = strlen (line_buffer);
306 return line_buffer;
334 if (quote_char != '\'' && line_buffer[scan] == '\\')
344 if (line_buffer[scan] == quote_char)
352 else if (strchr (info->quote_characters, line_buffer[scan]))
355 quote_char = line_buffer[scan];
368 scan = line_buffer[point];
376 scan = line_buffer[point];
400 return line_buffer + point
    [all...]
completer.h 549 const char *line_buffer,
  /src/external/ibm-public/postfix/dist/src/postmap/
postmap.c 397 VSTRING *line_buffer; local
409 line_buffer = vstring_alloc(100);
486 while (readllines(line_buffer, source_fp, &last_line, &lineno)) {
493 && !allascii(STR(line_buffer))
494 && !valid_utf8_stringz(STR(line_buffer))) {
497 VSTREAM_PATH(source_fp), lineno, STR(line_buffer));
505 for (value = STR(line_buffer); *value; value++) {
519 VSTREAM_PATH(source_fp), lineno, STR(line_buffer));
534 key = STR(line_buffer);
587 vstring_free(line_buffer);
    [all...]
  /src/external/ibm-public/postfix/dist/src/postalias/
postalias.c 298 VSTRING *line_buffer; local
314 line_buffer = vstring_alloc(100);
391 while (readllines(line_buffer, source_fp, &last_line, &lineno)) {
397 && !allascii(STR(line_buffer))
398 && !valid_utf8_stringz(STR(line_buffer))) {
401 VSTREAM_PATH(source_fp), lineno, STR(line_buffer));
410 if ((tok_list = tok822_scan(STR(line_buffer), (TOK822 **) 0)) == 0)
511 vstring_free(line_buffer);
  /src/external/gpl3/gdb/dist/gdb/cli/
cli-decode.c 1954 static char *line_buffer = 0;
1958 if (!line_buffer)
1961 line_buffer = (char *) xmalloc (line_size);
1971 xfree (line_buffer);
1972 line_buffer = (char *) xmalloc (line_size);
1974 strncpy (line_buffer, str, p - str);
1977 if (islower (line_buffer[0]))
1978 line_buffer[0] = toupper (line_buffer[0]);
1980 if (line_buffer[p - str - 1] == '.'
1953 static char *line_buffer = 0; local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/cli/
cli-decode.c 1947 static char *line_buffer = 0;
1951 if (!line_buffer)
1954 line_buffer = (char *) xmalloc (line_size);
1964 xfree (line_buffer);
1965 line_buffer = (char *) xmalloc (line_size);
1967 strncpy (line_buffer, str, p - str);
1970 if (islower (line_buffer[0]))
1971 line_buffer[0] = toupper (line_buffer[0]);
1973 if (line_buffer[p - str - 1] == '.'
1946 static char *line_buffer = 0; local
    [all...]
  /src/external/gpl3/binutils/dist/binutils/
objdump.c 2896 char *line_buffer,
2903 memset (line_buffer, ' ', len);
2936 if (line_buffer[i] == ' ')
2938 line_buffer[i] = '-';
2942 if (line_buffer[i] == ' ')
2944 line_buffer[i] = '-';
2947 else if (line_buffer[i] == '>')
2949 line_buffer[i] = 'X';
2953 if (line_buffer[offset] == ' ')
2956 line_buffer[offset]
3326 char *line_buffer = NULL; local
    [all...]
  /src/external/gpl3/binutils.old/dist/binutils/
objdump.c 2905 char *line_buffer,
2912 memset (line_buffer, ' ', len);
2945 if (line_buffer[i] == ' ')
2947 line_buffer[i] = '-';
2951 if (line_buffer[i] == ' ')
2953 line_buffer[i] = '-';
2956 else if (line_buffer[i] == '>')
2958 line_buffer[i] = 'X';
2962 if (line_buffer[offset] == ' ')
2965 line_buffer[offset]
3335 char *line_buffer = NULL; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgfortran/io/
list_read.c 154 if (dtp->u.p.line_buffer == NULL)
157 free (dtp->u.p.line_buffer);
158 dtp->u.p.line_buffer = NULL;
180 /* Read from line_buffer if enabled. */
186 c = dtp->u.p.line_buffer[dtp->u.p.line_buffer_pos];
189 dtp->u.p.line_buffer[dtp->u.p.line_buffer_pos] = '\0';
789 line_buffer to point to a temporary buffer, pushing characters there for
795 if (dtp->u.p.line_buffer == NULL)
796 dtp->u.p.line_buffer = xcalloc (SCRATCH_SIZE, 1);
798 dtp->u.p.line_buffer[dtp->u.p.line_buffer_pos++] = c
    [all...]
  /src/external/gpl3/gcc/dist/libgfortran/io/
list_read.c 150 if (dtp->u.p.line_buffer == NULL)
153 free (dtp->u.p.line_buffer);
154 dtp->u.p.line_buffer = NULL;
176 /* Read from line_buffer if enabled. */
182 c = dtp->u.p.line_buffer[dtp->u.p.line_buffer_pos];
185 dtp->u.p.line_buffer[dtp->u.p.line_buffer_pos] = '\0';
816 line_buffer to point to a temporary buffer, pushing characters there for
822 if (dtp->u.p.line_buffer == NULL)
823 dtp->u.p.line_buffer = xcalloc (SCRATCH_SIZE, 1);
825 dtp->u.p.line_buffer[dtp->u.p.line_buffer_pos++] = c
    [all...]

Completed in 147 milliseconds

1 2