/titanic_51/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...] |
/titanic_51/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; in term_attrs() local 83 at |= WA_STANDOUT; in term_attrs() 86 at |= WA_UNDERLINE; in term_attrs() 89 at |= WA_REVERSE; in term_attrs() 92 at |= WA_BLINK; in term_attrs() 95 at |= WA_DIM; in term_attrs() 98 at |= WA_BOLD; in term_attrs() 101 at | in term_attrs() [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) 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, c [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) in attron() argument 50 __m_trace("attron(%lx)", at); in attron() 53 (void) __m_chtype_cc((chtype) at, &cc); in attron() 60 attroff(int at) in attroff() argument 65 __m_trace("attroff(%lx)", (long) at); in attroff() 68 (void) __m_chtype_cc((chtype) at, &cc); in attroff() 75 attrset(int at) in attrset() argument 80 __m_trace("attrset(%lx)", (long) at); in attrset() [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) in wattr_on() argument 50 __m_trace("wattr_on(%p, %x, %p)", w, at, opts); in wattr_on() 53 w->_fg._at |= at; in wattr_on() 61 wattr_off(WINDOW *w, attr_t at, void *opts) in wattr_off() argument 64 __m_trace("wattr_off(%p, %x, %p)", w, at, opts); in wattr_off() 67 w->_fg._at &= ~at; in wattr_off() 75 wattr_set(WINDOW *w, attr_t at, short co, void *opts) in wattr_set() argument 78 __m_trace("wattr_set(%p, %x, %d, %p)", w, at, c in wattr_set() 90 wattr_get(WINDOW * w,attr_t * at,short * co,void * opts) wattr_get() argument [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) in wattron() argument 50 __m_trace("wattron(%p, %ld)", w, at); in wattron() 53 (void) __m_chtype_cc((chtype) at, &cc); in wattron() 60 wattroff(WINDOW *w, int at) in wattroff() argument 65 __m_trace("wattroff(%p, %ld)", w, at); in wattroff() 68 (void) __m_chtype_cc((chtype) at, &cc); in wattroff() 75 wattrset(WINDOW *w, int at) in wattrset() argument 80 __m_trace("wattrset(%p, %ld)", w, at); in wattrset() [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. 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, c [all...] |
H A D | slk.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 slk_attron(const chtype at) in slk_attron() argument 72 __m_trace("slk_attron(%lx)", at); in slk_attron() 76 code = wattron(__m_screen->_slk._w, at); in slk_attron() 82 slk_attroff(const chtype at) in slk_attroff() argument 87 __m_trace("slk_attroff(%lx)", at); in slk_attroff() 91 code = wattroff(__m_screen->_slk._w, at); in slk_attroff() 97 slk_attrset(const chtype at) in slk_attrset() argument 102 __m_trace("slk_attrset(%lx)", at); in slk_attrset() 112 slk_attr_off(const attr_t at,void * opts) slk_attr_off() argument 127 slk_attr_on(const attr_t at,void * opts) slk_attr_on() argument 142 slk_attr_set(const attr_t at,short co,void * opts) slk_attr_set() argument [all...] |
/titanic_51/usr/src/lib/libxcurses2/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. 67 attr_t at = 0; in term_attrs() local 77 at |= WA_STANDOUT; in term_attrs() 80 at |= WA_UNDERLINE; in term_attrs() 83 at |= WA_REVERSE; in term_attrs() 86 at |= WA_BLINK; in term_attrs() 89 at |= WA_DIM; in term_attrs() 92 at |= WA_BOLD; in term_attrs() 95 at | in term_attrs() [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. 50 attron(int at) in attron() argument 52 return (wattron(stdscr, at)); in attron() 56 attroff(int at) in attroff() argument 58 return (wattroff(stdscr, at)); in attroff() 62 attrset(int at) in attrset() argument 64 return (wattrset(stdscr, at)); in attrset() 82 PAIR_NUMBER(int at) in PAIR_NUMBER() argument 86 pair = (int)(((unsigned int)at in PAIR_NUMBER() [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. 53 wattr_on(WINDOW *w, attr_t at, void *opts) in wattr_on() argument 55 w->_fg._at |= at; in wattr_on() 64 wattr_off(WINDOW *w, attr_t at, void *opts) in wattr_off() argument 66 w->_fg._at &= ~at; in wattr_off() 75 wattr_set(WINDOW *w, attr_t at, short co, void *opts) in wattr_set() argument 78 w->_fg._at = w->_bg._at | at; in wattr_set() 87 wattr_get(WINDOW *w, attr_t *at, short *co, void *opts) in wattr_get() argument 89 if (at ! in wattr_get() [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) in attr_on() argument 54 (void) wattr_on(stdscr, at, opts); in attr_on() 62 attr_off(attr_t at, void *opts) in attr_off() argument 64 (void) wattr_off(stdscr, at, opts); in attr_off() 72 attr_set(attr_t at, short co, void *opts) in attr_set() argument 74 (void) wattr_set(stdscr, at, co, opts); in attr_set() 92 attr_get(attr_t *at, short *co, void *opts) in attr_get() argument 94 (void) wattr_get(stdscr, at, c in attr_get() [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. 50 wattron(WINDOW *w, int at) in wattron() argument 54 (void) __m_chtype_cc((chtype) at, &cc); in wattron() 62 wattroff(WINDOW *w, int at) in wattroff() argument 66 (void) __m_chtype_cc((chtype) at, &cc); in wattroff() 75 wattrset(WINDOW *w, int at) in wattrset() argument 79 (void) __m_chtype_cc((chtype) at, &cc); in wattrset()
|
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) in chgat() argument 56 code = wchgat(stdscr, n, at, co, opts); in chgat() 64 mvchgat(int y, int x, int n, attr_t at, short co, const void *opts) in mvchgat() argument 69 code = wchgat(stdscr, n, at, co, opts); in mvchgat() 77 mvwchgat(WINDOW *w, int y, int x, int n, attr_t at, in mvwchgat() argument 83 code = wchgat(w, n, at, co, opts); in mvwchgat()
|
H A D | slk.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. 72 slk_attron(const chtype at) in slk_attron() argument 77 code = wattron(__m_screen->_slk._w, (int) at); in slk_attron() 83 slk_attroff(const chtype at) in slk_attroff() argument 88 code = wattroff(__m_screen->_slk._w, (int) at); in slk_attroff() 94 slk_attrset(const chtype at) in slk_attrset() argument 99 code = wattrset(__m_screen->_slk._w, (int) at); in slk_attrset() 105 slk_attr_off(const attr_t at, void *opts) in slk_attr_off() argument 110 code = wattr_off(__m_screen->_slk._w, at, opt in slk_attr_off() 116 slk_attr_on(const attr_t at,void * opts) slk_attr_on() argument 127 slk_attr_set(const attr_t at,short co,void * opts) slk_attr_set() 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. 53 setcchar(cchar_t *cc, const wchar_t *wcs, attr_t at, in setcchar() argument 60 cc->_at = at; in setcchar() 66 cc->_at = at; in setcchar() 71 i = __m_wcs_cc(wcs, at, co, cc); in setcchar()
|
H A D | getwin.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. 57 attr_t at; in get_cc() local 60 if (fscanf(fp, "%d,%d,%hx,%hd,", &y, &x, &at, &co) < 4) in get_cc() 66 if (wattr_set(w, at, co, (void *) 0) == ERR) in get_cc() 135 attr_t at; in put_cc() local 137 at = w->_line[y][x]._at; in put_cc() 148 if (w->_line[y][i]._at != at || w->_line[y][i]._co != co) in put_cc() 156 (void) fprintf(fp, "%d,%d,%#x,%d,%s\n", y, x, at, co, mbs); in put_cc()
|
/titanic_51/usr/src/cmd/dtrace/test/tst/common/multiaggs/ |
H A D | tst.sortpos.d.out | 1 Sorted at position 0: 103 Sorted at position 1: 205 Sorted at position 2: 307 Sorted at position 3: 409 Sorted at position 4: 511 Sorted at position 5: 613 Sorted at position 6: 715 Sorted at position 7: 817 Sorted at position 8: 919 Sorted at positio [all...] |
/titanic_51/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; in open_audio() local 47 /* No audio type specified, look at extension */ in open_audio() 53 if ((ext == NULL) || ((at = get_audio_type(ext)) == -1)) { in open_audio() 60 at = audio_type; in open_audio() 62 if (at == AUDIO_TYPE_SUN) in open_audio() 64 if (at == AUDIO_TYPE_WAV) in open_audio() 66 if (at == AUDIO_TYPE_CDA) in open_audio() 68 if (at in open_audio() [all...] |
/titanic_51/usr/src/cmd/tip/ |
H A D | etc.remote | 12 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#300:tc=dialers: 14 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#1200:tc=dialers: 16 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#2400:tc=dialers: 18 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#9600:tc=dialers: 20 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#19200:tc=dialers: 22 :el=^Z^U^C^S^Q^O:du:at=hayes:ie=$@:oe=^Z:br#300:tc=dialers: 24 :el=^Z^U^C^S^Q^O:du:at=hayes:ie=$@:oe=^Z:br#1200:tc=dialers: 35 at ACU type
|
/titanic_51/usr/src/lib/libast/common/tm/ |
H A D | tmxtouch.c | 41 tmxtouch(const char* path, Time_t at, Time_t mt, Time_t ct, int flags) in tmxtouch() argument 50 if (at == TMX_NOTIME && !(flags & PATH_TOUCH_VERBATIM)) in tmxtouch() 52 else if (!at && !(flags & PATH_TOUCH_VERBATIM)) in tmxtouch() 56 av.tv_sec = tmxsec(at); in tmxtouch() 57 av.tv_nsec = tmxnsec(at); in tmxtouch()
|
/titanic_51/usr/src/contrib/ast/src/lib/libast/tm/ |
H A D | tmxtouch.c | 9 * A copy of the License is available at * 41 tmxtouch(const char* path, Time_t at, Time_t mt, Time_t ct, int flags) in tmxtouch() argument 50 if (at == TMX_NOTIME && !(flags & PATH_TOUCH_VERBATIM)) in tmxtouch() 52 else if (!at && !(flags & PATH_TOUCH_VERBATIM)) in tmxtouch() 56 av.tv_sec = tmxsec(at); in tmxtouch() 57 av.tv_nsec = tmxnsec(at); in tmxtouch()
|
/titanic_51/usr/src/test/util-tests/tests/libsff/ |
H A D | libsff_wave.out | 6 Cable Attenuation at 2.5 GHz: 66 dB 7 Cable Attenuation at 5.0 GHz: 67 dB 8 Cable Attenuation at 7.0 GHz: 68 dB 9 Cable Attenuation at 12.9 GHz: 69 dB
|
/titanic_51/usr/src/contrib/ast/src/lib/libast/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) in touch() argument 53 if (at == (time_t)(-1) && !(flags & PATH_TOUCH_VERBATIM)) in touch() 55 else if (!at && !(flags & PATH_TOUCH_VERBATIM)) in touch() 59 av.tv_sec = at; in touch()
|
/titanic_51/usr/src/lib/libast/common/port/ |
H A D | touch.c | 46 touch(const char* path, time_t at, time_t mt, int flags) in touch() argument 53 if (at == (time_t)(-1) && !(flags & PATH_TOUCH_VERBATIM)) in touch() 55 else if (!at && !(flags & PATH_TOUCH_VERBATIM)) in touch() 59 av.tv_sec = at; in touch()
|