Home
last modified time | relevance | path

Searched refs:timeout_time (Results 1 – 7 of 7) sorted by relevance

/NextBSD/sys/contrib/octeon-sdk/
HDcvmx-spi.c440 uint64_t timeout_time; in cvmx_spi_clock_detect_cb() local
446 timeout_time = cvmx_get_cycle() + 1000ull * MS * timeout; in cvmx_spi_clock_detect_cb()
462 if (cvmx_get_cycle() > timeout_time) in cvmx_spi_clock_detect_cb()
470 timeout_time = cvmx_get_cycle() + 1000ull * MS * timeout; in cvmx_spi_clock_detect_cb()
486 if (cvmx_get_cycle() > timeout_time) in cvmx_spi_clock_detect_cb()
513 uint64_t timeout_time = cvmx_get_cycle() + 1000ull * MS * timeout; in cvmx_spi_training_cb() local
540 timeout_time = cvmx_get_cycle() + 1000ull * MS * 600; /* Wait a really long time here */ in cvmx_spi_training_cb()
542 timeout_time = cvmx_get_cycle() + 1000ull * MS * 10; in cvmx_spi_training_cb()
555 if (cvmx_get_cycle() > timeout_time) in cvmx_spi_training_cb()
595 uint64_t timeout_time; in cvmx_spi_calendar_sync_cb() local
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Core/
HDCommunication.cpp167 TimeValue timeout_time; in Read() local
170 timeout_time = TimeValue::Now(); in Read()
171 timeout_time.OffsetWithMicroSeconds (timeout_usec); in Read()
177 while (listener.WaitForEvent (timeout_time.IsValid() ? &timeout_time : NULL, event_sp)) in Read()
/NextBSD/contrib/llvm/tools/lldb/source/Host/common/
HDHost.cpp635 TimeValue timeout_time(TimeValue::Now()); in RunShellCommand() local
637 timeout_time.OffsetWithSeconds(timeout_sec); in RunShellCommand()
638 timeout_ptr = &timeout_time; in RunShellCommand()
649 timeout_time = TimeValue::Now(); in RunShellCommand()
650 timeout_time.OffsetWithSeconds(1); in RunShellCommand()
652 shell_info->process_reaped.WaitForValueEqualTo(true, &timeout_time, &timed_out); in RunShellCommand()
/NextBSD/contrib/wpa/src/wps/
HDwps_upnp_i.h82 time_t timeout_time; /* when to age out the subscription */ member
HDwps_upnp.c558 if (s->timeout_time > now) in subscription_list_age()
722 s->timeout_time = expire; in subscription_start()
768 s->timeout_time = expire; in subscription_renew()
/NextBSD/contrib/llvm/tools/lldb/source/Target/
HDProcess.cpp3202 TimeValue timeout_time; in Launch() local
3203 timeout_time = TimeValue::Now(); in Launch()
3204 timeout_time.OffsetWithSeconds(10); in Launch()
3205 StateType state = WaitForProcessStopPrivate(&timeout_time, event_sp); in Launch()
3856 TimeValue timeout_time; in Halt() local
3857 timeout_time = TimeValue::Now(); in Halt()
3858 timeout_time.OffsetWithSeconds(10); in Halt()
3859 bool got_event = halt_listener.WaitForEvent (&timeout_time, event_sp); in Halt()
4382 TimeValue timeout_time; in ControlPrivateStateThread() local
4387 timeout_time = TimeValue::Now(); in ControlPrivateStateThread()
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
HDGDBRemoteCommunicationClient.cpp812 TimeValue timeout_time; in SendPacketAndWaitForResponse() local
813 timeout_time = TimeValue::Now(); in SendPacketAndWaitForResponse()
814 timeout_time.OffsetWithSeconds (m_packet_timeout); in SendPacketAndWaitForResponse()
819 … if (m_async_packet_predicate.WaitForValueEqualTo (false, &timeout_time, &timed_out)) in SendPacketAndWaitForResponse()
835 … if (m_private_is_running.WaitForValueEqualTo (true, &timeout_time, &timed_out)) in SendPacketAndWaitForResponse()