Searched refs:now (Results 76 - 100 of 157) sorted by relevance

1234567

/haiku/src/add-ons/accelerants/skeleton/
H A DInitAccelerant.c40 // LOG is now available, si !NULL
103 time_t now = time (NULL); local
105 MSG(("INIT_ACCELERANT: %s", ctime (&now)));
116 // LOG now available: !NULL si
/haiku/headers/private/kernel/
H A DUserTimer.h55 inline void CheckPeriodicOverrun(bigtime_t now);
82 void ScheduleKernelTimer(bigtime_t now,
/haiku/src/apps/login/
H A DLoginView.cpp230 time_t now = time(NULL); local
231 struct tm *t = localtime(&now);
/haiku/src/bin/
H A Dlaunch_roster.cpp78 time_t now = time(NULL); local
92 time_t at = now - (runtime - when) / 1000000l;
/haiku/src/add-ons/accelerants/nvidia/
H A DInitAccelerant.c41 // LOG is now available, si !NULL
104 time_t now = time (NULL); local
106 MSG(("INIT_ACCELERANT: %s", ctime (&now)));
118 // LOG now available: !NULL si
/haiku/src/add-ons/accelerants/matrox/
H A DInitAccelerant.c42 // LOG is now available, si !NULL
104 time_t now = time (NULL); local
107 MSG(("INIT_ACCELERANT: %s", ctime (&now)));
119 // LOG now available: !NULL si
/haiku/src/add-ons/accelerants/via/
H A DInitAccelerant.c41 // LOG is now available, si !NULL
104 time_t now = time (NULL); local
106 MSG(("INIT_ACCELERANT: %s", ctime (&now)));
118 // LOG now available: !NULL si
/haiku/src/kits/locale/
H A DTimeFormat.cpp165 time_t now; local
166 timeFormatter->format((UDate)time(&now) * 1000, icuString,
H A DDateFormat.cpp223 time_t now; local
224 dateFormatter->format((UDate)time(&now) * 1000, icuString,
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dinode.c1392 ntfs_time now; local
1403 now = ntfs_current_time();
1405 ni->last_access_time = now;
1407 ni->last_data_change_time = now;
1409 ni->last_mft_change_time = now;
1534 ntfs_time now; local
1543 now = ntfs_current_time();
1577 std_info->last_mft_change_time = now;
1578 ni->last_mft_change_time = now;
1598 fn->last_mft_change_time = now;
[all...]
/haiku/src/servers/net/
H A DDHCPClient.cpp457 bigtime_t now = system_time(); local
458 if (stateMaxTime == -1 || stateMaxTime < now)
460 bigtime_t remaining = (stateMaxTime - now) / 2 + 1;
1028 bigtime_t now = system_time(); local
1030 if (now > fLeaseTime || fStatus != B_OK)
1032 if (now >= fRebindingTime)
1034 if (now >= fRenewalTime)
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_send.c864 struct timespec now, timeout, finish; local
970 now = evNowTime();
972 finish = evAddTime(now, timeout);
975 now = evNowTime();
978 if (evCmpTime(finish, now) > 0)
979 timeout = evSubTime(finish, now);
991 timeout = evSubTime(finish, now);
/haiku/src/system/kernel/fs/
H A Dsocket.cpp286 timespec now; local
287 now.tv_sec = time(NULL);
288 now.tv_nsec = 0;
290 st->st_atim = now;
291 st->st_mtim = now;
292 st->st_ctim = now;
293 st->st_crtim = now;
/haiku/src/libs/uuid/
H A Dgen_uuid.c378 time_t now; local
381 now = time(0);
382 if (now > last_time+1)
/haiku/src/apps/mediaplayer/media_node_framework/video/
H A DVideoConsumer.cpp578 bigtime_t now = TimeSource()->Now(); local
580 || now < buffer->Header()->start_time + kMaxBufferLateness) {
587 bigtime_t tooEarly = buffer->Header()->start_time - now;
/haiku/src/apps/launchbox/
H A DLaunchButton.cpp161 bigtime_t now = system_time(); local
163 if (sIgnoreDoubleClick && now - fLastClickTime < sClickSpeed)
165 fLastClickTime = now;
/haiku/src/system/kernel/
H A Dthread.cpp735 // If requested, enter userland, now.
1032 // We're going to make the thread live, now. The thread itself will take
1433 bigtime_t now = (flags & B_TIMEOUT_REAL_TIME_BASE) != 0
1435 *_remainingTime = std::max(timeout - now, (bigtime_t)0);
2078 bigtime_t now = system_time();
2084 thread->kernel_time += now - thread->last_time;
2085 thread->last_time = now;
2200 TRACE(("thread_exit: thread %" B_PRId32 " now a kernel thread!\n",
2268 // now we can safely remove the msg.read_sem
2295 // We postponed deleting the user stack until now, sinc
[all...]
/haiku/src/add-ons/input_server/devices/wacom/
H A DTabletDevice.cpp545 bigtime_t now = system_time(); local
549 event->AddInt64("when", now);
594 if (now - fLastClickTime < fParent->DoubleClickSpeed()) {
601 fLastClickTime = now;
/haiku/src/system/kernel/scheduler/
H A Dscheduler_cpu.cpp539 bigtime_t now = system_time();
540 bool intervalEnded = now >= kLoadMeasureInterval + fLastLoadUpdate;
541 bool intervalSkipped = now >= kLoadMeasureInterval * 2 + fLastLoadUpdate;
559 fLastLoadUpdate = now;
/haiku/src/apps/mail/
H A DMailWindow.h98 status_t Send(bool now);
/haiku/src/apps/terminal/
H A DTerminalRoster.cpp124 bigtime_t now = system_time(); local
141 fLastCheckedTime = now;
168 right now) for this to work).
/haiku/src/add-ons/kernel/drivers/graphics/radeon/
H A Dirq.c150 bigtime_t now = system_time(); local
182 ((timer_info *)to)->when_target = now + when;
/haiku/src/add-ons/kernel/file_systems/netfs/shared/
H A DInsecureConnection.cpp287 bigtime_t now = system_time(); local
288 if (now - startAccepting > kAcceptingTimeout)
/haiku/src/build/libroot/
H A Dfs.cpp110 timeval now; local
111 gettimeofday(&now, NULL);
114 timeBuffer[0] = now;
117 timeBuffer[1] = now;
1279 timeval now; local
1280 gettimeofday(&now, NULL);
1282 = HAIKU_HOST_STAT_MTIM(stat).tv_sec = now.tv_sec;
1284 = HAIKU_HOST_STAT_MTIM(stat).tv_nsec = now.tv_usec * 1000;
/haiku/src/add-ons/media/media-add-ons/vst_host/
H A DVSTNode.cpp506 bigtime_t now = TimeSource()->Now(); local
528 fMuteLastChanged = now;
529 BroadcastNewParameterValue(now, id, event->pointer, size);
532 fByPassLastChanged = now;
533 BroadcastNewParameterValue(now, id, event->pointer, size);
539 BroadcastNewParameterValue(now, id, &value, size);

Completed in 187 milliseconds

1234567