Searched refs:timeout_secs (Results 1 – 3 of 3) sorted by relevance
189 SBListener::WaitForEvent (uint32_t timeout_secs, SBEvent &event) in WaitForEvent() argument194 if (timeout_secs == UINT32_MAX) in WaitForEvent()202 m_opaque_ptr, timeout_secs, event.get()); in WaitForEvent()210 if (timeout_secs != UINT32_MAX) in WaitForEvent()212 …assert (timeout_secs != 0); // Take this out after all calls with timeout set to zero have been re… in WaitForEvent()214 time_value.OffsetWithSeconds (timeout_secs); in WaitForEvent()226 if (timeout_secs == UINT32_MAX) in WaitForEvent()234 m_opaque_ptr, timeout_secs, event.get(), success); in WaitForEvent()
584 int timeout_secs; in client_wait_until_can_do_something() local633 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()
101 os_time_t timeout_secs) in os_reltime_expired() argument106 return (age.sec > timeout_secs) || in os_reltime_expired()107 (age.sec == timeout_secs && age.usec > 0); in os_reltime_expired()