/illumos-gate/usr/src/lib/libcurses/screen/ |
H A D | _attroff.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 49 attroff(chtype at) argument 51 (void) wattroff(stdscr, at);
|
H A D | _attron.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 49 attron(chtype at) argument 51 (void) wattron(stdscr, at);
|
H A D | _attrset.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 49 attrset(chtype at) argument 51 (void) wattrset(stdscr, at);
|
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | termattr.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 69 attr_t at; local 83 at |= WA_STANDOUT; 86 at |= WA_UNDERLINE; 89 at |= WA_REVERSE; 92 at |= WA_BLINK; 95 at |= WA_DIM; 98 at |= WA_BOLD; 101 at | [all...] |
H A D | wattron.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 45 wattron(WINDOW *w, int at) argument 50 __m_trace("wattron(%p, %ld)", w, at); 53 (void) __m_chtype_cc((chtype) at, &cc); 60 wattroff(WINDOW *w, int at) argument 65 __m_trace("wattroff(%p, %ld)", w, at); 68 (void) __m_chtype_cc((chtype) at, &cc); 75 wattrset(WINDOW *w, int at) argument 80 __m_trace("wattrset(%p, %ld)", w, at); [all...] |
H A D | attr_on.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 45 (attr_on)(attr_t at, void *opts) argument 48 __m_trace("attr_on(%x, %p)", at, opts); 51 stdscr->_fg._at |= at; 57 (attr_off)(attr_t at, void *opts) argument 60 __m_trace("attr_off(%x, %p)", at, opts); 63 stdscr->_fg._at &= ~at; 69 (attr_set)(attr_t at, short co, void *opts) argument 72 __m_trace("attr_set(%x, %d, %p)", at, c 94 attr_get(attr_t *at, short *co, void *opts) argument [all...] |
H A D | attron.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 45 attron(int at) argument 50 __m_trace("attron(%lx)", at); 53 (void) __m_chtype_cc((chtype) at, &cc); 60 attroff(int at) argument 65 __m_trace("attroff(%lx)", (long) at); 68 (void) __m_chtype_cc((chtype) at, &cc); 75 attrset(int at) argument 80 __m_trace("attrset(%lx)", (long) at); 105 PAIR_NUMBER(chtype at) argument [all...] |
H A D | wattr_on.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 47 wattr_on(WINDOW *w, attr_t at, void *opts) argument 50 __m_trace("wattr_on(%p, %x, %p)", w, at, opts); 53 w->_fg._at |= at; 61 wattr_off(WINDOW *w, attr_t at, void *opts) argument 64 __m_trace("wattr_off(%p, %x, %p)", w, at, opts); 67 w->_fg._at &= ~at; 75 wattr_set(WINDOW *w, attr_t at, short co, void *opts) argument 78 __m_trace("wattr_set(%p, %x, %d, %p)", w, at, c 90 wattr_get(WINDOW *w, attr_t *at, short *co, void *opts) argument [all...] |
H A D | setcchar.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 47 setcchar(cchar_t *cc, const wchar_t *wcs, attr_t at, short co, const void *opts) argument 52 __m_trace("setcchar(%p, %p, %x, %d, %p)", cc, wcs, at, co, opts); 55 i = __m_wcs_cc(wcs, at, co, cc);
|
H A D | chgat.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 47 (chgat)(int n, attr_t at, short co, const void *opts) argument 52 __m_trace("chgat(%d, %x, %d, %p)", n, at, co, opts); 55 code = wchgat(stdscr, n, at, co, opts); 61 (mvchgat)(int y, int x, int n, attr_t at, short co, const void *opts) argument 66 __m_trace("mvchgat(%d, %d, %d, %x, %d, %p)", y, x, n, at, co, opts); 70 code = wchgat(stdscr, n, at, co, opts); 77 WINDOW *w, int y, int x, int n, attr_t at, short co, const void *opts) 84 w, y, x, n, at, c 76 mvwchgat( WINDOW *w, int y, int x, int n, attr_t at, short co, const void *opts) argument [all...] |
H A D | getcchar.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 47 getcchar(const cchar_t *c, wchar_t *wcs, attr_t *at, short *co, void *opts) argument 52 __m_trace("getcchar(%p, %p, %p, %p, %p)", c, wcs, at, co, opts); 58 *at = c->_at;
|
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | attron.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 50 attron(int at) argument 52 return (wattron(stdscr, at)); 56 attroff(int at) argument 58 return (wattroff(stdscr, at)); 62 attrset(int at) argument 64 return (wattrset(stdscr, at)); 82 PAIR_NUMBER(int at) argument 86 pair = (int)(((unsigned int)at [all...] |
H A D | termattr.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 67 attr_t at = 0; local 77 at |= WA_STANDOUT; 80 at |= WA_UNDERLINE; 83 at |= WA_REVERSE; 86 at |= WA_BLINK; 89 at |= WA_DIM; 92 at |= WA_BOLD; 95 at | [all...] |
H A D | attr_on.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 52 attr_on(attr_t at, void *opts) argument 54 (void) wattr_on(stdscr, at, opts); 62 attr_off(attr_t at, void *opts) argument 64 (void) wattr_off(stdscr, at, opts); 72 attr_set(attr_t at, short co, void *opts) argument 74 (void) wattr_set(stdscr, at, co, opts); 92 attr_get(attr_t *at, short *co, void *opts) argument 94 (void) wattr_get(stdscr, at, c [all...] |
H A D | chgat.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 52 chgat(int n, attr_t at, short co, const void *opts) argument 56 code = wchgat(stdscr, n, at, co, opts); 64 mvchgat(int y, int x, int n, attr_t at, short co, const void *opts) argument 69 code = wchgat(stdscr, n, at, co, opts); 77 mvwchgat(WINDOW *w, int y, int x, int n, attr_t at, argument 83 code = wchgat(w, n, at, co, opts);
|
H A D | wattron.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 50 wattron(WINDOW *w, int at) argument 54 (void) __m_chtype_cc((chtype) at, &cc); 62 wattroff(WINDOW *w, int at) argument 66 (void) __m_chtype_cc((chtype) at, &cc); 75 wattrset(WINDOW *w, int at) argument 79 (void) __m_chtype_cc((chtype) at, &cc);
|
H A D | wattr_on.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 53 wattr_on(WINDOW *w, attr_t at, void *opts) argument 55 w->_fg._at |= at; 64 wattr_off(WINDOW *w, attr_t at, void *opts) argument 66 w->_fg._at &= ~at; 75 wattr_set(WINDOW *w, attr_t at, short co, void *opts) argument 78 w->_fg._at = w->_bg._at | at; 87 wattr_get(WINDOW *w, attr_t *at, short *co, void *opts) argument 89 if (at ! [all...] |
H A D | setcchar.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 53 setcchar(cchar_t *cc, const wchar_t *wcs, attr_t at, argument 60 cc->_at = at; 66 cc->_at = at; 71 i = __m_wcs_cc(wcs, at, co, cc);
|
H A D | getcchar.c | 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 53 getcchar(const cchar_t *c, wchar_t *wcs, attr_t *at, short *co, void *opts) argument 60 *at = c->_at;
|
/illumos-gate/usr/src/cmd/cron/ |
H A D | att1.y | 10 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 16 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 43 extern struct tm *tp, at, rt; 72 if (at.tm_min >= 60 || at.tm_hour >= 24) 74 if (at.tm_mon >= 12 || at.tm_mday > mday[at.tm_mon]) 76 if (at.tm_year >= 1900) 77 at [all...] |
H A D | batch.sh | 10 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 16 # file and include the License file at usr/src/OPENSOLARIS.LICENSE. 40 exec /usr/bin/at -qb $*
|
H A D | batch.xpg4.sh | 10 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 16 # file and include the License file at usr/src/OPENSOLARIS.LICENSE. 40 exec /usr/xpg4/bin/at -qb -m $*
|
/illumos-gate/usr/src/cmd/mdb/test/typedef/ |
H A D | tst.libctype.ksh | 4 ::print -at rm_t
|
/illumos-gate/usr/src/lib/libast/common/port/ |
H A D | touch.c | 9 * A copy of the License is available at * 46 touch(const char* path, time_t at, time_t mt, int flags) argument 53 if (at == (time_t)(-1) && !(flags & PATH_TOUCH_VERBATIM)) 55 else if (!at && !(flags & PATH_TOUCH_VERBATIM)) 59 av.tv_sec = at;
|
/illumos-gate/usr/src/cmd/cdrw/ |
H A D | write_audio.c | 8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 44 int at; local 47 /* No audio type specified, look at extension */ 53 if ((ext == NULL) || ((at = get_audio_type(ext)) == -1)) { 60 at = audio_type; 62 if (at == AUDIO_TYPE_SUN) 64 if (at == AUDIO_TYPE_WAV) 66 if (at == AUDIO_TYPE_CDA) 68 if (at [all...] |