Lines Matching +full:poll +full:- +full:timeout +full:- +full:ms

10  * SPDX-License-Identifier: Apache-2.0
51 #define DNS_BUF_TIMEOUT K_MSEC(500) /* ms */
141 /** How many sockets the dispatcher is able to poll. */
199 /** Socket descriptors to poll */
201 /** Length of the poll array */
213 /** Buffer allocation timeout */
267 DNS_EAI_BADFLAGS = -1,
269 DNS_EAI_NONAME = -2,
271 DNS_EAI_AGAIN = -3,
272 /** Non-recoverable failure in name res */
273 DNS_EAI_FAIL = -4,
275 DNS_EAI_NODATA = -5,
277 DNS_EAI_FAMILY = -6,
279 DNS_EAI_SOCKTYPE = -7,
281 DNS_EAI_SERVICE = -8,
283 DNS_EAI_ADDRFAMILY = -9,
285 DNS_EAI_MEMORY = -10,
287 DNS_EAI_SYSTEM = -11,
289 DNS_EAI_OVERFLOW = -12,
291 DNS_EAI_INPROGRESS = -100,
293 DNS_EAI_CANCELED = -101,
295 DNS_EAI_NOTCANCELED = -102,
297 DNS_EAI_ALLDONE = -103,
299 DNS_EAI_IDN_ENCODE = -105,
314 * DNS_EAI_CANCELED if the query was canceled manually or timeout happened
372 /** This timeout is also used when a buffer is required from the
384 /** Timeout timer */
387 /** Back pointer to ctx, needed in timeout handler */
399 /** TX timeout */
400 k_timeout_t timeout; member
404 * This is set to a non-null value when the query is started,
544 * and system will call the callback after resolving has finished or timeout
556 * @param cb Callback to call after the resolving has finished or timeout
559 * @param timeout The timeout value for the query. Possible values:
562 * >0: start the query and let the system timeout it after specified ms
572 int32_t timeout);
591 * and system will call the callback after resolving has finished or timeout
603 * @param cb Callback to call after the resolving has finished or timeout
606 * @param timeout The timeout value for the connection. Possible values:
609 * >0: start the query and let the system timeout it after specified ms
618 int32_t timeout) in dns_get_addr_info() argument
626 timeout); in dns_get_addr_info()