Searched defs:timeout_abstime (Results 1 - 4 of 4) sorted by relevance

/external/lldb/tools/debugserver/source/
H A DRNBContext.cpp117 struct timespec timeout_abstime; local
118 DNBTimer::OffsetTimeOfDay(&timeout_abstime, 2, 0);
120 if (m_events.WaitForSetEvents(RNBContext::event_proc_thread_exiting, &timeout_abstime) == RNBContext::event_proc_thread_exiting)
H A DDNB.cpp523 struct timespec *timeout_abstime,
607 if (timeout_abstime != NULL)
611 if (DNBTimer::TimeOfDayLaterThan(*timeout_abstime))
637 waitfor_pid = DNBProcessAttach (waitfor_pid, timeout_abstime, err_str, err_len);
520 DNBProcessAttachWait(const char *waitfor_process_name, nub_launch_flavor_t launch_flavor, bool ignore_existing, struct timespec *timeout_abstime, useconds_t waitfor_interval, char *err_str, size_t err_len, DNBShouldCancelCallback should_cancel_callback, void *callback_data) argument
H A DRNBRemote.cpp729 struct timespec timeout_abstime; local
730 DNBTimer::OffsetTimeOfDay(&timeout_abstime, 2, 0);
733 if (events.WaitForSetEvents(RNBContext::event_read_thread_exiting, &timeout_abstime) == 0)
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.cpp401 MachProcess::Kill (const struct timespec *timeout_abstime) argument
433 MachProcess::Signal (int signal, const struct timespec *timeout_abstime) argument
435 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::Signal (signal = %d, timeout = %p)", signal, timeout_abstime);
440 if (IsRunning(state) && timeout_abstime)
442 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::Signal (signal = %d, timeout = %p) waiting for signal to stop process...", signal, timeout_abstime);
443 m_private_events.WaitForSetEvents(eEventProcessStoppedStateChanged, timeout_abstime);
445 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::Signal (signal = %d, timeout = %p) state = %s", signal, timeout_abstime, DNBStateAsString(state));
448 DNBLogThreadedIf(LOG_PROCESS, "MachProcess::Signal (signal = %d, timeout = %p) not waiting...", signal, timeout_abstime);

Completed in 149 milliseconds