HomeSort by: relevance | last modified time | path
    Searched defs:readline (Results 1 - 21 of 21) sorted by relevancy

  /src/external/mpl/bind/dist/bin/dig/
readline.h 1 /* $NetBSD: readline.h,v 1.3 2025/01/26 16:24:32 christos Exp $ */
19 * A little wrapper around readline(), add_history() and free() to make using
20 * the readline code simpler.
24 #include <editline/readline.h>
33 #include <readline/history.h>
34 #include <readline/readline.h>
46 readline(const char *prompt) { function
  /src/usr.bin/mail/
extern.h 163 #define readline xreadline /* readline() is defined in libedit */ macro
165 int readline(FILE *, char *, int, int);
fio.c 320 readline(FILE *ibuf, char *linebuf, int linesize, int no_restart) function
  /src/crypto/external/bsd/heimdal/dist/kuser/
kswitch.c 40 char *readline(const char *prompt);
44 readline(const char *prompt) function
119 name = readline("Select number: ");
  /src/external/mpl/bind/dist/bin/tests/system/isctest/
text.py 155 def readline(self) -> str | None: member in class:LineReader
157 Wrapper around io.readline() function to handle unfinished lines.
164 read = self._stream.readline()
174 Wrapper around io.readline() which only returns finished lines.
177 line = self.readline()
  /src/games/hack/
makedefs.c 82 static void readline(void);
147 readline() function
163 readline();
189 readline();
  /src/usr.bin/dc/
bcode.h 70 char *(*readline)(struct source *); member in struct:vtable
bcode.c 60 static __inline char *readline(void);
295 readline(void) function
299 return src->vtable->readline(src);
948 free(readline());
1648 free(readline());
1709 p = (*in.vtable->readline)(&in);
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/scripts/
asan_symbolize.py 113 function_name = self.pipe.stdout.readline().rstrip()
116 file_name = self.pipe.stdout.readline().rstrip()
172 function_name = self.pipe.stdout.readline().rstrip()
173 file_name = self.pipe.stdout.readline().rstrip()
211 return self.readline()
213 def readline(self): member in class:UnbufferedLineConverter
214 return self.r.readline().rstrip()
240 atos_line = self.atos.readline()
  /src/crypto/external/bsd/heimdal/dist/lib/sl/
sl.c 183 char *readline(char *prompt);
189 readline(char *prompt) function
302 s = readline(rk_UNCONST(prompt));
  /src/external/bsd/openldap/dist/libraries/liblmdb/
mdb_load.c 180 static int readline(MDB_val *out, MDB_val *buf) function
427 rc = readline(&key, &kbuf);
431 rc = readline(&data, &dbuf);
  /src/external/gpl3/gcc/dist/gcc/config/aarch64/
driver-aarch64.cc 197 readline (FILE *f) function
322 while (!(buf = readline (f)).empty ())
  /src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
driver-aarch64.cc 182 readline (FILE *f) function
306 while (!(buf = readline (f)).empty ())
  /src/external/gpl3/gdb/dist/readline/readline/
readline.c 0 /* readline.c -- a general facility for reading lines of input
6 This file is part of the GNU Readline Library (Readline), a library
9 Readline is free software: you can redistribute it and/or modify
14 Readline is distributed in the hope that it will be useful,
20 along with Readline. If not, see <http://www.gnu.org/licenses/>.
68 #include "readline.h"
114 /* True if this is `real' readline as opposed to some stub substitute. */
152 /* Flags word encapsulating the current readline state. */
170 /* The last function executed by readline. *
354 readline (const char *prompt) function
    [all...]
  /src/external/gpl3/gdb.old/dist/readline/readline/
readline.c 0 /* readline.c -- a general facility for reading lines of input
6 This file is part of the GNU Readline Library (Readline), a library
9 Readline is free software: you can redistribute it and/or modify
14 Readline is distributed in the hope that it will be useful,
20 along with Readline. If not, see <http://www.gnu.org/licenses/>.
68 #include "readline.h"
114 /* True if this is `real' readline as opposed to some stub substitute. */
152 /* Flags word encapsulating the current readline state. */
170 /* The last function executed by readline. *
354 readline (const char *prompt) function
    [all...]
  /src/external/public-domain/sqlite/dist/autosetup/
sqlite-config.tcl 269 readline=1
270 => {Disable readline support}
271 # --with-readline-lib is a backwards-compatible alias for
272 # --with-readline-ldflags
273 with-readline-lib:
274 with-readline-ldflags:=auto
275 => {Readline LDFLAGS, e.g. -lreadline -lncurses}
276 # --with-readline-inc is a backwards-compatible alias for
277 # --with-readline-cflags.
278 with-readline-inc
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_format_mtree.c 134 static ssize_t readline(struct archive_read *, struct mtree *, char **, ssize_t);
1054 len = readline(a, mtree, &p, 65536);
2092 readline(struct archive_read *a, struct mtree *mtree, char **start, function
archive_read_support_format_tar.c 222 static ssize_t readline(struct archive_read *, struct tar *, const char **,
3256 bytes_read = readline(a, tar, &p,
3532 readline(struct archive_read *a, struct tar *tar, const char **start, function
  /src/external/gpl2/gmake/dist/
read.c 129 static long readline PARAMS ((struct ebuffer *ebuf));
520 nlines = readline (ebuf);
1348 nlines = readline (ebuf);
2552 readline (struct ebuffer *ebuf)
2540 readline (struct ebuffer *ebuf) function
  /src/external/bsd/top/dist/
display.c 1851 * int readline(char *buffer, int size, int numeric)
1862 readline(char *buffer, int size, int numeric) function
  /src/lib/libedit/
readline.c 1 /* $NetBSD: readline.c,v 1.184 2026/01/09 17:49:12 christos Exp $ */
34 __RCSID("$NetBSD: readline.c,v 1.184 2026/01/09 17:49:12 christos Exp $");
55 #include "readline/readline.h"
71 /* readline compatibility stuff - look at readline sources/documentation */
176 /* stuff below is used internally by libedit for readline emulation */
254 * READLINE compatibility stuff
353 /* for proper prompt printing in readline() */
375 "ReadLine compatible completion function"
439 readline(const char *p) function
    [all...]

Completed in 51 milliseconds