HomeSort by relevance Sort by last modified time
    Searched refs:line_read (Results 1 - 3 of 3) sorted by null

  /external/libxml2/
xmlcatalog.c 66 char *line_read; local
69 line_read = readline (prompt);
72 if (line_read && *line_read)
73 add_history (line_read);
75 return (line_read);
77 char line_read[501];
84 if (!fgets(line_read, 500, stdin))
86 line_read[500] = 0;
87 len = strlen(line_read);
    [all...]
xmllint.c 779 char *line_read; local
782 line_read = readline (prompt);
785 if (line_read && *line_read)
786 add_history (line_read);
788 return (line_read);
790 char line_read[501];
797 if (!fgets(line_read, 500, stdin))
799 line_read[500] = 0;
800 len = strlen(line_read);
    [all...]
  /bionic/tests/
stdio_test.cpp 226 char* line_read = NULL; local
231 while ((read_char_count = getline(&line_read, &allocated_length, fp)) != -1) {
234 ASSERT_STREQ(line_written, line_read);
246 ASSERT_EQ(getline(&line_read, &allocated_length, fp), -1);
250 free(line_read);
    [all...]

Completed in 90 milliseconds