Searched refs:milliseconds (Results 1 - 15 of 15) sorted by relevance

/freebsd-10.3-release/contrib/ncurses/ncurses/tty/
H A Dlib_twait.c128 * Wait a specified number of milliseconds, returning nonzero if the timer
142 * If the milliseconds given are -1, the wait blocks until activity on the
148 int milliseconds,
173 TR(TRACE_IEVENT, ("start twait: %d milliseconds, mode: %d",
174 milliseconds, mode));
181 && (milliseconds >= event_delay || milliseconds < 0)) {
182 milliseconds = event_delay;
234 result = poll(fds, (unsigned) count, milliseconds);
277 * FIXME: this assumes mode&1 if milliseconds <
146 _nc_timed_wait(SCREEN *sp, int mode, int milliseconds, int *timeleft EVENTLIST_2nd(_nc_eventlist * evl)) argument
[all...]
/freebsd-10.3-release/sys/dev/isci/
H A Disci_timer.c68 * @param[in] milliseconds This parameter specifies the number of
69 * milliseconds for which to stall. The operating system driver
76 uint32_t milliseconds)
81 isci_log_message(3, "TIMER", "start %p %d\n", timer, milliseconds);
82 callout_reset_sbt(&isci_timer->callout, SBT_1MS * milliseconds, 0,
75 scif_cb_timer_start(SCI_CONTROLLER_HANDLE_T controller, void *timer, uint32_t milliseconds) argument
/freebsd-10.3-release/contrib/ntp/lib/isc/win32/
H A Dcondition.c206 wait(isc_condition_t *cond, isc_mutex_t *mutex, DWORD milliseconds) { argument
221 milliseconds);
242 DWORD milliseconds; local
253 milliseconds = 0xFFFFFFFF;
255 milliseconds = (DWORD)(microseconds / 1000);
257 return (wait(cond, mutex, milliseconds));
/freebsd-10.3-release/contrib/gdb/gdb/
H A Devent-loop.h95 extern int create_timer (int milliseconds, timer_handler_func * proc, gdb_client_data client_data);
H A Devent-loop.c144 /* Timeout in milliseconds for calls to poll(). */
970 create_timer (int milliseconds, timer_handler_func * proc, gdb_client_data client_data)
976 delta.tv_sec = milliseconds / 1000;
978 delta.tv_usec = (milliseconds % 1000) * 1000;
967 create_timer(int milliseconds, timer_handler_func * proc, gdb_client_data client_data) argument
/freebsd-10.3-release/sys/dev/isci/scil/
H A Dscif_sas_timer.c102 U32 milliseconds
108 scif_cb_timer_start(fw_controller, timer, milliseconds);
H A Dscic_user_callback.h125 * @param[in] milliseconds This parameter specifies the number of
126 * milliseconds for which to stall. The operating system driver
134 U32 milliseconds
H A Dscif_user_callback.h129 * @param[in] milliseconds This parameter specifies the number of
130 * milliseconds for which to stall. The operating system driver
138 U32 milliseconds
/freebsd-10.3-release/sys/arm/allwinner/
H A Da10_wdog.c62 uint64_t milliseconds; member in struct:a10wd_interval
148 while (wd_intervals[i].milliseconds &&
149 (ms > wd_intervals[i].milliseconds))
151 if (wd_intervals[i].milliseconds) {
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DTimeValue.h214 /// @brief Retrieve the fractional part as milliseconds;
215 uint32_t milliseconds() const { function in class:llvm::sys::TimeValue
229 /// Returns the TimeValue as a number of milliseconds. Note that the value
233 /// @brief Convert to a number of milliseconds (can overflow)
309 /// @brief Set the nanoseconds component using a number of milliseconds.
310 void milliseconds ( int32_t millis ) { function in class:llvm::sys::TimeValue
324 void msec( int64_t milliseconds ) {
325 this->seconds_ = milliseconds / MILLISECONDS_PER_SECOND;
326 this->nanos_ = NanoSecondsType(milliseconds % MILLISECONDS_PER_SECOND) *
/freebsd-10.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Derr.chillbadarg.ksh37 * 500 milliseconds.
/freebsd-10.3-release/sys/contrib/dev/acpica/os_specific/service_layers/
H A Dosunixxf.c828 * MsecTimeout - How long to wait (milliseconds)
902 usleep (10 * ACPI_USEC_PER_MSEC); /* ten milliseconds */
1110 * PARAMETERS: milliseconds - Time to sleep
1120 UINT64 milliseconds)
1125 sleep (milliseconds / ACPI_MSEC_PER_SEC);
1131 usleep ((milliseconds % ACPI_MSEC_PER_SEC) * ACPI_USEC_PER_MSEC);
1119 AcpiOsSleep( UINT64 milliseconds) argument
/freebsd-10.3-release/lib/libc/rpc/
H A Dclnt_vc.c108 struct timeval ct_wait; /* wait interval in milliseconds */
696 int milliseconds = (int)((ct->ct_wait.tv_sec * 1000) + local
704 switch (_poll(&fd, 1, milliseconds)) {
H A Dsvc_vc.c479 int milliseconds = 35 * 1000; local
507 switch (_poll(&pollfd, 1, milliseconds)) {
/freebsd-10.3-release/contrib/sqlite3/
H A Dsqlite3.c1043 ** of 25 milliseconds before the first retry and with the delay increasing
1044 ** by an additional 25 milliseconds with each subsequent retry. This
1045 ** opcode allows these two values (10 retries and 25 milliseconds of delay)
1372 ** Day Number multiplied by 86400000 (the number of milliseconds in
2385 ** will sleep multiple times until at least "ms" milliseconds of sleeping
2386 ** have accumulated. ^After at least "ms" milliseconds of sleeping,
5071 ** for at least a number of milliseconds specified in its parameter.
5075 ** the nearest second. The number of milliseconds of sleep actually
15900 ** Compute the difference (in milliseconds) between localtime and UTC
20375 SQLITE_API void SQLITE_STDCALL sqlite3_win32_sleep(DWORD milliseconds); /* os_wi
35040 sqlite3_win32_sleep(DWORD milliseconds) argument
[all...]

Completed in 939 milliseconds