Searched defs:readline (Results 1 - 13 of 13) sorted by relevance

/illumos-gate/usr/src/tools/ctf/stabs/common/
H A Dctfstabs.c126 readline(FILE *fp) function
192 for (lineno = skipping = 0; (line = readline(tmpl)) != NULL; lineno++) {
/illumos-gate/usr/src/cmd/lp/filter/postscript/postio/
H A Difdef.c40 * you write a procedure called resetline() and perhaps modify readline() some.
172 * the read in readline() won't block!
255 readline(void) function
280 * In the original code readline() returned FALSE when read() returned 0 and we
325 } /* End of readline */
501 readline() function
578 } /* End of readline */
744 readline() function
804 } /* End of readline */
/illumos-gate/usr/src/cmd/abi/spectrans/parser/
H A Dfrontend.c205 while (meta_info.mi_nlines = readline(&buf2, spec_fp)) {
541 readline(char **buffer, FILE *fp) function
/illumos-gate/usr/src/cmd/bnu/
H A Din.uucpd.c215 if (readline(user, sizeof (user)) < 0) {
318 readline(p, n) function
545 if (readline(passwd, sizeof (passwd)) < 0) {
/illumos-gate/usr/src/cmd/lp/filter/postscript/postcomm/
H A Dpostcomm.c152 static int readline(void);
403 * Most of the hard stuff is done in getstatus() and readline().
559 * If an entire line is available readline() returns TRUE and the
561 * represents the printer's state. If readline() returns FALSE,
566 if (readline() == TRUE)
694 readline(void)
728 } /* End of readline */
683 readline(void) function
/illumos-gate/usr/src/cmd/newform/
H A Dnewform.c47 * readline 14 Read one line from the file.
131 static char *readline(FILE *, char *);
547 if (readline(stdin, siline) != NULL) {
560 (void) readline(fp, work);
636 readline(FILE *fp, char *area) /* Read one line from the file. */ function
697 while (readline(fp, &work[NCOLS]) != NULL) {
/illumos-gate/usr/src/cmd/mailx/
H A Dfio.c398 readline(FILE *ibuf, char *linebuf) function
/illumos-gate/usr/src/cmd/bdiff/
H A Dbdiff.c75 static char *readline(char **, size_t *, FILE *);
170 olp = readline(&oline, &obufsiz, poldfile);
171 nlp = readline(&nline, &nbufsiz, pnewfile);
244 olp = readline(&oline, &obufsiz, poldfile);
261 nlp = readline(&nline, &nbufsiz, pnewfile);
300 while ((dp = readline(&diffline, &dbufsiz, pipeinp))) {
339 lp = readline(linep, bufsizp, iptr);
355 while (readline(linep, bufsizp, temptr))
534 readline(char **bufferp, size_t *bufsizp, FILE *filep) function
/illumos-gate/usr/src/lib/libpcidb/common/
H A Dpcidb.c245 readline(FILE *f, char *buf, size_t len) function
269 if (readline(f, buf, sizeof (buf)) != 0) {
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.ndpd/
H A Dconfig.c77 static int readline(FILE *fp, char *line, int length);
249 while (readline(fp, line, sizeof (line)) != 0) {
381 readline(FILE *fp, char *line, int length) function
/illumos-gate/usr/src/cmd/sqlite/
H A Dshell.c48 # include <readline/readline.h>
49 # include <readline/history.h>
51 # define readline(p) local_getline(p,stdin) macro
99 ** The interface is like "readline" but no command-line editing
146 ** attempt to use "readline" for command-line editing. If "isatty"
147 ** is false, use "local_getline" instead of "readline" and issue no prompt.
163 zResult = readline(zPrompt);
/illumos-gate/usr/src/grub/grub-0.97/stage2/
H A Dchar_io.c293 int echo_char, int readline)
581 /* If READLINE is non-zero, handle readline-like key bindings. */
582 if (readline)
788 /* If the readline-like feature is turned on and CMDLINE is not
790 if (readline && lpos < llen)
806 int echo_char, int readline)
861 ret = real_get_cmdline (prompt, cmdline, maxlen, echo_char, readline);
292 real_get_cmdline(char *prompt, char *cmdline, int maxlen, int echo_char, int readline) argument
805 get_cmdline(char *prompt, char *cmdline, int maxlen, int echo_char, int readline) argument
/illumos-gate/usr/src/common/net/wanboot/
H A Dboot_http.c171 static int readline(http_conn_t *, int, char *, int);
2015 * readline - Get a line from the socket. Discard the end-of-line
2018 * ret = readline(c_id, sock, buf, len);
2032 readline(http_conn_t *c_id, int sock, char *buf, int len) function
2063 libbootlog(BOOTLOG_WARNING, "readline: Buffer too short\n");
2115 i = readline(c_id, sock, buf, sizeof (buf));
2157 while ((i = readline(c_id, sock, buf, sizeof (buf))) > 0)

Completed in 87 milliseconds