Searched defs:at (Results 1 - 25 of 50) sorted by relevance

12

/osnet-11/usr/src/lib/libcurses/screen/
H A D_attroff.c9 * 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.c9 * 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.c9 * 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);
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dtermattr.c9 * 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 Dwattron.c9 * 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 Dgetcchar.c9 * 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;
H A Dsetcchar.c9 * 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 Dwchgat.c9 * 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 wchgat(WINDOW *w, int n, attr_t at, short co, const void *opts) argument
53 __m_trace("wchgat(%p, %d, %x, %d, %p)", w, n, at, co, opts);
69 cp->_at = at;
H A Dattr_on.c9 * 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 Dattron.c9 * 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 Dchgat.c9 * 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 Dwattr_on.c9 * 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 Dgetwin.c9 * 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.
54 attr_t at; local
57 if (fscanf(fp, "%d,%d,%hx,%hd,", &y, &x, &at, &co) < 4)
63 if (wattr_set(w, at, co, (void *) 0) == ERR)
142 attr_t at; local
144 at = w->_line[y][x]._at;
155 if (w->_line[y][i]._at != at || w->_line[y][i]._co != co)
163 (void) fprintf(fp, "%d,%d,%#x,%d,%s\n", y, x, at, co, mbs);
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dtermattr.c9 * 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 Dwattron.c9 * 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 Dattron.c9 * 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 Dgetcchar.c9 * 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;
H A Dsetcchar.c9 * 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 Dwchgat.c9 * 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 wchgat(WINDOW *w, int n, attr_t at, short co, const void *opts) argument
71 cp->_at = at;
H A Dattr_on.c9 * 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 Dchgat.c9 * 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 Dwattr_on.c9 * 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...]
/osnet-11/usr/src/lib/libast/common/port/
H A Dtouch.c9 * 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;
/osnet-11/usr/src/lib/libast/common/tm/
H A Dtmxtouch.c9 * A copy of the License is available at *
41 tmxtouch(const char* path, Time_t at, Time_t mt, Time_t ct, int flags) argument
50 if (at == TMX_NOTIME && !(flags & PATH_TOUCH_VERBATIM))
52 else if (!at && !(flags & PATH_TOUCH_VERBATIM))
56 av.tv_sec = tmxsec(at);
57 av.tv_nsec = tmxnsec(at);
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/crypto/des/
H A Dstring2key.c82 char *at; local
85 at = strchr(afssalt.data, '@');
86 if (at) {
87 *at = 0;
88 afssalt.length = at - afssalt.data;

Completed in 79 milliseconds

12