Searched refs:line_read (Results 1 – 4 of 4) sorted by relevance
/external/chromium_org/third_party/libxml/src/ |
D | xmlcatalog.c | 66 char *line_read; in xmlShellReadline() local 69 line_read = readline (prompt); in xmlShellReadline() 72 if (line_read && *line_read) in xmlShellReadline() 73 add_history (line_read); in xmlShellReadline() 75 return (line_read); in xmlShellReadline() 77 char line_read[501]; in xmlShellReadline() 83 if (!fgets(line_read, 500, stdin)) in xmlShellReadline() 85 line_read[500] = 0; in xmlShellReadline() 86 len = strlen(line_read); in xmlShellReadline() 89 memcpy (ret, line_read, len + 1); in xmlShellReadline()
|
D | xmllint.c | 789 char *line_read; in xmlShellReadline() local 792 line_read = readline (prompt); in xmlShellReadline() 795 if (line_read && *line_read) in xmlShellReadline() 796 add_history (line_read); in xmlShellReadline() 798 return (line_read); in xmlShellReadline() 800 char line_read[501]; in xmlShellReadline() 806 if (!fgets(line_read, 500, stdin)) in xmlShellReadline() 808 line_read[500] = 0; in xmlShellReadline() 809 len = strlen(line_read); in xmlShellReadline() 812 memcpy (ret, line_read, len + 1); in xmlShellReadline()
|
/external/libxml2/ |
D | xmlcatalog.c | 66 char *line_read; in xmlShellReadline() local 69 line_read = readline (prompt); in xmlShellReadline() 72 if (line_read && *line_read) in xmlShellReadline() 73 add_history (line_read); in xmlShellReadline() 75 return (line_read); in xmlShellReadline() 77 char line_read[501]; in xmlShellReadline() 83 if (!fgets(line_read, 500, stdin)) in xmlShellReadline() 85 line_read[500] = 0; in xmlShellReadline() 86 len = strlen(line_read); in xmlShellReadline() 89 memcpy (ret, line_read, len + 1); in xmlShellReadline()
|
D | xmllint.c | 795 char *line_read; in xmlShellReadline() local 798 line_read = readline (prompt); in xmlShellReadline() 801 if (line_read && *line_read) in xmlShellReadline() 802 add_history (line_read); in xmlShellReadline() 804 return (line_read); in xmlShellReadline() 806 char line_read[501]; in xmlShellReadline() 812 if (!fgets(line_read, 500, stdin)) in xmlShellReadline() 814 line_read[500] = 0; in xmlShellReadline() 815 len = strlen(line_read); in xmlShellReadline() 818 memcpy (ret, line_read, len + 1); in xmlShellReadline()
|