Searched refs:termcap (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-13-stable/share/termcap/
H A DMakefile6 # to move them to the front of termcap
8 MAN= termcap.5
11 FILES= termcap termcap.db
13 CLEANFILES+= termcap.db
14 CONFS= termcap.small
19 termcap.db: termcap
22 etc-termcap:
24 ${BINDIR}/misc/termcap
[all...]
/freebsd-13-stable/contrib/ncurses/ncurses/tinfo/
H A Dcomp_hash.c59 bool termcap = (hash_table != _nc_get_hash_table(FALSE)); local
60 const HashData *data = _nc_get_hash_info(termcap);
71 real_table = _nc_get_table(termcap);
96 bool termcap)
99 const HashData *data = _nc_get_hash_info(termcap);
105 const struct name_table_entry *const table = _nc_get_table(termcap);
94 _nc_find_type_entry(const char *string, int type, bool termcap) argument
H A DMKcaptab.sh151 _nc_get_table(bool termcap)
153 return termcap ? build_names(cap) : build_names(info);
158 _nc_get_hash_table(bool termcap)
160 return termcap ? _nc_cap_hash_table : _nc_info_hash_table;
164 _nc_get_alias_table(bool termcap)
166 return termcap ? build_alias(cap) : build_alias(info);
220 _nc_get_hash_info(bool termcap)
222 return &hash_data[(termcap != FALSE)];
H A Dlib_cur_term.c41 #include <termcap.h> /* ospeed */
H A Dlib_tgoto.c37 #include <termcap.h>
121 * termcap documentation refers to a similar fixup for \n
H A Dlib_baudrate.c42 #include <termcap.h> /* ospeed */
/freebsd-13-stable/contrib/ncurses/
H A DMakefile.in92 @ test ! -f $(include_dir)/termcap.h || \
93 fgrep NCURSES_VERSION $(include_dir)/termcap.h >/dev/null || \
94 echo '** Will overwrite non-ncurses termcap.h'
H A DMakefile.os295 CONFIG_OPTS = --enable-termcap
/freebsd-13-stable/contrib/ncurses/include/
H A DMKparametrized.sh35 # termcap strings should undergo parameter and padding translation.
43 * parametrized.h --- is a termcap capability parametrized?
H A DMakefile.in78 termcap.h \
/freebsd-13-stable/contrib/ee/
H A Dcreate.make14 # test for existence of termcap (exists on both BSD and SysV systems)
16 if [ -f /etc/termcap -o -f /usr/share/lib/termcap -o -f /usr/share/misc/termcap ]
18 if [ -f /usr/share/lib/termcap ]
20 termcap_exists="-DTERMCAP=\"\\\"/usr/share/lib/termcap\\\"\""
21 elif [ -f /usr/share/misc/termcap ]
23 termcap_exists="-DTERMCAP=\"\\\"/usr/share/misc/termcap\\\"\""
24 elif [ -f /etc/termcap ]
26 termcap_exists="-DTERMCAP=\"\\\"/etc/termcap\\\"\""
[all...]
/freebsd-13-stable/tools/tools/termcap/
H A Dtermcap.pl36 Compares the entries in the termcap.src for <term1> and <term2> and
38 the size of two similar termcap entries with the "tc" option.
56 open(FIN, "termcap.src");
/freebsd-13-stable/share/
H A DMakefile28 termcap \
/freebsd-13-stable/contrib/ncurses/progs/
H A Dcapconvert32 # capconvert -- automated conversion from termcap to terminfo
36 echo "that now use termcap can use terminfo and the ncurses library."
222 # We're done unless user has a .termcap file or equivalent named by TERMCAP
234 if test -f $HOME/.termcap
236 echo 'I see you have a $HOME/.termcap file. I will compile that.'
237 eval $TIC $HOME/.termcap
239 echo "Note that editing $HOME/.termcap will no longer change the data curses sees."
247 echo "Your TERMCAP value appears to be an entry in termcap format."
H A Dtput.c149 bool termcap = FALSE; local
198 if (!termcap) {
201 termcap = TRUE;
202 if ((np = _nc_find_entry(name, _nc_get_hash_table(termcap))) != 0) {
/freebsd-13-stable/crypto/heimdal/appl/telnet/telnet/
H A Dtelnet_locl.h76 #include <termcap.h>
/freebsd-13-stable/usr.bin/tset/
H A Dterm.c46 #include <termcap.h>
58 * its termcap entry.
96 * real entry from /etc/termcap. This prevents us from being fooled
113 /* Find the termcap entry. If it doesn't exist, ask the user. */
119 errx(1, "termcap: %s", strerror(errno ? errno : ENOENT));
H A Dtset.c54 #include <termcap.h>
/freebsd-13-stable/usr.bin/ul/
H A Dul.c51 #include <termcap.h>
113 char termcap[1024]; local
133 switch (tgetent(termcap, termtype)) {
137 warnx("trouble reading termcap");
141 (void)strcpy(termcap, "dumb:os:col#80:cr=^M:sf=^J:am:");
469 /* This nonsense attempts to work with both old and new termcap */
/freebsd-13-stable/usr.bin/tput/
H A Dtput.c49 #include <termcap.h>
/freebsd-13-stable/etc/
H A DMakefile57 ${_+_}cd ${SRCTOP}/share/termcap; ${MAKE} etc-termcap
/freebsd-13-stable/contrib/tcsh/
H A Ded.screen.c2 * ed.screen.c: Editor/termcap-curses interface
513 * Print the termcap string out with variable substitution
1006 /* PWP 6-27-88 -- if the tty driver thinks that we can tab, we ask termcap */
1374 /* what termcap says we should use */
1419 * If we are on a pad, we pretend that we are dumb. Otherwise the termcap
1564 UpdateVal(const Char *tag, int value, Char *termcap, Char *backup) argument
1567 if ((ptr = Strstr(termcap, tag)) == NULL) {
1568 (void)Strcpy(backup, termcap);
1571 size_t len = (ptr - termcap) + Strlen(tag);
1572 (void)Strncpy(backup, termcap, le
1625 Char termcap[TC_BUFSIZE+64], backup[TC_BUFSIZE+64], *ptr; local
[all...]
/freebsd-13-stable/usr.bin/top/
H A Dscreen.c14 /* This file contains the routines that interface to termcap and stty/gtty.
30 #include <termcap.h>
94 /* now get the termcap entry */
99 warnx("can't open termcap file");
103 warnx("no termcap entry for a `%s' terminal", term_name);
138 /* initialize the pointer into the termcap string buffer */
205 /* send the termcap initialization string */
/freebsd-13-stable/targets/pseudo/userland/share/
H A DMakefile.depend87 share/termcap \
/freebsd-13-stable/lib/ncurses/ncurses/
H A DMakefile83 termcap.h \
275 SRCS+= termcap.c
283 HEADERS= curses.h term.h termcap.h unctrl.h
433 termcap.h: termcap.h.in
434 sed <${NCURSES_DIR}/include/termcap.h.in >$@ \
992 curs_termcap.3 termcap.3 \

Completed in 71 milliseconds

12