Home
last modified time | relevance | path

Searched refs:curses (Results 1 – 25 of 56) sorted by relevance

123

/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dtaskexp_ncurses.py59 import curses
121 curses.napms(2000)
125 screen.addch(0, i, curses.ACS_HLINE)
244 box.screen.addch(y, x + i, curses.ACS_HLINE, box.color)
245 box.screen.addch(y + h - 1, x + i, curses.ACS_HLINE, box.color)
248 box.screen.addch(y + i, x, curses.ACS_VLINE, box.color)
250 box.screen.addch(y + i, x + w - 1, curses.ACS_VLINE, box.color)
251 box.screen.addch(y, x, curses.ACS_ULCORNER, box.color)
252 box.screen.addch(y, x + w - 1, curses.ACS_URCORNER, box.color)
253 box.screen.addch(y + h - 1, x, curses.ACS_LLCORNER, box.color)
[all …]
H A Dncurses.py43 import curses
68 def __init__( self, x, y, width, height, fg=curses.COLOR_BLACK, bg=curses.COLOR_WHITE ):
69 self.win = curses.newwin( height, width, y, x )
104 self.win.hline( y, 0, curses.ACS_HLINE, self.dimensions[WIDTH] )
109 … def __init__( self, title, x, y, width, height, fg=curses.COLOR_BLACK, bg=curses.COLOR_WHITE ):
113 self.decoration.win.hline( 2, 1, curses.ACS_HLINE, width-2 )
117 self.decoration.setText( 1, 1, title.center( self.dimensions[WIDTH]-2 ), curses.A_BOLD )
156 curses.nl()
160 self.decoration.setText( 2, 1, title, curses.A_BOLD )
161 self.decoration.setText( self.StatusPosition - 8, 1, "Status:", curses.A_BOLD )
[all …]
H A Dknotty.py175 import curses
180 self.curses = curses
188 curses.setupterm()
189 if curses.tigetnum("colors") > 2 and os.environ.get('NO_COLOR', '') == '':
195 self.ed = curses.tigetstr("ed")
197 self.cuu = curses.tigetstr("cuu")
219 sys.stdout.buffer.write(self.curses.tparm(self.cuu, lines))
220 sys.stdout.buffer.write(self.curses.tparm(self.ed))
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-graphics/libyui/libyui-ncurses/
H A D0001-Fix-the-error-of-can-t-find-header-file.patch25 -#include <ncursesw/curses.h>
26 +#include <curses.h>
47 -#include <ncursesw/curses.h> /* curses.h: #define NCURSES_CH_T cchar_t */
48 +#include <curses.h> /* curses.h: #define NCURSES_CH_T cchar_t */
80 -#include <ncursesw/curses.h>
81 +#include <curses.h>
/openbmc/linux/tools/kvm/kvm_stat/
H A Dkvm_stat23 import curses
1071 self.screen = curses.initscr()
1072 curses.noecho()
1073 curses.cbreak()
1079 curses.start_color()
1080 except curses.error:
1086 curses.curs_set(0)
1087 except curses.error:
1090 curses.use_default_colors()
1098 curses.echo()
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/dispnv50/
H A Dcurs.c33 } curses[] = { in nv50_curs_new() local
47 cid = nvif_mclass(&disp->disp->object, curses); in nv50_curs_new()
53 return curses[cid].new(drm, head, curses[cid].oclass, pwndw); in nv50_curs_new()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/joe/
H A Djoe_4.6.bb9 PACKAGECONFIG ??= "curses"
10 PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses,ncurses-terminfo"
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/streamripper/streamripper/
H A D0002-build-don-t-ignore-CPPFLAGS-from-environment.patch19 @@ -56,7 +56,7 @@ AC_ARG_WITH(curses,
20 …[ --with-curses(=XXX) compile curses front-end (XXX is curses (default), ncurses, ncursesw, pdcur…
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/hstr/files/
H A D0001-Use-OE-specific-checks-for-ncurses.patch22 - #include <ncursesw/curses.h>
23 + #include <curses.h>
35 -#include <ncursesw/curses.h>
36 +#include <curses.h>
/openbmc/u-boot/scripts/kconfig/lxdialog/
H A Dcheck-lxdialog.sh11 for lib in ncursesw ncurses curses ; do
29 elif [ -f /usr/include/ncursesw/curses.h ]; then
34 elif [ -f /usr/include/ncurses/curses.h ]; then
/openbmc/openbmc/poky/meta-selftest/recipes-test/aspell/
H A Daspell_0.0.0.1.bb19 PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses"
/openbmc/openbmc/poky/meta/recipes-support/aspell/
H A Daspell_0.60.8.1.bb21 PACKAGECONFIG[curses] = "--enable-curses,--disable-curses,ncurses"
/openbmc/openbmc/poky/meta/recipes-core/ncurses/
H A Dncurses.inc2 DESCRIPTION = "SVr4 and XSI-Curses compatible curses library and terminfo tools including tic, info…
123 -e '\!/\* \$Id: curses.wide,v!,\!/\* \$Id: curses.tail,v!d' \
136 unifdef -k narrowc/include/curses.h | \
137 sed ${_unifdef_cleanup} > curses-narrowc.h
138 unifdef -k widec/include/curses.h | \
139 sed ${_unifdef_cleanup} > curses-widec.h
141 diff curses-narrowc.h curses-widec.h
161 # Order of installation is important; widec installs a 'curses.h'
250 oe_multilib_header curses.h
/openbmc/openbmc/poky/meta/recipes-core/busybox/busybox/
H A Dbusybox-cross-menuconfig.patch9 This patch syncs up with the way the menuconfig ncurses / curses
12 of the curses libraries.
19 problems when the host's curses includes are used instead of the
21 case where there is no curses libraries at all on the host system and
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/cgdb/
H A Dcgdb_0.8.0.bb1 SUMMARY = "curses-based interface to GDB"
2 DESCRIPTION = "cgdb is a lightweight curses (terminal-based) interface to the GNU Debugger (GDB)."
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/libcurses/
H A Dlibcurses-perl_1.45.bb1 DESCRIPTION = "lib-curses provides an interface between Perl programs and \
2 the curses library."
/openbmc/qemu/ui/
H A Dmeson.build54 if curses.found()
56 curses_ss.add(when: [curses, iconv], if_true: [files('curses.c'), pixman])
57 ui_modules += {'curses' : curses_ss}
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-kconfiglib_14.1.0.bb12 python3-curses \
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/proftpd/
H A Dproftpd_1.3.8c.bb37 PACKAGECONFIG[curses] = "--enable-curses --enable-ncurses, --disable-curses --disable-ncurses, ncur…
/openbmc/openbmc/poky/meta/recipes-devtools/fdisk/gptfdisk/
H A D0001-gptcurses-correctly-include-curses.h.patch4 Subject: [PATCH] gptcurses: correctly include curses.h
/openbmc/openbmc/poky/documentation/
H A Dpoky.yaml.in166 python-curses
170 python3-curses
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-daemons/ncftp/ncftp/
H A D0001-Forward-port-defining-PREFIX_BINDIR-to-use-new-autoc.patch17 @@ -44,7 +44,7 @@ wi_EXTRA_SYSV_SUNOS_DIRS dnl For better curses library on SunOS 4
/openbmc/openbmc/poky/meta/recipes-support/diffoscope/
H A Ddiffoscope_284.bb19 python3-curses \
/openbmc/openbmc/poky/meta/recipes-devtools/fdisk/
H A Dgptfdisk_1.0.10.bb11 file://0001-gptcurses-correctly-include-curses.h.patch \
/openbmc/openbmc/meta-openembedded/meta-multimedia/recipes-multimedia/musicpd/
H A Dncmpc_0.49.bb1 SUMMARY = "A curses client for the Music Player Daemon"

123