Searched refs:now (Results 1 - 25 of 2081) sorted by path

1234567891011>>

/macosx-10.9.5/AppleUSBCDCDriver-4201.2.5/AppleUSBCDCACM/DataDriver/Classes/
H A DAppleUSBCDCACMData.cpp1589 uint64_t now; local
1591 now = mach_absolute_time();
1593 ADD_ABSOLUTETIME (&now, &offset); //when we timeout
1594 nanoseconds_to_absolutetime (now, &when); //rcs We will wait for up to 9 Seconds before timing out..
4148 XTRACE(this, 0, 0, "WakeonRing - Initial Wake on Ring unavailable, now disabled...");
4304 clearSleepingThreads(); // All the threads should be gone by now but make sure
4589 // Desc: Close it down now.
/macosx-10.9.5/AppleUSBIrDA-145.2.4/DumpLog/
H A Ddumplog.cpp294 if (1) { // bind doesn't return our port number, sheesh. get it now.
404 // now wait for a response
410 time_t now, delta; local
412 now = time(NULL); // get current time
413 delta = timeout - now; // seconds left until timeout
546 time_t now; local
550 time(&now);
551 lt = localtime(&now);
/macosx-10.9.5/AppleUSBIrDA-145.2.4/IrDA/Debugging/
H A DIrDALog.c89 if (gIrDALog.fEventIndex == gIrDALog.fPrintIndex) // if newly wrapped index now matches print index
109 AbsoluteTime now; local
111 clock_get_uptime(&now);
112 absolutetime_to_nanoseconds(now, &nanoseconds);
/macosx-10.9.5/BerkeleyDB-21/db/build_vxworks/db_checkpoint/
H A Ddb_checkpoint.c46 time_t now; local
175 (void)time(&now);
177 "checkpoint begin: %s", __os_ctime(&now, time_buf));
187 (void)time(&now);
189 "checkpoint complete: %s", __os_ctime(&now, time_buf));
/macosx-10.9.5/BerkeleyDB-21/db/build_vxworks/db_deadlock/
H A Ddb_deadlock.c47 time_t now; local
182 (void)time(&now);
184 "running at %.24s", __os_ctime(&now, time_buf));
/macosx-10.9.5/BerkeleyDB-21/db/build_vxworks/db_hotbackup/
H A Ddb_hotbackup.c56 time_t now; local
207 (void)time(&now);
209 progname, __os_ctime(&now, time_buf));
369 (void)time(&now);
371 progname, __os_ctime(&now, time_buf));
/macosx-10.9.5/BerkeleyDB-21/db/build_vxworks/db_recover/
H A Ddb_recover.c242 time_t now; local
246 (void)time(&now);
247 if ((t = localtime(&now)) == NULL) {
/macosx-10.9.5/BerkeleyDB-21/db/common/
H A Dutil_log.c26 time_t now; local
32 (void)time(&now);
36 "%s: %lu %s", progname, (u_long)pid, __os_ctime(&now, time_buf));
/macosx-10.9.5/BerkeleyDB-21/db/db/
H A Ddb_stati.c205 time_t now; local
209 (void)time(&now);
210 __db_msg(dbp->env, "%.24s\tLocal time", __os_ctime(&now, time_buf));
/macosx-10.9.5/BerkeleyDB-21/db/db_checkpoint/
H A Ddb_checkpoint.c32 time_t now; local
160 (void)time(&now);
162 "checkpoint begin: %s", __os_ctime(&now, time_buf));
172 (void)time(&now);
174 "checkpoint complete: %s", __os_ctime(&now, time_buf));
/macosx-10.9.5/BerkeleyDB-21/db/db_deadlock/
H A Ddb_deadlock.c33 time_t now; local
167 (void)time(&now);
169 "running at %.24s", __os_ctime(&now, time_buf));
/macosx-10.9.5/BerkeleyDB-21/db/db_hotbackup/
H A Ddb_hotbackup.c42 time_t now; local
192 (void)time(&now);
194 progname, __os_ctime(&now, time_buf));
354 (void)time(&now);
356 progname, __os_ctime(&now, time_buf));
/macosx-10.9.5/BerkeleyDB-21/db/db_recover/
H A Ddb_recover.c227 time_t now; local
231 (void)time(&now);
232 if ((t = localtime(&now)) == NULL) {
/macosx-10.9.5/BerkeleyDB-21/db/env/
H A Denv_recover.c64 time_t now, tlow; local
298 * is worth doing right now. (We have to look for lowlsn
601 (void)time(&now);
603 "Recovery complete at %.24s", __os_ctime(&now, time_buf));
H A Denv_stat.c69 time_t now; local
73 (void)time(&now);
74 __db_msg(env, "%.24s\tLocal time", __os_ctime(&now, time_buf));
/macosx-10.9.5/BerkeleyDB-21/db/examples_c/csv/
H A DREADME67 You can load now load the csv file into a Berkeley DB database with the
/macosx-10.9.5/BerkeleyDB-21/db/examples_c/
H A Dex_thread.c274 time_t now, then; local
278 time(&now);
279 then = now;
312 time(&now);
313 if (now - then >= 20) {
315 then = now;
H A Dex_tpcb.c28 struct _timeb now; local
29 _ftime(&now);
30 tv->tv_sec = now.time;
31 tv->tv_usec = now.millitm * NS_PER_US;
/macosx-10.9.5/BerkeleyDB-21/db/lock/
H A Dlock_deadlock.c122 db_timespec now; local
147 timespecclear(&now);
150 !__lock_expired(env, &now, &region->next_timeout))) {
376 db_timespec now, min_timeout; local
385 timespecclear(&now);
413 &now, &lockerp->lk_expire)) {
582 * we should ignore it for now.
600 &now, &lockerp->lk_expire)) {
881 * Either the waiters list is now empty, in which case we remove
973 * it really is a deadlock, we need the bit set now s
[all...]
H A Dlock_timer.c144 * If timespecp is set then it contains "now". This avoids repeated
153 /* Add the timeout to "now". */
163 __lock_expired(env, now, timespecp)
165 db_timespec *now, *timespecp;
170 if (!timespecisset(now))
171 __os_gettime(env, now, 1);
173 return (timespeccmp(now, timespecp, >=));
/macosx-10.9.5/BerkeleyDB-21/db/mutex/
H A Dmut_win32.c114 LARGE_INTEGER now; local
148 * now, read/write a non-critical piece of memory from the
190 QueryPerformanceCounter(&now);
193 now.QuadPart, mutexp, mutexp->id, ms);
218 QueryPerformanceCounter(&now);
220 now.QuadPart, mutexp, mutexp->id);
258 LARGE_INTEGER now; local
283 QueryPerformanceCounter(&now);
285 now.QuadPart, mutexp, mutexp->id);
/macosx-10.9.5/BerkeleyDB-21/db/os/
H A Dos_clock.c55 time_t now; local
57 RETRY_CHK((time(&now) == (time_t)-1 ? 1 : 0), ret);
63 tp->tv_sec = now;
/macosx-10.9.5/BerkeleyDB-21/db/os_windows/
H A Dos_clock.c72 struct _timeb now;
74 _ftime(&now);
75 tp->tv_sec = now.time;
76 tp->tv_nsec = now.millitm * NS_PER_MS;
/macosx-10.9.5/BerkeleyDB-21/db/perl/DB_File/
H A DDB_File.pm995 And now you will only have duplicates when the keys themselves
1530 # now print the records in reverse order
1962 With the lock released, process "B" can now continue. It also updates the
2129 which pinpoints the real problem. Finally the script can now be
/macosx-10.9.5/BerkeleyDB-21/db/rep/
H A Drep_record.c318 * request just now.
437 * If the sender is part of an established group, so are we now.
444 "I am now part of an established group"));
826 * do for now.
1035 * We will simply return now. All special return
1257 * start sync, start it now. We can compare >= here
1819 * else to do right now. Break out.
2115 db_timespec now; local
2120 __os_gettime(env, &now, 1);
2121 timespecsub(&now,
[all...]

Completed in 519 milliseconds

1234567891011>>