HomeSort by relevance Sort by last modified time
    Searched defs:seconds (Results 1 - 25 of 41) sorted by null

1 2

  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
lckpwdf.c 57 * seconds and -1 otherwise. We stand on our head to make it MT-safe.
68 int seconds = 0; local
90 if (seconds++ >= S_WAITTIME) {
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/cmd/badioctl/
badioctl.c 62 int i = 0, seconds; local
  /onnv/onnv-gate/usr/src/cmd/fm/modules/common/sp-monitor/
sp_monitor.c 78 * We reset the seconds and generation so that the next time
91 uint32_t seconds, generation; local
93 if (ipmi_sunoem_uptime(smp->sm_hdl, &seconds, &generation) != 0) {
108 if (seconds < smp->sm_seconds ||
113 smp->sm_seconds = seconds;
184 fmd_hdl_debug(hdl, "successfully loaded, uptime = %u seconds "
  /onnv/onnv-gate/usr/src/lib/pam_modules/ldap/
ldap_acct_mgmt.c 171 * Return Value: PAM_SUCCESS - If account is valid, seconds param will have
172 * seconds left for password to expire
178 * seconds param will have no. of seconds for the
183 get_account_mgmt(char *user, int *seconds, int *grace)
200 *seconds =
220 /* max failures reached, seconds before unlock */
221 *seconds =
258 int seconds = 0, grace = 0; local
297 result = get_account_mgmt(user, &seconds, &grace)
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun4v/io/
hardclk.c 140 * To handle the H_ENOTSUPPORTED we return 0 seconds and let clkset
149 uint64_t seconds; local
164 ret = hv_tod_get(&seconds);
194 ts.tv_sec = tod_validate(seconds);
  /onnv/onnv-gate/usr/src/cmd/dtrace/test/tst/common/java_api/src/
TestDrop.java 43 static int seconds; field in class:TestDrop
48 if (seconds <= 0) {
58 }, seconds * 1000L);
108 System.err.println("usage: java TestDrop [ seconds ]");
117 seconds = Integer.parseInt(args[0]);
  /onnv/onnv-gate/usr/src/cmd/krb5/ldap_util/
kdb5_ldap_policy.c 882 int neg, days, hours, minutes, seconds; local
895 seconds = duration;
898 hours, minutes, seconds);
kdb5_ldap_realm.c 1929 int neg, days, hours, minutes, seconds; local
    [all...]
  /onnv/onnv-gate/usr/src/uts/sun4u/io/
todsg.c 276 time_t seconds; local
291 (char *)&seconds, sizeof (time_t)))) {
323 if (seconds != pre_seconds) { /* SC still alive */
324 pre_seconds = seconds;
326 skew_adjust = hrestime.tv_sec - (seconds + domain_skew);
345 ts.tv_sec = seconds + domain_skew;
374 time_t seconds; local
408 (char *)&seconds, sizeof (time_t)))) {
424 if (!complained && (ts.tv_sec != (seconds + domain_skew))) {
425 hwtod = seconds + domain_skew
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsmbfs/smb/
subr.c 235 * Number of seconds between 1970 and 1601 year
241 smb_time_local2server(struct timeval *tsp, int tzoff, long *seconds)
243 *seconds = tsp->tv_sec - tzoff * 60;
247 smb_time_server2local(ulong_t seconds, int tzoff, struct timeval *tsp)
249 tsp->tv_sec = seconds + tzoff * 60;
267 long seconds; local
269 smb_time_local2server(tsp, 0, &seconds);
270 *nsec = (((uint64_t)(seconds) & ~1) + DIFF1970TO1601) *
  /onnv/onnv-gate/usr/src/lib/fm/libfmevent/common/
fmev_evaccess.c 273 time_t seconds; local
275 seconds = (time_t)fmev_time_sec(ev);
276 return (localtime_r(&seconds, tm));
  /onnv/onnv-gate/usr/src/cmd/plimit/
plimit.c 234 * mm : ss minutes and seconds (for CPU time only)
250 char *seconds = strtok_r(NULL, " \t", &lastc); local
253 if (seconds != NULL && strtok_r(NULL, " \t", &lastc) != NULL)
258 if (seconds == NULL || *seconds == '\0')
261 sec = strtoull(seconds, &lastc, 10);
403 s = " time(seconds)\t\t";
  /onnv/onnv-gate/usr/src/cmd/sgs/prof/common/
profv.h 144 double seconds; /* time spent here in seconds */ member in struct:profrec
  /onnv/onnv-gate/usr/src/cmd/ssh/libssh/common/
progressmeter.c 50 #define STALL_TIME 5 /* we're stalled after this many seconds */
131 int hours, minutes, seconds; local
206 seconds = bytes_left / bytes_per_second;
208 seconds = (int)elapsed;
210 hours = seconds / 3600;
211 seconds -= hours * 3600;
212 minutes = seconds / 60;
213 seconds -= minutes * 60;
217 "%d:%02d:%02d", hours, minutes, seconds);
220 " %02d:%02d", minutes, seconds);
    [all...]
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/krb/
str_conv.c 289 int days, hours, minutes, seconds;
309 seconds = (int) (dt % 60);
313 sprintf(buffer, "%d:%02d:%02d", hours, minutes, seconds);
314 else if (hours || minutes || seconds)
317 hours, minutes, seconds);
287 int days, hours, minutes, seconds; local
  /onnv/onnv-gate/usr/src/lib/libpkg/common/
pkgstr.c 1102 unsigned long long seconds; local
1121 ns = a_time % 1000000000ll; /* nanoseconds left over from seconds */
1122 seconds = a_time / 1000000000ll; /* total seconds */
1123 minutes = seconds / 60ll; /* total minutes */
1124 seconds = seconds % 60ll; /* seconds left over from minutes */
1131 hours, minutes, seconds, ns);
  /onnv/onnv-gate/usr/src/uts/common/fs/smbclnt/netsmb/
smb_smb.c 77 * Default timeout values, all in seconds.
110 * Number of seconds between 1970 and 1601 year
115 smb_time_local2server(struct timespec *tsp, int tzoff, long *seconds)
123 *seconds = tsp->tv_sec - tzoff * 60;
128 smb_time_server2local(ulong_t seconds, int tzoff, struct timespec *tsp)
136 tsp->tv_sec = seconds + tzoff * 60;
155 long seconds; local
157 smb_time_local2server(tsp, 0, &seconds);
158 *nsec = (((u_int64_t)(seconds) & ~1) + DIFF1970TO1601) *
  /onnv/onnv-gate/usr/src/uts/common/fs/smbclnt/smbfs/
smbfs_subr.c 77 #define DT_2SECONDS_MASK 0x1F /* seconds divided by 2 */
204 * The number of seconds between Jan 1, 1970 and Jan 1, 1980. In that
216 ulong_t seconds; local
227 seconds = (((dt & DT_2SECONDS_MASK) >> DT_2SECONDS_SHIFT) << 1)
256 smb_time_server2local(seconds + lastseconds, tzoff, tsp);
  /onnv/onnv-gate/usr/src/cmd/touch/
touch.c 391 int seconds = 0; local
403 seconds = atoi_for2(p+1);
433 tm.tm_sec = seconds;
  /onnv/onnv-gate/usr/src/cmd/zdump/
zdump.c 413 register long seconds; local
420 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR;
422 if (t > absolute_max_time - seconds) {
426 t += seconds;
429 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR;
430 if (t < absolute_min_time + seconds) {
434 t -= seconds;
  /onnv/onnv-gate/usr/src/lib/libresolv2/common/resolv/
res_send.c 812 int resplen, seconds, n, s; local
884 seconds = (statp->retrans << tries);
886 seconds /= statp->nscount;
887 if (seconds <= 0)
888 seconds = 1;
890 timeout = evConsTime(seconds, 0);
  /onnv/onnv-gate/usr/src/cmd/abi/spectrans/spec2trace/
trace.c 427 double seconds; local
430 seconds = difftime(Statistics.end, Statistics.start);
441 "in %.0f seconds, at %.1f lines/minute.\n",
446 seconds, Statistics.lines*60.0/seconds);
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.bin/nca/
ncab2clf.c 388 int seconds = 0; local
399 if (!atoi_for2(p+1, &seconds))
441 tm->tm_sec = seconds;
  /onnv/onnv-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
Option.java 231 * Gets a time option value indicating the given number of seconds.
233 * @param n number of seconds
234 * @return time option value indicating the given number of seconds
237 seconds(int n) method in class:Option
  /onnv/onnv-gate/usr/src/cmd/fm/eversholt/common/
literals.h 93 L_DECL(seconds); variable

Completed in 2280 milliseconds

1 2