Home
last modified time | relevance | path

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

/Zephyr-Core-3.5.0/subsys/net/lib/dns/
Ddns_pack.h299 static inline int dns_answer_type(uint16_t dname_size, uint8_t *answer) in dns_answer_type() argument
302 return ntohs(UNALIGNED_GET((uint16_t *)(answer + dname_size + 0))); in dns_answer_type()
305 static inline int dns_answer_class(uint16_t dname_size, uint8_t *answer) in dns_answer_class() argument
308 return ntohs(UNALIGNED_GET((uint16_t *)(answer + dname_size + 2))); in dns_answer_class()
311 static inline int dns_answer_ttl(uint16_t dname_size, uint8_t *answer) in dns_answer_ttl() argument
313 return ntohl(UNALIGNED_GET((uint32_t *)(answer + dname_size + 4))); in dns_answer_ttl()
317 uint8_t *answer) in dns_answer_rdlength() argument
319 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-Core-3.5.0/drivers/interrupt_controller/
DKconfig.shared_irq12 support is NOT required in most systems. If in doubt answer no.
/Zephyr-Core-3.5.0/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-Core-3.5.0/doc/connectivity/bluetooth/api/shell/
Dccp.rst189 remote_answer :Simulate remote answer outgoing call <call_index>
/Zephyr-Core-3.5.0/doc/build/dts/
Dphandles.rst192 enforced. To answer this question, we'll need to introduce a concept called
/Zephyr-Core-3.5.0/doc/project/
Ddev_env_and_tools.rst239 gets the wrong answer.
/Zephyr-Core-3.5.0/doc/develop/getting_started/
Dindex.rst757 question may have an answer there.
/Zephyr-Core-3.5.0/subsys/bluetooth/mesh/
DKconfig813 Since there is no single optimal answer, this configuration
/Zephyr-Core-3.5.0/doc/releases/
Drelease-notes-2.7.rst1145 * :github:`38527` - lwm2m: re-register instead of removing observer on COAP reset answer to notific…