Home
last modified time | relevance | path

Searched refs:timeout_ptr (Results 1 – 6 of 6) sorted by relevance

/freebsd-10-stable/contrib/llvm/tools/lldb/source/Utility/
DKQueue.cpp47 … const struct timespec *timeout_ptr = timeout.SetRelativeTimeoutMircoSeconds32 (timeout_usec); in WaitForEvents() local
48 int result = ::kevent(fd_kqueue, NULL, 0, events, num_events, timeout_ptr); in WaitForEvents()
/freebsd-10-stable/contrib/sendmail/libmilter/
Dengine.c613 sendreply(r, sd, timeout_ptr, ctx) in sendreply() argument
616 struct timeval *timeout_ptr;
659 ret = mi_wr_cmd(sd, timeout_ptr, SMFIR_CONTINUE, NULL, 0);
667 ret = mi_wr_cmd(sd, timeout_ptr, SMFIR_REPLYCODE,
675 ret = mi_wr_cmd(sd, timeout_ptr, r == SMFIS_REJECT ?
680 ret = mi_wr_cmd(sd, timeout_ptr, SMFIR_DISCARD, NULL, 0);
683 ret = mi_wr_cmd(sd, timeout_ptr, SMFIR_ACCEPT, NULL, 0);
686 ret = mi_wr_cmd(sd, timeout_ptr, SMFIR_SKIP, NULL, 0);
706 ret = mi_wr_cmd(sd, timeout_ptr, SMFIC_OPTNEG,
722 ret = mi_wr_cmd(sd, timeout_ptr, SMFIR_CONTINUE, NULL,
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunication.h253 WaitForNotRunningPrivate (const lldb_private::TimeValue *timeout_ptr);
DGDBRemoteCommunication.cpp282 GDBRemoteCommunication::WaitForNotRunningPrivate (const TimeValue *timeout_ptr) in WaitForNotRunningPrivate() argument
284 return m_private_is_running.WaitForValueEqualTo (false, timeout_ptr, NULL); in WaitForNotRunningPrivate()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Target/
DProcess.cpp5084 TimeValue* timeout_ptr = NULL; in RunThreadPlan() local
5232 timeout_ptr = &one_thread_timeout; in RunThreadPlan()
5236 timeout_ptr = NULL; in RunThreadPlan()
5238 timeout_ptr = &final_timeout; in RunThreadPlan()
5244 timeout_ptr = NULL; in RunThreadPlan()
5246 timeout_ptr = &final_timeout; in RunThreadPlan()
5257 if (timeout_ptr) in RunThreadPlan()
5261 timeout_ptr->GetAsMicroSecondsSinceJan1_1970()); in RunThreadPlan()
5269 got_event = listener.WaitForEvent (timeout_ptr, event_sp); in RunThreadPlan()
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Host/common/
DHost.cpp1592 TimeValue *timeout_ptr = nullptr; in RunShellCommand() local
1596 timeout_ptr = &timeout_time; in RunShellCommand()
1599 shell_info->process_reaped.WaitForValueEqualTo(true, timeout_ptr, &timed_out); in RunShellCommand()