Searched refs:timeout_usec (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBCommunication.cpp | 104 size_t SBCommunication::Read(void *dst, size_t dst_len, uint32_t timeout_usec, in Read() argument 106 LLDB_INSTRUMENT_VA(this, dst, dst_len, timeout_usec, status); in Read() 109 Timeout<std::micro> timeout = timeout_usec == UINT32_MAX in Read() 111 : std::chrono::microseconds(timeout_usec); in Read()
|
/freebsd/sys/dev/ocs_fc/ |
H A D | ocs_os.h | 733 ocs_sem_p(ocs_sem_t *sem, int timeout_usec) in ocs_sem_p() argument 737 if (timeout_usec == 0) { in ocs_sem_p() 742 } else if (timeout_usec > 0) { in ocs_sem_p() 746 tv.tv_sec = timeout_usec / 1000000; in ocs_sem_p() 747 tv.tv_usec = timeout_usec % 1000000; in ocs_sem_p()
|
H A D | ocs_utils.h | 72 extern void *ocs_cbuf_get(ocs_cbuf_t *cbuf, int32_t timeout_usec);
|
H A D | ocs_utils.c | 501 ocs_cbuf_get(ocs_cbuf_t *cbuf, int32_t timeout_usec) in ocs_cbuf_get() argument 505 if (likely(ocs_sem_p(&cbuf->cbuf_csem, timeout_usec) == 0)) { in ocs_cbuf_get()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBCommunication.h | 60 size_t Read(void *dst, size_t dst_len, uint32_t timeout_usec,
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | events.c | 1874 int timeout_sec, int timeout_usec) in wpa_supplicant_req_new_scan() argument 1889 wpa_supplicant_req_scan(wpa_s, timeout_sec, timeout_usec); in wpa_supplicant_req_new_scan() 2731 int timeout_usec = 0; in wpas_select_network_from_last_scan() local 2753 timeout_usec = 250000; in wpas_select_network_from_last_scan() 2755 timeout_usec); in wpas_select_network_from_last_scan() 2776 timeout_usec = 500000; in wpas_select_network_from_last_scan() 2778 timeout_usec); in wpas_select_network_from_last_scan() 2787 timeout_usec = 500000; in wpas_select_network_from_last_scan() 2793 timeout_usec = 100000; in wpas_select_network_from_last_scan() 2796 timeout_usec); in wpas_select_network_from_last_scan() [all …]
|