/titanic_44/usr/src/cmd/cron/ |
H A D | att1.y | 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.tm_year -= 1900; 78 if (at.tm_year < 70 || at.tm_year >= 139) 88 at.tm_hour = $1; 91 at.tm_hour = $1; 92 at.tm_min = $3; 96 at.tm_hour = $1; [all …]
|
H A D | Makefile | 51 PROG2 = at atq atrm crontab 53 XPG4PROG = at crontab 60 POFILES1= at.po crontab.po funcs.po batch.po 81 ATOBJS= at.o att1.o att2.o 100 at := POBJS = $(ATOBJS) $(COMMONOBJS) macro 101 at.xpg4 := POBJS = $(XPG4ATOBJS) $(XPG4COMMONOBJS) 122 $(ROOTBIN)/at := FILEMODE = 04755 123 $(ROOTXPG4BIN)/at := FILEMODE = 04755 133 at := LDLIBS += -lproject -lsecdb macro 134 at.xpg4 := LDLIBS += -lproject -lsecdb
|
/titanic_44/usr/src/lib/libxcurses/src/libc/xcurses/ |
H A D | termattr.c | 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 |= WA_INVIS; in term_attrs() 104 at |= WA_PROTECT; in term_attrs() 107 at |= WA_ALTCHARSET; in term_attrs() [all …]
|
H A D | attr_on.c | 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); 76 stdscr->_fg._at = at; 94 (attr_get)(attr_t *at, short *co, void *opts) [all …]
|
H A D | attron.c | 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() 83 (void) __m_chtype_cc((chtype) at, &cc); in attrset() 105 (PAIR_NUMBER)(chtype at) [all …]
|
H A D | wattr_on.c | 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, co, opts); in wattr_set() 82 w->_fg._at = at; in wattr_set() 90 wattr_get(WINDOW *w, attr_t *at, short *co, void *opts) in wattr_get() argument [all …]
|
H A D | wattron.c | 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() 83 (void) __m_chtype_cc((chtype) at, &cc); in wattrset()
|
H A D | chgat.c | 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, opts 89 code = wchgat(w, n, at, co, opts);
|
H A D | slk.c | 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() 106 code = wattrset(__m_screen->_slk._w, at); in slk_attrset() 112 slk_attr_off(const attr_t at, void *opts) in slk_attr_off() argument [all …]
|
/titanic_44/usr/src/lib/libxcurses2/src/libc/xcurses/ |
H A D | termattr.c | 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 |= WA_INVIS; in term_attrs() 98 at |= WA_PROTECT; in term_attrs() 101 at |= WA_ALTCHARSET; in term_attrs() [all …]
|
H A D | attron.c | 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 & A_COLOR) >> __COLOR_SHIFT); in PAIR_NUMBER()
|
H A D | wattr_on.c | 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 != NULL) in wattr_get() 90 *at = w->_fg._at; in wattr_get()
|
H A D | attr_on.c | 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, co, opts); in attr_get()
|
H A D | wattron.c | 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 | 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 | 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, opts); in slk_attr_off() 116 slk_attr_on(const attr_t at, void *opts) in slk_attr_on() argument 121 code = wattr_on(__m_screen->_slk._w, at, opts); in slk_attr_on() [all …]
|
H A D | setcchar.c | 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 | 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_44/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 position 9:
|
/titanic_44/usr/src/cmd/cdrw/ |
H A D | write_audio.c | 44 int at; in open_audio() local 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 == AUDIO_TYPE_AUR) in open_audio()
|
/titanic_44/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_44/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_44/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_44/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()
|
/titanic_44/usr/src/lib/libslp/javalib/com/sun/slp/ |
H A D | ClientLib_en.properties | 14 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 20 # file and include the License file at usr/src/OPENSOLARIS.LICENSE. 184 template_io_error = IOException at line {0} during parsing of template: {1} 185 template_assign_error = Syntax error in attribute assignment at line {0} 186 template_end_error = Unexpected end of input during template parsing at line {0} 187 template_unk_token = Unrecognized token during template parsing at line {0} 188 template_missing_id = Missing attribute id at line {0} 189 template_missing_eq = Missing ``='''' in attribute definition at line {0} 190 template_attr_syntax = Syntax error in attribute defintion at line {0} 191 template_srv_type_err = Syntax error in service type name definition at line {0} [all …]
|