Home | History | Annotate | Download | only in API

Lines Matching refs:timeout_secs

189 SBListener::WaitForEvent (uint32_t timeout_secs, SBEvent &event)
194 if (timeout_secs == UINT32_MAX)
196 log->Printf ("SBListener(%p)::WaitForEvent (timeout_secs=INFINITE, SBEvent(%p))...",
201 log->Printf ("SBListener(%p)::WaitForEvent (timeout_secs=%d, SBEvent(%p))...",
202 m_opaque_ptr, timeout_secs, event.get());
210 if (timeout_secs != UINT32_MAX)
212 assert (timeout_secs != 0); // Take this out after all calls with timeout set to zero have been removed....
214 time_value.OffsetWithSeconds (timeout_secs);
226 if (timeout_secs == UINT32_MAX)
228 log->Printf ("SBListener(%p)::WaitForEvent (timeout_secs=INFINITE, SBEvent(%p)) => %i",
233 log->Printf ("SBListener(%p)::WaitForEvent (timeout_secs=%d, SBEvent(%p)) => %i",
234 m_opaque_ptr, timeout_secs, event.get(), success);