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

123

/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/
H A Dwinattrs.c18 return win->attrs;
25 * @v attrs attributes to enable
28 int wattroff ( WINDOW *win, int attrs ) {
29 win->attrs &= ~attrs;
37 * @v attrs attributes to enable
40 int wattron ( WINDOW *win, int attrs ) {
41 win->attrs |= attrs;
49 * @v attrs attribute
66 wattr_get( WINDOW *win, attr_t *attrs, short *pair, void *opts __unused ) argument
81 wattr_off( WINDOW *win, attr_t attrs, void *opts __unused ) argument
95 wattr_on( WINDOW *win, attr_t attrs, void *opts __unused ) argument
110 wattr_set( WINDOW *win, attr_t attrs, short cpair, void *opts __unused ) argument
[all...]
H A Dansi_screen.c19 scr->attrs = 0;
47 attr_t attrs = ( c & ( A_ATTRIBUTES | A_COLOR ) ); local
48 int bold = ( attrs & A_BOLD );
49 attr_t cpair = PAIR_NUMBER ( attrs );
54 if ( attrs != scr->attrs ) {
55 scr->attrs = attrs;
H A Dslk.c35 attr_t attrs; member in struct:_softlabelkeys
67 wattrset ( stdscr, slks->attrs );
113 * @ret attrs the current attributes of the soft function keys
116 return ( slks == NULL ? 0 : slks->attrs );
122 * @v attrs attribute bit mask
125 int slk_attroff ( const chtype attrs ) {
128 slks->attrs &= ~( attrs & A_ATTRIBUTES );
135 * @v attrs attribute bit mask
138 int slk_attron ( const chtype attrs ) {
165 slk_attr_off( const attr_t attrs, void *opts __unused ) argument
176 slk_attr_on( attr_t attrs, void *opts __unused ) argument
188 slk_attr_set( const attr_t attrs, short colour_pair_number, void *opts __unused ) argument
[all...]
H A Dkb.c42 _wputch( win, (chtype) ( c | win->attrs ), WRAP );
71 _wputch( win, (chtype)( c | win->attrs ), WRAP );
H A Dmucurses.c21 .attrs = A_DEFAULT,
78 _wputch ( win, ( c | win->attrs ), wrap );
H A Dwindows.c81 copy->attrs = orig->attrs;
H A Dprint.c50 _wputch( wctx->win, c | wctx->win->attrs, WRAP );
H A Dedging.c21 chtype corner = '+' | win->attrs; /* default corner character */
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/firmware/pcbios/
H A Dmemmap.c47 uint32_t attrs; member in struct:e820_entry
217 if ( size > offsetof ( typeof ( e820buf ), attrs ) ) {
218 DBG ( " (%s", ( ( e820buf.attrs & E820_ATTR_ENABLED )
220 if ( e820buf.attrs & E820_ATTR_NONVOLATILE )
222 if ( e820buf.attrs & E820_ATTR_UNKNOWN )
223 DBG ( ", other [%08x]", e820buf.attrs );
233 if ( size > offsetof ( typeof ( e820buf ), attrs ) ) {
234 if ( ! ( e820buf.attrs & E820_ATTR_ENABLED ) )
236 if ( e820buf.attrs & E820_ATTR_NONVOLATILE )
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dmucurses_test.c38 mvwhline( secret, 2, 1, '-' | secret->attrs, secret->width - 2 );
43 mvwhline( secret, 6, 12, '_' | secret->attrs, 16 );
44 mvwhline( secret, 8, 12, '_' | secret->attrs, 16 );
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dcurses.h36 attr_t attrs; member in struct:_curses_screen
78 attr_t attrs; member in struct:_curses_window
140 #define PAIR_NUMBER(attrs) ( ( (attrs) & A_COLOUR ) >> CPAIR_SHIFT )
494 static inline int attroff ( int attrs ) {
495 return wattroff ( stdscr, attrs );
498 static inline int attron ( int attrs ) {
499 return wattron ( stdscr, attrs );
502 static inline int attrset ( int attrs ) {
503 return wattrset ( stdscr, attrs );
506 attr_get( attr_t *attrs, short *pair, void *opts ) argument
510 attr_off( attr_t attrs, void *opts ) argument
514 attr_on( attr_t attrs, void *opts ) argument
518 attr_set( attr_t attrs, short cpair, void *opts ) argument
[all...]
/vbox/src/libs/libxml2-2.6.31/
H A DtestReader.c52 static int elem, attrs; variable
61 attrs += xmlTextReaderAttributeCount(reader);
72 attrs = 0;
98 printf("%s : %d elements, %d attributes\n", filename, elem, attrs);
H A Drelaxng.c163 xmlRelaxNGDefinePtr attrs; /* list of attributes for elements */ member in struct:_xmlRelaxNGDefine
271 xmlRelaxNGDefinePtr *attrs; /* the array of attributes definitions */ member in struct:_xmlRelaxNGInterleaveGroup
304 int maxAttrs; /* the size of attrs */
308 xmlAttrPtr *attrs; /* the array of attributes */ member in struct:_xmlRelaxNGValidState
946 if (group->attrs != NULL)
947 xmlFree(group->attrs);
972 if ((define->type == XML_RELAXNG_VALUE) && (define->attrs != NULL)) {
977 lib->freef(lib->data, (void *) define->attrs);
1184 xmlAttrPtr attrs[MAX_ATTR]; local
1196 attrs[nbAttr
1280 xmlAttrPtr *attrs; local
[all...]
/vbox/src/libs/libxml2-2.6.31/python/tests/
H A DpushSAX.py19 def startElement(self, tag, attrs):
21 log = log + "startElement %s %s:" % (tag, attrs)
H A DpushSAXhtml.py19 def startElement(self, tag, attrs):
21 log = log + "startElement %s %s:" % (tag, attrs)
H A Dsync.py19 def startElement(self, tag, attrs):
21 log = log + "startElement %s %s:" % (tag, attrs)
H A Dindexes.py35 def startElement(self, tag, attrs):
/vbox/src/libs/libxml2-2.6.31/python/
H A Dgenerator.py110 def start(self, tag, attrs):
112 print "start %s, %s" % (tag, attrs)
122 if attrs.has_key('name'):
123 self.function = attrs['name']
124 if attrs.has_key('file'):
125 self.function_file = attrs['file']
135 if attrs.has_key('name'):
136 self.function_arg_name = attrs['name']
137 if attrs.has_key('type'):
138 self.function_arg_type = attrs['typ
[all...]
H A Ddrv_libxml2.py186 attributesNSImpl._attrs = attrs = {}
205 attrs[attName] = value
217 attributesImpl._attrs = attrs = {}
220 attrs[attName] = _d(reader.Value())
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/
H A Dinput.h534 extern _X_EXPORT InputAttributes *DuplicateInputAttributes(InputAttributes *attrs);
535 extern _X_EXPORT void FreeInputAttributes(InputAttributes *attrs);
549 InputAttributes *attrs,
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.10.0/
H A Dinput.h525 extern _X_EXPORT InputAttributes *DuplicateInputAttributes(InputAttributes *attrs);
526 extern _X_EXPORT void FreeInputAttributes(InputAttributes *attrs);
554 InputAttributes *attrs,
H A Dxf86Xinput.h107 InputAttributes *attrs; member in struct:_InputInfoRec
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.11.0/
H A Dinput.h533 extern _X_EXPORT InputAttributes *DuplicateInputAttributes(InputAttributes *attrs);
534 extern _X_EXPORT void FreeInputAttributes(InputAttributes *attrs);
563 InputAttributes *attrs,
H A Dxf86Xinput.h107 InputAttributes *attrs; member in struct:_InputInfoRec
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.12.0/
H A Dxf86Xinput.h107 InputAttributes *attrs; member in struct:_InputInfoRec

Completed in 205 milliseconds

123