Searched defs:secs (Results 1 - 11 of 11) sorted by relevance

/osnet-11/usr/src/lib/libresolv2/common/sunw/
H A Dsunw_wrappers.c20 char *p_secstodate(uint_t secs) { argument
21 return (isc_p_secstodate((ulong_t)secs));
/osnet-11/usr/src/lib/libresolv2/common/nameser/
H A Dns_ttl.c54 int secs, mins, hours, days, weeks, x; local
57 secs = src % 60; src /= 60;
80 if (secs || !(weeks || days || hours || mins)) {
81 T(fmt1(secs, 'S', &dst, &dstlen));
/osnet-11/usr/src/lib/libresolv/
H A Dres_debug.c486 int secs, mins, hours; local
490 strcpy(nbuf, "0 secs");
494 secs = value % 60;
519 if (secs || ! (value || hours || mins)) {
522 (void) sprintf(p, "%d sec%s", PLURALIZE(secs));
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Dmisc.c57 void sleep(int secs) argument
61 for (tmo = currticks()+secs*TICKS_PER_SEC; currticks() < tmo; ) {
69 void interruptible_sleep(int secs) argument
72 return sleep(secs);
/osnet-11/usr/src/lib/libpicl/
H A Dpicl.c302 picl_wait(unsigned int secs) argument
311 req_wait.secs = secs;
H A Dpicl2door.h300 unsigned int secs; /* number of seconds */ member in struct:__anon2309
305 unsigned int secs; /* input seconds */ member in struct:__anon2310
/osnet-11/usr/src/lib/libresolv2/common/resolv/
H A Dres_debug.c845 int deg = 0, min = 0, secs = 0, secsfrac = 0; local
868 secs = secs * 10 + (*cp++ - '0');
894 + (((((deg * 60) + min) * 60) + secs) * 1000)
900 - (((((deg * 60) + min) * 60) + secs) * 1000)
1187 p_secstodate (u_long secs) { argument
1189 time_t clock = secs;
/osnet-11/usr/src/lib/libsip/common/
H A Dsip_add_hdrs.c725 sip_add_expires(sip_msg_t sip_msg, int secs) argument
729 if (sip_msg == NULL || (int)secs < 0)
732 ret = sip_add_int_to_msg(sip_msg, SIP_EXPIRE, secs, NULL);
770 sip_add_min_expires(sip_msg_t sip_msg, int secs) argument
774 if (sip_msg == NULL || (int)secs < 0)
776 ret = sip_add_int_to_msg(sip_msg, SIP_MIN_EXPIRE, secs, NULL);
884 sip_add_retry_after(sip_msg_t sip_msg, int secs, char *cmt, char *plist) argument
888 if (secs <= 0)
892 r = sip_add_int_to_msg(sip_msg, SIP_RETRY_AFTER, secs, plist);
896 r = sip_add_intstr_to_msg(sip_msg, SIP_RETRY_AFTER, secs, cm
[all...]
/osnet-11/usr/src/lib/libpicltree/
H A Dpicltree.c3630 xptree_refresh_notify(uint32_t secs) argument
3636 if (secs != 0) {
3643 if (secs == UINT32_MAX) /* wait forever */
3647 to.tv_sec = secs;
/osnet-11/usr/src/lib/libipsecutil/common/
H A Dipsec_util.c201 secs2out(unsigned int secs, char *buf, int bufsiz, int flags) argument
207 if (secs > 60) {
212 (void) secs2str(secs, str, bufsiz);
237 secs2str(unsigned int secs, char *buf, int bufsiz) argument
239 double val = secs;
2398 "post-add secs=%" PRIu64 " "),
2402 "post-use secs=%" PRIu64 ""),
2415 "post-add secs=%" PRIu64 " "),
2419 "post-use secs=%" PRIu64 ""),
2455 (void) fprintf(file, dgettext(TEXT_DOMAIN, "post-add secs
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dutil.c3505 int secs; local
3608 secs = 0;
3611 secs = ptm->tm_sec;
3614 secs += 60 * ptm->tm_min;
3615 secs += SECS_PER_HOUR * ptm->tm_hour;
3616 if (secs < 0) {
3617 if (secs-(secs/SECS_PER_DAY*SECS_PER_DAY) < 0) {
3620 yearday += (secs/SECS_PER_DAY)-1;
3621 secs
[all...]

Completed in 66 milliseconds