Home
last modified time | relevance | path

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

/NextBSD/contrib/llvm/tools/lldb/source/API/
HDSBListener.cpp191 SBListener::WaitForEvent (uint32_t timeout_secs, SBEvent &event) in WaitForEvent() argument
196 if (timeout_secs == UINT32_MAX) in WaitForEvent()
205 static_cast<void*>(m_opaque_ptr), timeout_secs, in WaitForEvent()
214 if (timeout_secs != UINT32_MAX) in WaitForEvent()
216 …assert (timeout_secs != 0); // Take this out after all calls with timeout set to zero have been re… in WaitForEvent()
218 time_value.OffsetWithSeconds (timeout_secs); in WaitForEvent()
230 if (timeout_secs == UINT32_MAX) in WaitForEvent()
239 static_cast<void*>(m_opaque_ptr), timeout_secs, in WaitForEvent()
/NextBSD/contrib/dialog/
HDpause.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()
HDui_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()
HDdialog.h497 int timeout_secs; /* option "--timeout secs" */ member
HDdialog.c1522 dialog_vars.timeout_secs = optionValue(argv, &offset); in process_common_options()
/NextBSD/crypto/openssh/
HDclientloop.c584 int timeout_secs; in client_wait_until_can_do_something() local
633 timeout_secs = INT_MAX; /* we use INT_MAX to mean no timeout */ in client_wait_until_can_do_something()
635 timeout_secs = options.server_alive_interval; in client_wait_until_can_do_something()
639 timeout_secs = MIN(timeout_secs, packet_get_rekey_timeout()); in client_wait_until_can_do_something()
642 timeout_secs = MIN(timeout_secs, in client_wait_until_can_do_something()
644 if (timeout_secs < 0) in client_wait_until_can_do_something()
645 timeout_secs = 0; in client_wait_until_can_do_something()
648 timeout_secs = MIN(timeout_secs, (int)minwait_secs); in client_wait_until_can_do_something()
649 if (timeout_secs == INT_MAX) in client_wait_until_can_do_something()
652 tv.tv_sec = timeout_secs; in client_wait_until_can_do_something()
/NextBSD/contrib/wpa/src/utils/
HDos.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()
/NextBSD/usr.sbin/yppush/
HDyppush_main.c229 yppush_svc_run(int timeout_secs) in yppush_svc_run() argument
236 timeout.tv_sec = timeout_secs; in yppush_svc_run()