Lines Matching full:timeout

36 static inline int32_t timeout_to_int32(k_timeout_t timeout)  in timeout_to_int32()  argument
38 if (K_TIMEOUT_EQ(timeout, K_NO_WAIT)) { in timeout_to_int32()
40 } else if (K_TIMEOUT_EQ(timeout, K_FOREVER)) { in timeout_to_int32()
43 return k_ticks_to_ms_floor32(timeout.ticks); in timeout_to_int32()
82 int32_t timeout,
91 int32_t timeout,
99 int32_t timeout,
109 int32_t timeout,
118 int32_t timeout,
211 * is executed. cb is called even if the timeout was set to
212 * K_FOREVER. cb is not called if the timeout expires.
223 * @param timeout The timeout value for the connection. Possible values:
239 k_timeout_t timeout, in net_offload_connect() argument
248 timeout_to_int32(timeout), in net_offload_connect()
256 * will return immediately if the timeout is set to K_NO_WAIT.
260 * If the timeout is set to K_FOREVER, the function will wait
261 * until the connection is established. Timeout value > 0, will wait as
264 * The callback is called even if timeout was set to K_FOREVER, the
266 * The callback is not called if the timeout expires.
273 * @param timeout Timeout for the connection. Possible values
282 k_timeout_t timeout, in net_offload_accept() argument
291 timeout_to_int32(timeout), in net_offload_accept()
299 * connection. This function will return immediately if the timeout
300 * is set to K_NO_WAIT. If the timeout is set to K_FOREVER, the function
301 * will wait until the network packet is sent. Timeout value > 0 will
304 * if timeout was set to K_FOREVER, the callback is called
306 * called if the timeout expires. For context of type SOCK_DGRAM,
315 * @param timeout Timeout for the connection. Possible values
324 k_timeout_t timeout, in net_offload_send() argument
333 timeout_to_int32(timeout), in net_offload_send()
343 * if the timeout is set to K_NO_WAIT. If the timeout is set to K_FOREVER,
344 * the function will wait until the network packet is sent. Timeout
347 * even if timeout was set to K_FOREVER, the callback is called
349 * timeout expires.
359 * @param timeout Timeout for the connection. Possible values
370 k_timeout_t timeout, in net_offload_sendto() argument
379 timeout_to_int32(timeout), in net_offload_sendto()
389 * is no need to call this function multiple times if timeout is set to
393 * This function will return immediately if the timeout is set to K_NO_WAIT.
394 * If the timeout is set to K_FOREVER, the function will wait until the
395 * network packet is received. Timeout value > 0 will wait as many ms.
397 * called. The callback is called even if timeout was set to K_FOREVER,
399 * The callback is not called if the timeout expires. The timeout functionality
402 * used. If CONFIG_NET_CONTEXT_SYNC_RECV is not set, then the timeout parameter
410 * @param timeout Caller-supplied timeout. Possible values
419 k_timeout_t timeout, in net_offload_recv() argument
428 timeout_to_int32(timeout), in net_offload_recv()
488 k_timeout_t timeout,
497 k_timeout_t timeout,
506 k_timeout_t timeout,
517 k_timeout_t timeout,
526 k_timeout_t timeout,