/freebsd/contrib/ldns/ |
H A D | wire2host.c | 56 ldns_wire2dname(ldns_rdf **dname, const uint8_t *wire, size_t max, size_t *pos) in ldns_wire2dname() argument 72 label_size = wire[*pos]; in ldns_wire2dname() 86 pointer_target_buf[0] = wire[*pos] & 63; in ldns_wire2dname() 87 pointer_target_buf[1] = wire[*pos + 1]; in ldns_wire2dname() 98 label_size = wire[*pos]; in ldns_wire2dname() 121 memcpy(&tmp_dname[dname_pos], &wire[*pos], label_size); in ldns_wire2dname() 126 label_size = wire[*pos]; in ldns_wire2dname() 156 ldns_wire2rdf(ldns_rr *rr, const uint8_t *wire, size_t max, size_t *pos) in ldns_wire2rdf() argument 176 rd_length = ldns_read_uint16(&wire[*pos]); in ldns_wire2rdf() 198 status = ldns_wire2dname(&cur_rdf, wire, max, pos); in ldns_wire2rdf() [all …]
|
H A D | net.c | 724 uint8_t *wire, *wireout; local 727 wire = LDNS_XMALLOC(uint8_t, LDNS_MAX_PACKETLEN); 728 if (!wire) { 733 wire_size = recvfrom(sockfd, (void*)wire, LDNS_MAX_PACKETLEN, 0, 739 LDNS_FREE(wire); 744 wireout = LDNS_XREALLOC(wire, uint8_t, (size_t)wire_size); 745 if(!wireout) LDNS_FREE(wire); 753 uint8_t *wire; local 757 wire = LDNS_XMALLOC(uint8_t, 2); 758 if (!wire) { [all …]
|
H A D | tsig.c | 55 ldns_tsig_prepare_pkt_wire(const uint8_t *wire, size_t wire_len, size_t *result_len) in ldns_tsig_prepare_pkt_wire() argument 73 qd_count = LDNS_QDCOUNT(wire); in ldns_tsig_prepare_pkt_wire() 74 an_count = LDNS_ANCOUNT(wire); in ldns_tsig_prepare_pkt_wire() 75 ns_count = LDNS_NSCOUNT(wire); in ldns_tsig_prepare_pkt_wire() 76 ar_count = LDNS_ARCOUNT(wire); in ldns_tsig_prepare_pkt_wire() 87 status = ldns_wire2rr(&rr, wire, wire_len, &pos, LDNS_SECTION_QUESTION); in ldns_tsig_prepare_pkt_wire() 95 status = ldns_wire2rr(&rr, wire, wire_len, &pos, LDNS_SECTION_ANSWER); in ldns_tsig_prepare_pkt_wire() 103 status = ldns_wire2rr(&rr, wire, wire_len, &pos, LDNS_SECTION_AUTHORITY); in ldns_tsig_prepare_pkt_wire() 111 status = ldns_wire2rr(&rr, wire, wire_len, &pos, in ldns_tsig_prepare_pkt_wire() 124 memcpy(wire2, wire, *result_len); in ldns_tsig_prepare_pkt_wire() [all …]
|
/freebsd/contrib/ldns/drill/ |
H A D | work.c | 68 packetbuffromfile(char *filename, uint8_t *wire) in packetbuffromfile() argument 155 wire, in packetbuffromfile() 159 memcpy(wire, hexbuf, (size_t) hexbufpos); in packetbuffromfile() 172 uint8_t *wire; in read_hex_buffer() local 177 wire = xmalloc(LDNS_MAX_PACKETLEN); in read_hex_buffer() 179 wiresize = packetbuffromfile(filename, wire); in read_hex_buffer() 182 ldns_buffer_new_frm_data(result_buffer, wire, wiresize); in read_hex_buffer() 184 xfree(wire); in read_hex_buffer() 192 uint8_t *wire; in read_hex_pkt() local 199 wire = xmalloc(LDNS_MAX_PACKETLEN); in read_hex_pkt() [all …]
|
/freebsd/sys/dev/ow/ |
H A D | README.txt | 1 Quick Design Document for 1-wire bus 3 In new bus terms, 1-wire devices are attached to 1-wire buses (ow) 4 which are attached to a one wire bridge (owc). 7 Application note which defines the 1-wire bus as implemented for the 9 the 1-wire bus. This means that the 1-wire bridge will implement the 10 owll(9) interface. ow is one wire. ll is for Link Level to mirror the ISO 11 stack terminology used by AN927. The 1-wire bus is implemented in the ow(4)
|
/freebsd/libexec/getty/ |
H A D | gettytab | 220 # Entries for 3-wire serial terminals. These don't supply carrier, so 223 3wire:\ 225 3wire.9600|9600-3wire:\ 227 3wire.19200|19200-3wire:\ 229 3wire.38400|38400-3wire:\ 231 3wire.57600|57600-3wire:\ 233 3wire.115200|115200-3wire:\ 235 3wire.230400|230400-3wire:\
|
/freebsd/sbin/init/ |
H A D | ttys | 40 ttyu0 "/usr/libexec/getty 3wire" vt100 onifconsole secure 41 ttyu1 "/usr/libexec/getty 3wire" vt100 onifconsole secure 42 ttyu2 "/usr/libexec/getty 3wire" vt100 onifconsole secure 43 ttyu3 "/usr/libexec/getty 3wire" vt100 onifconsole secure
|
/freebsd/sys/contrib/device-tree/Bindings/spi/ |
H A D | icpdas-lp8841-spi-rtc.txt | 28 - spi-3wire: The master itself has only 3 wire. It cannor work in 50 spi-3wire;
|
/freebsd/contrib/ldns/ldns/ |
H A D | wire2host.h | 152 ldns_status ldns_wire2dname(ldns_rdf **dname, const uint8_t *wire, size_t max, size_t *pos); 171 ldns_status ldns_wire2rdf(ldns_rr *rr, const uint8_t *wire, size_t max, size_t *pos); 188 ldns_status ldns_wire2rr(ldns_rr **rr, const uint8_t *wire, size_t max, size_t *pos, ldns_pkt_secti…
|
H A D | tsig.h | 51 bool ldns_pkt_tsig_verify(ldns_pkt *pkt, const uint8_t *wire, size_t wire_size, const char *key_nam… 66 bool ldns_pkt_tsig_verify_next(ldns_pkt *pkt, const uint8_t *wire, size_t wire_size, const char *ke…
|
/freebsd/sys/contrib/device-tree/Bindings/w1/ |
H A D | omap-hdq.txt | 1 * OMAP HDQ One wire bus master controller 10 - ti,mode: should be "hdq": HDQ mode "1w": one-wire mode.
|
/freebsd/sys/contrib/device-tree/Bindings/display/ |
H A D | multi-inno,mi0283qt.txt | 12 - present: IM=x110 4-wire 8-bit data serial interface 13 - absent: IM=x101 3-wire 9-bit data serial interface
|
/freebsd/crypto/openssl/ssl/statem/ |
H A D | statem_dtls.c | 804 unsigned char wire[DTLS1_HM_HEADER_LENGTH]; in dtls_get_reassembled_message() local 827 i = s->method->ssl_read_bytes(s, SSL3_RT_HANDSHAKE, &recvd_type, wire, in dtls_get_reassembled_message() 835 if (wire[0] != SSL3_MT_CCS) { in dtls_get_reassembled_message() 841 memcpy(s->init_buf->data, wire, readbytes); in dtls_get_reassembled_message() 857 dtls1_get_message_header(wire, &msg_hdr); in dtls_get_reassembled_message() 882 || wire[0] != SSL3_MT_CLIENT_HELLO in dtls_get_reassembled_message() 903 && wire[0] == SSL3_MT_HELLO_REQUEST) { in dtls_get_reassembled_message() 909 if (wire[1] == 0 && wire[2] == 0 && wire[3] == 0) { in dtls_get_reassembled_message() 912 wire, DTLS1_HM_HEADER_LENGTH, s, in dtls_get_reassembled_message()
|
/freebsd/sys/contrib/device-tree/Bindings/rtc/ |
H A D | maxim-ds1302.txt | 22 - spi-3wire : The device has a shared signal IN/OUT line. 42 spi-3wire;
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | o2i_SCT_LIST.pod | 6 decode and encode Signed Certificate Timestamp lists in TLS wire format 21 functions, except that they convert to and from TLS wire format, as described in
|
H A D | SSL_get_ciphers.pod | 54 as a wire-protocol cipher suite specification (in the three-octet-per-cipher 55 SSLv2 wire format if B<isv2format> is nonzero; otherwise the two-octet 56 SSLv3/TLS wire format), and parses the cipher suites supported by the library
|
/freebsd/sys/contrib/device-tree/Bindings/power/supply/ |
H A D | bq24190.txt | 31 - Some circuit boards wire the chip's "OTG" pin high (enabling 500mA default 33 boards that wire the pin to a GPIO, set a gpio-hog.
|
/freebsd/sys/contrib/device-tree/Bindings/input/touchscreen/ |
H A D | ti-tsc-adc.txt | 11 ti,wires: Wires refer to application modes i.e. 4/5/8 wire touchscreen 23 ti,wire-config: Different boards could have a different order for 81 ti,wire-config = <0x00 0x11 0x22 0x33>;
|
/freebsd/tools/test/stress2/misc/ |
H A D | mmap14.sh | 56 wire=$((`sysctl -n vm.max_user_wired` - \ 59 /tmp/mmap14 $wire
|
/freebsd/sys/arm/conf/ |
H A D | GENERIC.hints | 2 # Use to wire devices in the system to specific driver instances
|
/freebsd/sys/arm64/conf/ |
H A D | GENERIC.hints | 2 # Use to wire devices in the system to specific driver instances
|
/freebsd/sys/riscv/conf/ |
H A D | GENERIC.hints | 2 # Use to wire devices in the system to specific driver instances
|
/freebsd/sys/contrib/device-tree/src/arm64/mediatek/ |
H A D | mt8186-corsola-steelix-sku131072.dts | 17 mediatek,dmic-mode = <0>; /* two-wire */
|
H A D | mt8186-corsola-steelix-sku131073.dts | 17 mediatek,dmic-mode = <1>; /* one-wire */
|
H A D | mt8183-kukui-jacuzzi-kappa.dts | 17 mediatek,dmic-mode = <1>; /* one-wire */
|