Searched refs:hr (Results 1 - 23 of 23) sorted by relevance

/illumos-gate/usr/src/cmd/mdb/common/modules/hook/
H A Dhook.c43 hook_event_int_t hr; local
54 if (mdb_vread((void *)&hr, sizeof (hr), (uintptr_t)addr) == -1) {
62 hlp = TAILQ_FIRST(&hr.hei_head);
112 hook_event_int_t hr, *hrp; local
127 if (mdb_vread((void *)&hr, sizeof (hr), (uintptr_t)hrp) == -1) {
131 if (!hr.hei_event) {
137 (uintptr_t)hr.hei_event) == -1) {
139 hr
236 hook_event_int_t hr; local
[all...]
/illumos-gate/usr/src/cmd/sendmail/src/
H A Dconvtime.c132 int wk, dy, hr, mi, se;
144 hr = intvl % 24;
168 hr, mi, se);
185 if (hr > 0)
187 (void) sm_snprintf(p, SPACELEFT(buf, p), ", %d hour%s", hr,
188 PLURAL(hr));
131 int wk, dy, hr, mi, se; local
H A Dsasl.c159 char *hr, *h1, *h, *res; local
173 hr = res;
189 if (hr != res)
190 *hr++ = ' ';
193 memcpy(hr, h1, l1);
196 hr += l1;
197 *hr = '\0';
H A Dusersmtp.c329 char *hr, *h1, *h, *res; local
347 hr = res + l1;
363 *hr++ = ' ';
366 memcpy(hr, h1, l1);
369 hr += l1;
370 *hr = '\0';
/illumos-gate/usr/src/boot/sys/boot/i386/libi386/
H A Dtime.c45 int hr, minute, sec; local
52 hr = bcd2bin((v86.ecx & 0xff00) >> 8); /* hour in %ch */
56 return (hr * 3600 + minute * 60 + sec);
/illumos-gate/usr/src/tools/codesign/
H A Dcodesign_server.pl209 my ($sec, $min, $hr, $day, $mon, $yr) = localtime(time);
211 $yr+1900, $mon+1, $day, $hr, $min, $sec);
/illumos-gate/usr/src/cmd/acct/
H A Dacctcms.c785 prnt(struct pcms *p, int hr) argument
787 if(p->pcm_pc[hr] == 0) return;
789 printf(fmtcnt, p->pcm_pc[hr]);
790 printf(fmtkcore, p->pcm_kcore[hr]);
791 printf(fmtcpu, p->pcm_cpu[hr]);
792 printf(fmtreal, p->pcm_real[hr]);
793 if(p->pcm_cpu[hr] == 0) p->pcm_cpu[hr] = 1;
794 printf(fmtmsz, p->pcm_kcore[hr]/p->pcm_cpu[hr]);
[all...]
H A Dacctcom.c593 * arg has form hr:min:sec, min or sec are assumed to be 0 if omitted
599 long hr, min, sec; local
603 if(sscanf(str, "%ld:%ld:%ld", &hr, &min, &sec) < 1) {
608 sec += (hr*3600);
/illumos-gate/usr/src/cmd/sh/
H A Dprint.c104 int hr, min, sec; local
112 if ((hr = t / 60) != 0) {
113 prn_buff(hr);
/illumos-gate/usr/src/cmd/who/
H A Dwho.c480 time_t hr; local
583 hr = idle/3600;
585 if (hr == 0 && min == 0)
588 if (hr < 24)
589 (void) printf(" %2d:%2.2d", (int)hr,
/illumos-gate/usr/src/tools/scripts/
H A Dwdiff.pl53 $comment = "<pre>\n" . $opt_c . "\n</pre>\n<hr />";
81 hr { border: none 0; border-top: 1px solid #aaa; height: 1px; }
131 hr { border: none 0; border-top: 1px solid #aaa; height: 1px; }
H A Dwebrev.sh74 hr {
132 hr { border: none 0; border-top: 1px solid #aaa; height: 1px; }
624 print "\n</pre><hr></hr><pre>"
644 END { if (c > (C * 2)) print "\n</pre><hr></hr>" }
948 <pre>$comments</pre><hr></hr>
1466 /^\@\@.*\@\@$/ { printf "</pre><hr></hr><pr
[all...]
/illumos-gate/usr/src/uts/common/pcmcia/cis/
H A Dcis_handlers.c349 int i, n, nrb, na, hr = 0; local
408 cr->hr = hr;
409 cr->regs[hr] = MAKE_CONFIG_REG_ADDR(
410 cr->base, hr);
412 hr++;
/illumos-gate/usr/src/uts/common/nfs/
H A Dnfs_clnt.h50 #define ACMINMAX 3600 /* 1 hr is longest min timeout */
51 #define ACMAXMAX 36000 /* 10 hr is longest max timeout */
588 #define HR2SEC(hr) ((hr) / (long long)NANOSEC)
/illumos-gate/usr/src/cmd/fm/eversholt/common/
H A Dliterals.h100 L_DECL(hr); variable
/illumos-gate/usr/src/lib/libshell/common/scripts/
H A Drssread.sh364 hr) printf "\n-------------------------------------\n" ;;
/illumos-gate/usr/src/cmd/cron/
H A Dcron.c1514 #define tm_setup(tp, yr, mon, dy, hr, min, dst) \
1518 (tp)->tm_hour = hr; \
1550 int tm_mon, tm_mday, tm_wday, wday, m, min, h, hr, carry, day, days; local
1605 hr = next_ge(h%24, e->of.ct.hour);
1606 carry = (hr < h) ? 1 : 0;
1611 hr, min, tm->tm_isdst);
1674 t += (time_t)(hr-tm->tm_hour-1) * HOUR +
1677 t += (time_t)(hr-tm->tm_hour) * HOUR +
1701 hr = next_ge(0, e->of.ct.hour);
1775 * now that we have the min, hr, da
[all...]
/illumos-gate/usr/src/uts/common/inet/ip/
H A Dip_netinfo.c1526 hook_event_token_t hr; local
1539 hr = (info->hnei_event.hne_protocol == ipst->ips_ipv6_net_data) ?
1541 (void) hook_run(info->hnei_event.hne_protocol->netd_hooks, hr,
/illumos-gate/usr/src/uts/common/pcmcia/sys/
H A Dcis_handlers.h172 uint32_t hr; /* highest config register index found */ member in struct:cistpl_config_t
/illumos-gate/usr/src/uts/common/io/bfe/
H A Dbfe.c492 hrtime_t hr; local
494 hr = gethrtime();
496 hr > bfe->bfe_tx_stall_time) {
/illumos-gate/usr/src/lib/libshell/common/sh/
H A Dxec.c87 register int hr; local
97 if(hr=t/60)
98 sfprintf(outfile,"%dh",hr);
/illumos-gate/usr/src/grub/grub-0.97/
H A Dconfigure434 -help=r* | --help=r* | --hel=r* | --he=r* | -hr*)
/illumos-gate/usr/src/uts/common/io/ath/
H A Dhal_x86_64.o.uu450 hcoDAADrB//Cg/oGdrVIg8QQW11BXMNIg+wYSIlcJAhIiWwkEEiJ++hr/v//hcB0M/aD
2441 3kyJ7+hr/v//mEEPr8cDRCQMmUH3/2aYZkGJBkyJ5kyJ7+ge/v//RA+/4EiJ3kyJ7+gP

Completed in 163 milliseconds