| /openbsd/src/distrib/sets/lists/base/ |
| D | mi | 3200 ./usr/share/terminfo 3201 ./usr/share/terminfo/1 3202 ./usr/share/terminfo/1/1178 3203 ./usr/share/terminfo/1/1730-lm 3204 ./usr/share/terminfo/2 3205 ./usr/share/terminfo/2/2621 3206 ./usr/share/terminfo/2/2621-wl 3207 ./usr/share/terminfo/2/2621A 3208 ./usr/share/terminfo/2/2621a 3209 ./usr/share/terminfo/3 [all …]
|
| /openbsd/src/usr.bin/tic/ |
| D | capconvert | 57 terminfo=no 59 /usr/lib/terminfo \ 60 /usr/share/lib/terminfo \ 61 /usr/share/terminfo \ 62 /usr/local/lib/terminfo \ 63 /usr/local/share/terminfo 66 terminfo=yes 71 if test $terminfo = yes 143 if test -d "$HOME"/.terminfo 153 mkdir "$HOME"/.terminfo [all …]
|
| /openbsd/src/gnu/usr.bin/binutils/gdb/rdi-share/ |
| D | unixcomm.c | 326 struct termios terminfo; in Unix_ResetSerial() local 328 tcgetattr(serpfd, &terminfo); in Unix_ResetSerial() 329 terminfo.c_lflag &= ~(ICANON | ISIG | ECHO | IEXTEN); in Unix_ResetSerial() 330 terminfo.c_iflag &= ~(IGNCR | INPCK | ISTRIP | ICRNL | BRKINT); in Unix_ResetSerial() 331 terminfo.c_iflag |= (IXON | IXOFF | IGNBRK); in Unix_ResetSerial() 332 terminfo.c_cflag = (terminfo.c_cflag & ~CSIZE) | CS8 | CREAD; in Unix_ResetSerial() 333 terminfo.c_cflag &= ~PARENB; in Unix_ResetSerial() 334 terminfo.c_cc[VMIN] = 1; in Unix_ResetSerial() 335 terminfo.c_cc[VTIME] = 0; in Unix_ResetSerial() 336 terminfo.c_oflag &= ~OPOST; in Unix_ResetSerial() [all …]
|
| /openbsd/src/gnu/llvm/llvm/cmake/modules/ |
| D | FindTerminfo.cmake | 1 # Attempts to discover terminfo library with a linkable setupterm function. 12 # Terminfo::terminfo 14 find_library(Terminfo_LIBRARIES NAMES terminfo tinfo curses ncurses ncursesw) 39 if(NOT TARGET Terminfo::terminfo) 40 add_library(Terminfo::terminfo UNKNOWN IMPORTED) 41 set_target_properties(Terminfo::terminfo PROPERTIES IMPORTED_LOCATION "${Terminfo_LIBRARIES}")
|
| /openbsd/src/share/termtypes/ |
| D | Makefile | 6 all: terminfo termcap 8 terminfo: termtypes.master target 17 ${INSTALL} -d -o root -g wheel ${DESTDIR}${BINDIR}/terminfo 18 find terminfo -type f -exec \ 28 rm -rf terminfo
|
| /openbsd/src/usr.bin/file/magdir/ |
| D | terminfo | 1 # $OpenBSD: terminfo,v 1.2 2004/06/03 03:14:20 tedu Exp $ 4 # terminfo: file(1) magic for terminfo 8 0 string \032\001 Compiled terminfo entry
|
| D | archive | 150 # 0x02 (5%), 0x03 (3%), 0x04 (2%), 0x06 (2%). 0x01 collides with terminfo.
|
| /openbsd/src/gnu/llvm/llvm/utils/gn/build/libs/terminfo/ |
| D | BUILD.gn | 1 import("//llvm/utils/gn/build/libs/terminfo/enable.gni") 4 visibility = [ ":terminfo" ] 8 group("terminfo") {
|
| D | enable.gni | 2 # Whether to link against terminfo.
|
| /openbsd/src/lib/libcurses/tinfo/ |
| D | MKfallback.sh | 65 echo creating temporary terminfo directory... >&2 166 echo removing temporary terminfo directory... >&2
|
| /openbsd/src/lib/libcurses/ |
| D | Caps | 37 # This is the master termcap/terminfo capability table. 42 # terminfo(5) man page; lines beginning with `#%' are passed through to become 43 # the terminfo table. 51 # Column 1: terminfo variable name 52 # Column 2: terminfo capability name 63 # proper; rather, it is there to help the terminfo maintainer avoid emitting 70 # K = remove this terminfo capability when translating to standard format 84 # Column 5: capability description (usually an associated terminfo variable) 88 # There are basically five different ways to handle termcap and terminfo 103 # as a terminfo object, and breaking this would be bad. It is up to the ncurses [all …]
|
| D | Makefile | 71 term_variables.3 termcap.3 terminfo.3 terminfo.5 user_caps.5 \ 97 …sh ${.CURDIR}/tinfo/MKfallback.sh /usr/share/terminfo ${.CURDIR}/../../share/termtypes/termtypes.m…
|
| D | Caps-ncurses | 45 # terminfo files. Except for memory_lock and memory_unlock, they are 111 # terminfo files. 185 # the IBM manual pages, so the cap name strings are guesses. The terminfo 223 # Here we set up aliases for translating extensions into standard terminfo. 306 # XENIX XENIX variable name name clash with terminfo?
|
| /openbsd/src/usr.bin/vi/ |
| D | FAQ | 85 A: This is almost certainly a problem with the system's terminfo or 86 termcap information for your terminal. If the terminfo/termcap entry 93 The solution is to find a good terminfo or termcap entry for your 96 redistributable termcap/terminfo entries. They can be downloaded 111 entry (the il1 capability of terminfo entries). If you delete that 112 entry from your terminfo/termcap information everything should work
|
| /openbsd/src/gnu/usr.bin/perl/cpan/Term-Cap/ |
| D | test.pl | 23 my $terminfo = `infocmp -C 2>/dev/null`; 24 unless( $files || $terminfo || $^O eq 'VMS' ) {
|
| /openbsd/src/usr.bin/telnet/ |
| D | README | 19 when a terminal type is received, termcap/terminfo 24 termcap/terminfo data base, and generates a list of
|
| /openbsd/src/gnu/llvm/llvm/utils/gn/secondary/llvm/tools/llvm-config/ |
| D | BUILD.gn | 4 import("//llvm/utils/gn/build/libs/terminfo/enable.gni") 39 # Windows doesn't use any of libxml2, terminfo, zlib by default.
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/Unix/ |
| D | Process.inc | 323 // headers from various terminfo, curses, or other sources is harder than 361 // Regardless of why, if we can't get terminfo, we shouldn't try to print 368 // with a minimal terminfo parsing library. Also, we don't really care whether 377 // the terminfo says that no colors are supported. 390 // When the terminfo database is not available, check if the current terminal
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/ |
| D | CMakeLists.txt | 60 set(imported_libs ${imported_libs} Terminfo::terminfo) 313 get_property(terminfo_library TARGET Terminfo::terminfo PROPERTY LOCATION)
|
| /openbsd/src/usr.bin/vi/docs/USD.doc/vi.ref/ |
| D | spell.ok | 325 terminfo
|
| /openbsd/src/gnu/llvm/llvm/utils/gn/secondary/llvm/lib/Support/ |
| D | BUILD.gn | 8 "//llvm/utils/gn/build/libs/terminfo",
|
| /openbsd/src/gnu/usr.bin/texinfo/ |
| D | configure.ac | 122 TERMLIB_VARIANTS="ncurses curses termlib termcap terminfo"
|
| /openbsd/src/gnu/llvm/llvm/utils/gn/secondary/llvm/include/llvm/Config/ |
| D | BUILD.gn | 12 import("//llvm/utils/gn/build/libs/terminfo/enable.gni")
|
| /openbsd/src/gnu/llvm/compiler-rt/cmake/ |
| D | config-ix.cmake | 175 # Look for terminfo library, used in unittests that depend on LLVMSupport. 182 …find_library(COMPILER_RT_TERMINFO_LIB NAMES terminfo tinfo curses ncurses ncursesw ${MAYBE_REQUIRE…
|
| /openbsd/src/gnu/llvm/llvm/ |
| D | CMakeLists.txt | 489 option(LLVM_ENABLE_TERMINFO "Use terminfo database if available." ON)
|