Home
last modified time | relevance | path

Searched refs:timeout_secs (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBListener.cpp141 bool SBListener::WaitForEvent(uint32_t timeout_secs, SBEvent &event) { in WaitForEvent() argument
144 if (timeout_secs == UINT32_MAX) { in WaitForEvent()
152 static_cast<void *>(m_opaque_sp.get()), timeout_secs, in WaitForEvent()
160 if (timeout_secs != UINT32_MAX) { in WaitForEvent()
161 assert(timeout_secs != 0); // Take this out after all calls with timeout in WaitForEvent()
163 timeout = std::chrono::seconds(timeout_secs); in WaitForEvent()
173 if (timeout_secs == UINT32_MAX) { in WaitForEvent()
181 static_cast<void *>(m_opaque_sp.get()), timeout_secs, in WaitForEvent()
/freebsd-12.1/contrib/dialog/
H A Dpause.c80 int save_timeout = dialog_vars.timeout_secs; in dialog_pause()
86 dialog_vars.timeout_secs = 0; in dialog_pause()
243 dialog_vars.timeout_secs = save_timeout; in dialog_pause()
H A Dui_getc.c437 int interval = (dialog_vars.timeout_secs * 1000); in dlg_getc()
438 time_t expired = time((time_t *) 0) + dialog_vars.timeout_secs; in dlg_getc()
H A Ddialog.h497 int timeout_secs; /* option "--timeout secs" */ member
H A Ddialog.c1522 dialog_vars.timeout_secs = optionValue(argv, &offset); in process_common_options()
/freebsd-12.1/crypto/openssh/
H A Dclientloop.c494 int timeout_secs; in client_wait_until_can_do_something() local
523 timeout_secs = INT_MAX; /* we use INT_MAX to mean no timeout */ in client_wait_until_can_do_something()
525 timeout_secs = options.server_alive_interval; in client_wait_until_can_do_something()
529 timeout_secs = MINIMUM(timeout_secs, packet_get_rekey_timeout()); in client_wait_until_can_do_something()
532 timeout_secs = MINIMUM(timeout_secs, in client_wait_until_can_do_something()
534 if (timeout_secs < 0) in client_wait_until_can_do_something()
535 timeout_secs = 0; in client_wait_until_can_do_something()
538 timeout_secs = MINIMUM(timeout_secs, (int)minwait_secs); in client_wait_until_can_do_something()
539 if (timeout_secs == INT_MAX) in client_wait_until_can_do_something()
542 tv.tv_sec = timeout_secs; in client_wait_until_can_do_something()
/freebsd-12.1/contrib/wpa/src/utils/
H A Dos.h101 os_time_t timeout_secs) in os_reltime_expired() argument
106 return (age.sec > timeout_secs) || in os_reltime_expired()
107 (age.sec == timeout_secs && age.usec > 0); in os_reltime_expired()
/freebsd-12.1/usr.sbin/yppush/
H A Dyppush_main.c231 yppush_svc_run(int timeout_secs) in yppush_svc_run() argument
238 timeout.tv_sec = timeout_secs; in yppush_svc_run()