Home
last modified time | relevance | path

Searched refs:answer (Results 1 – 11 of 11) sorted by relevance

/Zephyr-latest/subsys/net/lib/dns/
Ddns_pack.h300 static inline int dns_answer_type(uint16_t dname_size, uint8_t *answer) in dns_answer_type() argument
303 return ntohs(UNALIGNED_GET((uint16_t *)(answer + dname_size + 0))); in dns_answer_type()
306 static inline int dns_answer_class(uint16_t dname_size, uint8_t *answer) in dns_answer_class() argument
309 return ntohs(UNALIGNED_GET((uint16_t *)(answer + dname_size + 2))); in dns_answer_class()
312 static inline int dns_answer_ttl(uint16_t dname_size, uint8_t *answer) in dns_answer_ttl() argument
314 return ntohl(UNALIGNED_GET((uint32_t *)(answer + dname_size + 4))); in dns_answer_ttl()
318 uint8_t *answer) in dns_answer_rdlength() argument
320 return ntohs(UNALIGNED_GET((uint16_t *)(answer + dname_size + 8))); in dns_answer_rdlength()
Ddns_pack.c81 static int skip_fqdn(uint8_t *answer, int buf_sz) in skip_fqdn() argument
90 if (answer[i] == 0) { in skip_fqdn()
93 } else if (answer[i] >= 0xc0) { in skip_fqdn()
99 } else if (answer[i] < DNS_LABEL_MAX_SIZE) { in skip_fqdn()
100 i += answer[i] + 1; in skip_fqdn()
116 uint8_t *answer; in dns_unpack_answer() local
118 answer = dns_msg->msg + dns_msg->answer_offset; in dns_unpack_answer()
120 dname_len = skip_fqdn(answer, in dns_unpack_answer()
145 if ((dns_answer_class(dname_len, answer) & in dns_unpack_answer()
152 *ttl = dns_answer_ttl(dname_len, answer); in dns_unpack_answer()
[all …]
/Zephyr-latest/drivers/interrupt_controller/
DKconfig.shared_irq12 support is NOT required in most systems. If in doubt answer no.
/Zephyr-latest/drivers/watchdog/
Dwdt_nxp_fs26.c283 uint16_t answer; in fs26_wd_refresh() local
302 answer = fs26_wd_compute_answer(data->token); in fs26_wd_refresh()
303 if (fs26_setreg(&config->spi, FS26_FS_WD_ANSWER, answer)) { in fs26_wd_refresh()
/Zephyr-latest/doc/connectivity/bluetooth/shell/audio/
Dccp.rst191 remote_answer :Simulate remote answer outgoing call <call_index>
/Zephyr-latest/doc/build/dts/
Dphandles.rst192 enforced. To answer this question, we'll need to introduce a concept called
/Zephyr-latest/doc/develop/getting_started/
Dindex.rst584 question may have an answer there.
/Zephyr-latest/doc/project/
Ddev_env_and_tools.rst242 gets the wrong answer.
/Zephyr-latest/doc/contribute/documentation/
Dguidelines.rst412 The answer to life, the universe, and everything is :math:`30 + 2^2 + \sqrt{64} = 42`.
416 The answer to life, the universe, and everything is :math:`30 + 2^2 + \sqrt{64} = 42`.
/Zephyr-latest/subsys/bluetooth/mesh/
DKconfig1577 Since there is no single optimal answer, this configuration
/Zephyr-latest/doc/releases/
Drelease-notes-2.7.rst1145 * :github:`38527` - lwm2m: re-register instead of removing observer on COAP reset answer to notific…