HomeSort by relevance Sort by last modified time
    Searched refs:at (Results 1 - 25 of 455) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
_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.
27 /* Copyright (c) 1988 AT&T */
49 attroff(chtype at)
51 (void) wattroff(stdscr, at);
_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.
27 /* Copyright (c) 1988 AT&T */
49 attron(chtype at)
51 (void) wattron(stdscr, at);
_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.
27 /* Copyright (c) 1988 AT&T */
49 attrset(chtype at)
51 (void) wattrset(stdscr, at);
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
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 |= WA_INVIS
    [all...]
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)
50 __m_trace("wattron(%p, %ld)", w, at);
53 (void) __m_chtype_cc((chtype) at, &cc);
60 wattroff(WINDOW *w, int at)
65 __m_trace("wattroff(%p, %ld)", w, at);
68 (void) __m_chtype_cc((chtype) at, &cc);
75 wattrset(WINDOW *w, int at)
80 __m_trace("wattrset(%p, %ld)", w, at);
    [all...]
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)
48 __m_trace("attr_on(%x, %p)", at, opts);
51 stdscr->_fg._at |= at;
57 (attr_off)(attr_t at, void *opts)
60 __m_trace("attr_off(%x, %p)", at, opts);
63 stdscr->_fg._at &= ~at;
69 (attr_set)(attr_t at, short co, void *opts)
72 __m_trace("attr_set(%x, %d, %p)", at, co, opts)
    [all...]
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)
50 __m_trace("attron(%lx)", at);
53 (void) __m_chtype_cc((chtype) at, &cc);
60 attroff(int at)
65 __m_trace("attroff(%lx)", (long) at);
68 (void) __m_chtype_cc((chtype) at, &cc);
75 attrset(int at)
80 __m_trace("attrset(%lx)", (long) at);
    [all...]
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)
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)
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)
78 __m_trace("wattr_set(%p, %x, %d, %p)", w, at, co, opts)
    [all...]
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)
52 __m_trace("setcchar(%p, %p, %x, %d, %p)", cc, wcs, at, co, opts);
55 i = __m_wcs_cc(wcs, at, co, cc);
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)
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)
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, co, opt
    [all...]
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)
52 __m_trace("getcchar(%p, %p, %p, %p, %p)", c, wcs, at, co, opts);
58 *at = c->_at;
  /onnv/onnv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
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)
52 return (wattron(stdscr, at));
56 attroff(int at)
58 return (wattroff(stdscr, at));
62 attrset(int at)
64 return (wattrset(stdscr, at));
82 PAIR_NUMBER(int at)
86 pair = (int)(((unsigned int)at & A_COLOR) >> __COLOR_SHIFT)
    [all...]
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 |= WA_INVIS
    [all...]
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)
54 (void) wattr_on(stdscr, at, opts);
62 attr_off(attr_t at, void *opts)
64 (void) wattr_off(stdscr, at, opts);
72 attr_set(attr_t at, short co, void *opts)
74 (void) wattr_set(stdscr, at, co, opts);
92 attr_get(attr_t *at, short *co, void *opts)
94 (void) wattr_get(stdscr, at, co, opts)
    [all...]
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)
56 code = wchgat(stdscr, n, at, co, opts);
64 mvchgat(int y, int x, int n, attr_t at, short co, const void *opts)
69 code = wchgat(stdscr, n, at, co, opts);
77 mvwchgat(WINDOW *w, int y, int x, int n, attr_t at,
83 code = wchgat(w, n, at, co, opts);
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)
54 (void) __m_chtype_cc((chtype) at, &cc);
62 wattroff(WINDOW *w, int at)
66 (void) __m_chtype_cc((chtype) at, &cc);
75 wattrset(WINDOW *w, int at)
79 (void) __m_chtype_cc((chtype) at, &cc);
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)
55 w->_fg._at |= at;
64 wattr_off(WINDOW *w, attr_t at, void *opts)
66 w->_fg._at &= ~at;
75 wattr_set(WINDOW *w, attr_t at, short co, void *opts)
78 w->_fg._at = w->_bg._at | at;
87 wattr_get(WINDOW *w, attr_t *at, short *co, void *opts)
89 if (at != NULL
    [all...]
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,
60 cc->_at = at;
66 cc->_at = at;
71 i = __m_wcs_cc(wcs, at, co, cc);
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)
60 *at = c->_at;
  /onnv/onnv-gate/usr/src/cmd/cron/
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.
24 /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
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
    [all...]
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.
23 # Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T
40 exec /usr/bin/at -qb $*
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.
23 # Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T
40 exec /usr/xpg4/bin/at -qb -m $*
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/B/t/
lint.t 25 Implicit scalar context for array in scalar assignment at -e line 1
29 Implicit scalar context for array in length at -e line 1
33 Implicit match on $_ at -e line 1
37 Implicit substitution on $_ at -e line 1
47 Implicit use of $_ in foreach at -e line 1
51 Use of $_ at -e line 1
55 Use of $_ at -e line 1
59 Illegal reference to private name _f at -e line 1
63 Illegal reference to private name _x at -e line 1
67 Illegal reference to private method name _f at -e line
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/MIME/Base64/t/
warn.t 66 Warning: something's wrong at $0 line 31.
67 Premature end of base64 data at $0 line 33.
68 Premature padding of base64 data at $0 line 34.
69 Warning: something's wrong at $0 line 35.
70 Premature end of base64 data at $0 line 38.
71 Premature padding of base64 data at $0 line 42.
72 Warning: something's wrong at $0 line 44.
73 Warning: something's wrong at $0 line 53.
  /onnv/onnv-gate/usr/src/lib/libast/common/port/
touch.c 4 * Copyright (c) 1985-2009 AT&T Intellectual Property *
7 * by AT&T Intellectual Property *
9 * A copy of the License is available at *
14 * AT&T Research *
25 * AT&T Research
46 touch(const char* path, time_t at, time_t mt, int flags)
53 if (at == (time_t)(-1) && !(flags & PATH_TOUCH_VERBATIM))
55 else if (!at && !(flags & PATH_TOUCH_VERBATIM))
59 av.tv_sec = at;

Completed in 300 milliseconds

1 2 3 4 5 6 7 8 91011>>