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

/freebsd-current/contrib/ncurses/include/
H A Dnc_panel.h40 * Headerfile to provide an interface for the panel layer into
55 struct panel; /* Forward Declaration */
59 struct panel *top_panel;
60 struct panel *bottom_panel;
61 struct panel *stdscr_pseudo_panel;
63 int (*destroy) (struct panel *);
/freebsd-current/lib/ncurses/panel/
H A DMakefile5 SRCDIR= ${NCURSES_DIR}/panel
28 panel.c
39 panel.3
43 MLINKS= panel.3 bottom_panel.3 \
44 panel.3 del_panel.3 \
45 panel.3 hide_panel.3 \
46 panel.3 move_panel.3 \
47 panel.3 new_panel.3 \
48 panel.3 panel_above.3 \
49 panel
[all...]
/freebsd-current/lib/ncurses/
H A DMakefile2 SUBDIR= tinfo ncurses form menu panel
/freebsd-current/sys/arm/freescale/vybrid/
H A Dvf_dcu4.c196 struct panel_info *panel; member in struct:dcu_softc
235 get_panel_info(struct dcu_softc *sc, struct panel_info *panel) argument
244 /* panel size */
245 if ((len = OF_getproplen(node, "panel-size")) <= 0)
247 OF_getencprop(node, "panel-size", dts_value, len);
248 panel->width = dts_value[0];
249 panel->height = dts_value[1];
252 if ((len = OF_getproplen(node, "panel-hsync")) <= 0)
254 OF_getencprop(node, "panel-hsync", dts_value, len);
255 panel
285 struct panel_info *panel; local
363 struct panel_info panel; local
[all...]
/freebsd-current/contrib/ncurses/panel/
H A Dpanel.h36 /* $Id: panel.h,v 1.14 2020/07/04 20:38:43 tom Exp $ */
38 /* panel.h -- interface file for panels library */
45 typedef struct panel struct
49 struct panel *below;
50 struct panel *above;
100 /* end of panel.h */
H A DMakefile.in136 ../include/panel.h
162 # make a copy to simplify include-paths while still keeping panel's include
164 ../include/panel.h : $(srcdir)/panel.h
166 cp $(srcdir)/panel.h $@
183 $(srcdir)/panel.priv.h \
184 $(srcdir)/panel.h
H A Dpanel.priv.h30 /* $Id: panel.priv.h,v 1.30 2020/09/26 18:05:32 tom Exp $ */
50 #include "panel.h"
60 # define returnPanel(code) TRACE_RETURN1(code,panel)
119 IS_LINKED(pan) - check to see if panel is in the stack
122 only one element. But this could only be the pseudo panel at the bottom */
131 PANELS_OVERLAPPED(pan1,pan2) - check panel overlapped
152 Walk through the panel stack starting at the given location and
155 If the "touch" flag is set, the panel gets touched before it is
176 Remove panel from stack.
207 /* These may become later renamed and part of panel
[all...]
/freebsd-current/sys/arm/ti/am335x/
H A Dam335x_lcd.h56 struct panel_info *panel);
H A Dam335x_lcd.c402 device_printf(dev, "missing '%s' attribute in LCD panel info\n",
413 am335x_read_timing(device_t dev, phandle_t node, struct panel_info *panel) argument
434 "hactive", &panel->panel_width)))
438 "vactive", &panel->panel_height)))
442 "hfront-porch", &panel->panel_hfp)))
446 "hback-porch", &panel->panel_hbp)))
450 "hsync-len", &panel->panel_hsw)))
454 "vfront-porch", &panel->panel_vfp)))
458 "vback-porch", &panel->panel_vbp)))
462 "vsync-len", &panel
486 am335x_read_panel_info(device_t dev, phandle_t node, struct panel_info *panel) argument
[all...]
H A Dam335x_lcd_syscons.c753 struct panel_info *panel)
759 va_sc->depth = panel->bpp;
760 va_sc->stride = panel->bpp*panel->panel_width/8;
762 va_sc->width = panel->panel_width;
763 va_sc->height = panel->panel_height;
752 am335x_lcd_syscons_setup(vm_offset_t vaddr, vm_paddr_t paddr, struct panel_info *panel) argument
/freebsd-current/sys/arm/nvidia/drm2/
H A Dtegra_drm_subr.c59 if (output->panel != NULL) {
60 /* XXX panel parsing */
102 return ((output->panel != NULL) ?
123 /* XXX parse output panel here */
160 if (output->panel) {
161 /* attach panel */
170 if (output->panel) {
171 /* detach panel */
H A Dtegra_drm.h71 void *panel; /* XXX For LVDS panel */ member in struct:tegra_drm_encoder
/freebsd-current/lib/clang/liblldb/
H A DMakefile.depend16 lib/ncurses/panel \
/freebsd-current/usr.bin/clang/lldb/
H A DMakefile.depend24 lib/ncurses/panel \
/freebsd-current/sys/powerpc/mpc85xx/
H A Dfsl_diu.c240 struct panel_info *panel; local
243 panel = &sc->sc_panel;
250 if (diu_set_pxclk(sc->sc_dev, panel->panel_freq) < 0) {
264 reg = (panel->panel_hbp << BP_H_SHIFT);
265 reg |= (panel->panel_hpw << PW_H_SHIFT);
266 reg |= (panel->panel_hfp << FP_H_SHIFT);
269 reg = (panel->panel_vbp << BP_V_SHIFT);
270 reg |= (panel->panel_vpw << PW_V_SHIFT);
271 reg |= (panel->panel_vfp << FP_V_SHIFT);
318 /* TODO: derive this from the panel siz
[all...]
/freebsd-current/usr.bin/clang/lldb-server/
H A DMakefile49 LIBADD+= panel
/freebsd-current/contrib/ncurses/misc/
H A Dgen-pkgconfig.in190 panel*) name="$PANEL_LIBRARY" ;;
H A Dncu2openbsd63 lib/libpanel panel
466 next if ( $docs[$n] =~ /^(form|menu|mitem|panel)/ );
482 elsif ( $docs eq "panel" ) {
484 next unless ( $docs[$n] =~ /^panel/ );
844 # header file for form/menu/panel lives in the source-directory, but is
1080 &copy_docs("panel");
1081 &gen_lib_makefile("panel");
/freebsd-current/contrib/ncurses/
H A DMakefile.os255 # if the build of misc/panel.def fails.
128 LIBRARIES = ncurses form menu panel
H A Dconfigure835 --disable-opaque-panel do not make panel library structures opaque
877 --with-panel-libname[=XXX] override ifelse(,,panel,) basename of library
3736 modules_to_build="$modules_to_build panel menu form"
16338 echo "$as_me:16338: checking whether panel library structures should be opaque" >&5
16339 echo $ECHO_N "checking whether panel library structures should be opaque... $ECHO_C" >&6
16341 # Check whether --enable-opaque-panel or --disable-opaque-panel was given.
29023 echo "$as_me:29023: checking for desired basename for panel librar
[all...]
/freebsd-current/lib/libsysdecode/
H A DMakefile.depend127 lib/ncurses/panel \
/freebsd-current/targets/pseudo/userland/lib/
H A DMakefile.depend197 lib/ncurses/panel \
/freebsd-current/share/mk/
H A Dsrc.libnames.mk182 panel \
779 LIBPANELWDIR= ${_LIB_OBJTOP}/lib/ncurses/panel
/freebsd-current/lib/ncurses/tinfo/
H A DMakefile1051 panelw.pc ${LIBDATADIR}/pkgconfig/panel.pc
/freebsd-current/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp15 #include <ncurses/panel.h>
18 #include <panel.h>

Completed in 493 milliseconds