Searched refs:readline (Results 26 - 50 of 120) sorted by relevance

12345

/freebsd-10.2-release/contrib/libreadline/examples/
H A Drl-fgets.c4 Subject: fgets(stdin) --> readline() redirector
9 Here is something you may find useful enough to include in the readline
11 to readline() via LD_PRELOAD, and it supports a custom prompt and list of
13 pass it your way in hope of just including it with readline to begin with.
29 -- If fgets(stdin) is called, redirect to GNU readline() to obtain
36 -- Command-line editing with readline() works best when the prompt string
49 the readline header and library files.
101 This code links to the GNU readline library, and as such is bound by the
127 #include <readline/readline
[all...]
H A Dfileman.c54 # include "readline.h"
57 # include <readline/readline.h>
58 # include <readline/history.h>
132 line = readline ("FileMan: ");
H A Drlptytest.c3 * Another test harness for the readline callback interface.
29 # include "readline.h"
31 # include <readline/readline.h>
35 * Master/Slave PTY used to keep readline off of stdin/stdout.
86 /* Display output from readline */
136 /* Tell readline what the prompt is if it needs to put it back */
139 /* Set the terminal type to dumb so the output of readline can be
144 /* For some reason, readline can not deprep the terminal.
146 * the terminal besides readline */
[all...]
H A Dhistexamp.c26 # include <readline/history.h>
/freebsd-10.2-release/contrib/libreadline/
H A Dhistory.h35 # include <readline/rlstdc.h>
36 # include <readline/rltypedefs.h>
H A Dreadline.h1 /* $FreeBSD: releng/10.2/contrib/libreadline/readline.h 165675 2006-12-31 09:22:31Z ache $ */
2 /* Readline.h -- the names of functions callable from within readline. */
37 # include <readline/rlstdc.h>
38 # include <readline/rltypedefs.h>
39 # include <readline/keymaps.h>
40 # include <readline/tilde.h>
128 /* Bindable commands for readline's interface to the command history. */
219 /* Things for vi mode. Not available unless readline is compiled -DVI_MODE. */
282 extern char *readline PARAMS((const char *));
289 /* Undocumented; unused by readline */
[all...]
/freebsd-10.2-release/crypto/heimdal/lib/wind/
H A Dgen-punycode-examples.py55 l = f.readline()
59 l2 = f.readline()
/freebsd-10.2-release/crypto/heimdal/kuser/
H A Dkswitch.c38 char *readline(const char *prompt);
42 readline(const char *prompt) function
114 name = readline("Select number: ");
/freebsd-10.2-release/usr.bin/dc/
H A Dbcode.h70 char *(*readline)(struct source *); member in struct:vtable
H A Dbcode.c58 static __inline char *readline(void);
285 readline(void) function
289 return (src->vtable->readline(src));
946 free(readline());
1450 bexec(readline());
1666 free(readline());
1729 p = (*in.vtable->readline)(&in);
/freebsd-10.2-release/usr.bin/mail/
H A Dutil.c142 if (readline(ibuf, linebuf, LINESIZE) < 0)
169 if ((c = readline(f, linebuf, LINESIZE)) <= 0)
191 if ((c = readline(f, line2, LINESIZE)) < 0)
511 if (readline(ibuf, linebuf, LINESIZE) < 0)
523 if (readline(ibuf, linebuf, LINESIZE) < 0)
H A Dcmd1.c175 (void)readline(setinput(mp), headline, LINESIZE);
385 if (readline(ibuf, linebuf, sizeof(linebuf)) < 0)
H A Dextern.h193 int readline(FILE *, char *, int);
H A Dcollect.c158 c = readline(stdin, linebuf, LINESIZE);
390 while ((rc = readline(fbuf, linebuf, LINESIZE)) >= 0) {
/freebsd-10.2-release/contrib/top/
H A Dtop.c903 newval = readline(tempbuf1, 8, Yes);
931 if ((i = readline(tempbuf1, 8, Yes)) > -1)
946 if ((i = readline(tempbuf1, 10, Yes)) > 0)
959 if (readline(tempbuf2, sizeof(tempbuf2), No) > 0)
976 if (readline(tempbuf2, sizeof(tempbuf2), No) > 0)
1011 if (readline(tempbuf2, sizeof(tempbuf2), No) > 0)
1072 if (readline(tempbuf2, sizeof(tempbuf2), No) > 0)
1105 if (readline(tempbuf2, sizeof(tempbuf2), No) > 0)
/freebsd-10.2-release/lib/libedit/
H A DMakefile32 SRCS+= tokenizer.c history.c readline.c
44 SUBDIR= edit/readline
/freebsd-10.2-release/gnu/usr.bin/gdb/kgdb/
H A Dtrgt.c39 #include <readline/readline.h>
40 #include <readline/tilde.h>
/freebsd-10.2-release/crypto/heimdal/lib/sl/
H A Dsl.c178 char *readline(char *prompt);
184 readline(char *prompt) function
297 s = readline(rk_UNCONST(prompt));
/freebsd-10.2-release/crypto/heimdal/appl/ftp/ftp/
H A Dmain.c249 readline(char *prompt) function
263 char *readline(char *);
283 p = readline("ftp> ");
/freebsd-10.2-release/bin/sh/
H A Dmknodes.c105 static int readline(void);
118 while (readline()) {
404 readline(void) function
/freebsd-10.2-release/lib/libedit/edit/readline/
H A Dreadline.h1 /* $NetBSD: readline.h,v 1.31 2010/08/04 20:29:18 christos Exp $ */
31 * $FreeBSD: releng/10.2/lib/libedit/edit/readline/readline.h 228114 2011-11-29 04:50:57Z fjoe $
39 /* list of readline stuff supported by editline library's readline wrapper */
97 /* global variables used by readline enabled applications */
143 char *readline(const char *);
/freebsd-10.2-release/contrib/libreadline/examples/rlfe/
H A Drlfe.c1 /* A front-end using readline to "cook" input lines.
33 * which invokes readline completion. We don't want this. I don't know
41 * The latest readline may have some hooks we can use to avoid having
44 * Desirable readline feature: When in cooked no-echo mode (e.g. password),
78 # include "readline.h"
81 # include <readline/readline.h>
82 # include <readline/history.h>
121 Thus, when echoing, we get echo twice: First readline echoes while
219 to the inferior, rather than letting readline handl
[all...]
/freebsd-10.2-release/contrib/texinfo/util/
H A Dtexindex.c140 long readline (struct linebuffer *linebuffer, FILE *stream);
871 `readline' reads a line from a stream into a linebuffer
893 readline (struct linebuffer *linebuffer, FILE *stream)
939 linelength = readline (&lb, istream);
971 linelength = readline (&lb, istream);
1571 readline (thisline[i], streams[i]);
1625 readline (thisline[bestfile], streams[bestfile]);
888 readline (struct linebuffer *linebuffer, FILE *stream) function
/freebsd-10.2-release/contrib/serf/
H A Dserf.h715 /** Acceptable newline types for bucket->readline(). */
778 apr_status_t (*readline)(serf_bucket_t *bucket, int acceptable, member in struct:serf_bucket_type_t
912 SERF__RECREAD(b, (b)->type->readline(b,a,f,d,l))
/freebsd-10.2-release/contrib/subversion/subversion/libsvn_client/
H A Dpatch.c108 svn_error_t *(*readline)(void *baton, svn_stringbuf_t **line,
682 content->readline = readline_prop;
833 /* Baton for the (readline|tell|seek|write)_symlink functions. */
1042 content->readline = readline_symlink;
1067 content->readline = readline_file;
1165 readline(target_content_t *content,
1174 if (content->eof || content->readline == NULL)
1190 SVN_ERR(content->readline(content->read_baton, &line_raw,
1251 SVN_ERR(readline(content, &dummy, iterpool, iterpool));
1330 SVN_ERR(readline(conten
107 svn_error_t *(*readline)(void *baton, svn_stringbuf_t **line, member in struct:target_content_t
1164 readline(target_content_t *content, function
[all...]

Completed in 312 milliseconds

12345