Searched refs:time (Results 51 - 75 of 3079) sorted by relevance

1234567891011>>

/macosx-10.10.1/postfix-255/postfix/src/global/
H A Dsent.h17 #include <time.h>
/macosx-10.10.1/sudo-73/src/
H A Dinsults.h57 #define INSULT (insults[time(NULL) % NOFINSULTS])
/macosx-10.10.1/xnu-2782.1.97/libkern/uuid/
H A Duuid.c41 #include <sys/time.h>
99 uint64_t time; local
104 time = read_time();
105 out[0] = (uint8_t)(time >> 24);
106 out[1] = (uint8_t)(time >> 16);
107 out[2] = (uint8_t)(time >> 8);
108 out[3] = (uint8_t)time;
109 out[4] = (uint8_t)(time >> 40);
110 out[5] = (uint8_t)(time >> 32);
111 out[6] = (uint8_t)(time >> 5
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/kadm5/
H A Dset_modifier.c49 ent->modified_by->time = time(NULL);
/macosx-10.10.1/Libc-1044.1.2/stdtime/FreeBSD/
H A Dftime.c36 #include <sys/time.h>
49 tbp->time = t.tv_sec;
/macosx-10.10.1/Security-57031.1.35/Security/include/security_cryptkit/
H A Dplatform.c58 #include <time.h>
67 time(&curTime);
89 extern void time(unsigned *tp);
96 time(&curTime);
108 #include <time.h>
133 time(&curTime);
177 #include <time.h>
186 time(&curTime);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A Dplatform.c58 #include <time.h>
67 time(&curTime);
89 extern void time(unsigned *tp);
96 time(&curTime);
108 #include <time.h>
133 time(&curTime);
177 #include <time.h>
186 time(&curTime);
/macosx-10.10.1/apr-32/apr/apr/include/
H A Dapr_time.h64 #define apr_time_sec(time) ((time) / APR_USEC_PER_SEC)
67 #define apr_time_usec(time) ((time) % APR_USEC_PER_SEC)
70 #define apr_time_msec(time) (((time) / 1000) % 1000)
73 #define apr_time_as_msec(time) ((time) / 1000)
86 * @return the current time
117 /** daylight saving time */
[all...]
/macosx-10.10.1/bind9-45.101/bind9/contrib/nslint-2.1a3/lbl/
H A Dos-irix5.h38 time_t time(time_t *);
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tinfo/
H A Dlib_napms.c46 #include <time.h>
48 #include <sys/time.h> /* needed for MacOS X DP3 */
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/racoon/
H A Dthrottle.c40 # include <sys/time.h>
41 # include <time.h>
44 # include <sys/time.h>
46 # include <time.h>
85 te->penalty = time(NULL) + isakmp_cfg_config.auth_throttle;
104 now = time(NULL);
125 * give no penalty even on error: this is the first time
133 return (time(NULL)
/macosx-10.10.1/zsh-61/zsh/Src/Modules/
H A Dzprof.c33 #include <sys/time.h>
42 double time; member in struct:pfunc
62 double time; member in struct:parc
129 return ((*a)->time > (*b)->time ? -1 : ((*a)->time != (*b)->time));
135 return ((*a)->time > (*b)->time ? -1 : ((*a)->time !
[all...]
/macosx-10.10.1/rsync-45/rsync/
H A Dprogress.c38 struct timeval time; member in struct:progress_history
56 * @param is_last True if this is the last time progress will be
72 if (!ph_start.time.tv_sec
73 || !(diff = msdiff(&ph_start.time, now)))
76 /* Switch to total time taken for our last update. */
80 if (!(diff = msdiff(&ph_list[oldest_hpos].time, now)))
141 if (!ph_start.time.tv_sec) {
144 /* Try to guess the real starting time when the sender started
145 * to send us data by using the time we last received some data
147 if (msdiff(&ph_list[newest_hpos].time,
[all...]
/macosx-10.10.1/uucp-11/uucp/
H A Dtime.c0 /* time.c
2 Routines to deal with UUCP time spans.
28 const char time_rcsid[] = "$Id: time.c,v 1.22 2002/03/05 19:10:41 ian Rel $";
34 #include <sys/time.h>
36 #include <time.h>
43 #ifndef time
44 extern time_t time ();
51 /* See if the current time matches a time span. If it does, return
70 time (
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/emacs-lisp/
H A Dtimer.el1 ;;; timer.el --- run a function with args at some time in future
48 (defun timer-set-time (timer time &optional delta)
49 "Set the trigger time of TIMER to TIME.
50 TIME must be in the internal format returned by, e.g., `current-time'.
55 (aset timer 1 (car time))
56 (aset timer 2 (if (consp (cdr time)) (car (cdr time)) (cdr time)))
57 (aset timer 3 (or (and (consp (cdr time)) (cons
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dpex-unix.c52 #include <sys/time.h>
84 time that it took. This is simple if we have wait4, slightly
93 struct pex_time *time)
99 if (time == NULL)
105 if (time != NULL)
107 time->user_seconds = r.ru_utime.tv_sec;
108 time->user_microseconds= r.ru_utime.tv_usec;
109 time->system_seconds = r.ru_stime.tv_sec;
110 time->system_microseconds= r.ru_stime.tv_usec;
124 struct pex_time *time)
92 pex_wait(struct pex_obj *obj ATTRIBUTE_UNUSED, pid_t pid, int *status, struct pex_time *time) argument
123 pex_wait(struct pex_obj *obj ATTRIBUTE_UNUSED, pid_t pid, int *status, struct pex_time *time) argument
134 pex_wait(struct pex_obj *obj ATTRIBUTE_UNUSED, pid_t pid, int *status, struct pex_time *time) argument
179 struct pex_time time; member in struct:status_list
183 pex_wait(struct pex_obj *obj, pid_t pid, int *status, struct pex_time *time) argument
477 pex_unix_wait(struct pex_obj *obj, long pid, int *status, struct pex_time *time, int done, const char **errmsg, int *err) argument
[all...]
/macosx-10.10.1/xnu-2782.1.97/tools/tests/kqueue_tests/
H A Dkqueue_timer_tests.c3 #include <sys/time.h>
23 /* time out after 1 sec extra delay */
27 /* measure time for the kevent */
55 test_absolute_kevent(int time, int scale) argument
68 printf("Testing %d sec absolute timer...\n", time);
72 printf("Testing %d usec absolute timer...\n", time);
76 printf("Testing %d msec absolute timer...\n", time);
84 expected = time * timescale;
85 deadline = nowus / timescale + time;
88 if (time <
102 test_oneshot_kevent(int time, int scale) argument
[all...]
/macosx-10.10.1/ntfs-84/kext/
H A Dntfs_time.h2 * ntfs_time.h - NTFS time conversion functions for the NTFS kernel driver.
41 #include <sys/time.h>
49 * utc2ntfs - convert OS X time to NTFS time
50 * @ts: OS X UTC time to convert to NTFS (little endian) time
52 * Convert the OS X UTC time @ts to its corresponding NTFS time and return that
55 * OS X stores time in a struct timespec consisting of a time_t (long at
60 * NTFS uses Microsoft's standard time forma
126 ntfs2utc(const sle64 time) argument
[all...]
/macosx-10.10.1/ntp-92/include/
H A Dntp_syscall.h30 struct timeval time; /* current time (ro) */ member in struct:ntptimeval
46 ntv->time = tntx.time;
/macosx-10.10.1/ntp-92/util/
H A Dtestrs6000.c4 * time, sit there for 10 seconds, and exit. If the problem isn't fixed,
11 #include <sys/time.h>
12 #include <time.h>
28 curtime = time(0);
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dload_file.c41 #include <time.h>
65 for (before = time((time_t *) 0); /* see below */ ; before = after) {
73 after = time((time_t *) 0);
H A Dwrite_buf.c27 /* Bounds the time in seconds to wait until \fIfd\fD becomes writable.
49 #include <time.h>
66 expire = time((time_t *) 0) + time_left;
81 time_left = expire - time((time_t *) 0);
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Dsimpletz.h47 * that represents a time zone for use with a Gregorian calendar. This
50 * When specifying daylight-savings-time begin and end dates, use a negative value for
66 * midnight, to specify a rule transition time. Most rules
67 * transition at a local wall time, that is, according to the
68 * current time in effect, either standard, or DST. However, some
69 * rules transition at local standard time, and some at a specific
70 * UTC time. Although it might seem that all times could be
71 * converted to wall time, thus eliminating the need for this
106 * @return True if the given time zone is equal to this time zon
884 setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, UErrorCode& status) argument
890 setStartRule(int32_t month, int32_t dayOfMonth, int32_t time, UErrorCode& status) argument
896 setStartRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) argument
902 setEndRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, UErrorCode& status) argument
908 setEndRule(int32_t month, int32_t dayOfMonth, int32_t time, UErrorCode& status) argument
913 setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, UBool after, UErrorCode& status) argument
[all...]
/macosx-10.10.1/AppleUSBIrDA-145.2.4/IrDADebugLog/
H A DLogItem.h4 NSNumber *time; // Used as a UInt32 from IrDA variable
16 - (NSNumber *)time;
/macosx-10.10.1/JavaScriptCore-7600.1.17/
H A DJavaScriptCorePrefix.h15 #include <time.h>
17 #include <sys/time.h>

Completed in 187 milliseconds

1234567891011>>