Home
last modified time | relevance | path

Searched full:wire (Results 1 – 25 of 794) sorted by relevance

12345678910>>...32

/freebsd/contrib/ldns/
H A Dwire2host.c4 * conversion routines from the wire to the host
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()
[all …]
H A Dnet.c724 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 Dtsig.c52 * Makes an exact copy of the wire, but with the tsig rr removed
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
72 /* fake parse the wire */ in ldns_tsig_prepare_pkt_wire()
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()
[all …]
/freebsd/contrib/ldns/drill/
H A Dwork.c68 packetbuffromfile(char *filename, uint8_t *wire) in packetbuffromfile() argument
137 verbose("Not printing wire because it contains non ascii data\n"); in packetbuffromfile()
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
[all …]
/freebsd/sys/dev/ow/
H A DREADME.txt1 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/sys/contrib/device-tree/Bindings/w1/
H A Dw1-uart.yaml7 title: UART 1-Wire Bus
13 UART 1-wire bus. Utilizes the UART interface via the Serial Device Bus
14 to create the 1-Wire timing patterns.
18 baud-rate and transmitted byte, which corresponds to a 1-Wire read bit,
22 a 1-Wire read or write operation 115200. In case the actual baud-rate
24 to generate the 1-Wire timing patterns.
26 https://www.analog.com/en/technical-articles/using-a-uart-to-implement-a-1wire-bus-master.html
35 The baud rate for the 1-Wire reset and presence detect.
40 The baud rate for the 1-Wire write-0 cycle.
45 The baud rate for the 1-Wire write-1 and read cycle.
/freebsd/share/man/man4/
H A Dow_temp.431 .Nd Dallas Semiconductor 1-Wire Temperature sensor
37 module supports many of the 1-Wire temperature sensors.
47 .Bl -column "DS18S20" "Econo 1-Wire Digital Thermometer" -compact
48 .It DS1820 Ta 1-Wire Digital Thermometer
49 .It DS18S20 Ta High-Precision 1-Wire Digital Thermometer
50 .It DS18B20 Ta Programmable Resolution 1-Wire Digital Thermometer
51 .It DS1822 Ta Econo 1-Wire Digital Thermometer
52 .It DS1825 Ta Programmable Resolution 1-Wire Digital Thermometer with 4-bit ID
53 .It MAX31820 Ta 1-Wire, Parasite-Power, Ambient Temperature Sensor
105 .Tn 1-Wire
[all …]
H A Dowc.429 .Nd Dallas Semiconductor 1-Wire Controller
35 module implements Dallas Semiconductor 1-Wire signaling.
38 driver 1-Wire bus protocol.
41 device implements the Link Layer of the 1-Wire bus protocol stack.
50 To enable 1-Wire for FDT systems requires modifying the DTS for your
63 The gpios property describes the GPIO pin the 1-Wire bus is connected
82 that is to be used for the 1-Wire bus.
94 .Tn 1-Wire
H A Dow.429 .Nd Dallas Semiconductor 1-Wire bus
35 module implements the Dallas Semiconductor 1-Wire bus.
39 1-Wire bus.
46 .Tn 1-Wire
/freebsd/contrib/ldns/ldns/
H A Dhost2wire.h2 * host2wire.h - 2wire conversion routines
14 * Contains all functions to translate the main structures to wire format
35 * Copies the dname data to the buffer in wire format
43 * Copies the dname data to the buffer in wire format
52 * Copies the rdata data to the buffer in wire format
60 * Copies the rdata data to the buffer in wire format
69 * Copies the rdata data to the buffer in wire format
80 * Copies the rr data to the buffer in wire format
92 * Copies the rr data to the buffer in wire format while doing DNAME compression
106 * Copies the rr data to the buffer in wire format, in canonical format
[all …]
H A Dwire2host.h2 * wire2host.h - from wire conversion routines
14 * Contains functions that translate dns data from the wire format (as sent
117 * converts the data on the uint8_t bytearray (in wire format) to a DNS packet.
129 * converts the data in the ldns_buffer (in wire format) to a DNS packet.
140 * converts the data on the uint8_t bytearray (in wire format) to a DNS
146 * \param[in] wire pointer to the buffer with the data
152 ldns_status ldns_wire2dname(ldns_rdf **dname, const uint8_t *wire, size_t max, size_t *pos);
155 * converts the data on the uint8_t bytearray (in wire format) to DNS
165 * \param[in] wire pointer to the buffer with the data
171 ldns_status ldns_wire2rdf(ldns_rr *rr, const uint8_t *wire, size_t max, size_t *pos);
[all …]
H A Dtsig.h42 * The wire must be given too because tsig does not sign normalized packets.
44 * \param[in] wire needed to verify the mac
45 * \param[in] wire_size size of wire
51 bool ldns_pkt_tsig_verify(ldns_pkt *pkt, const uint8_t *wire, size_t wire_size, const char *key_nam…
55 * The wire must be given too because tsig does not sign normalized packets.
57 * \param[in] wire needed to verify the mac
58 * \param[in] wire_size size of wire
66 bool ldns_pkt_tsig_verify_next(ldns_pkt *pkt, const uint8_t *wire, size_t wire_size, const char *ke…
/freebsd/share/man/man9/
H A Down.939 .Nd Dallas Semiconductor 1-Wire Network and Transport Interface
66 interface defines three sets of functions for interacting with 1-Wire
79 The 1-Wire bus defines different layers of access to the devices on
139 acquires the 1-Wire bus, waiting if necessary,
149 argument describes the transaction to send to the 1-Wire bus.
160 The 1-Wire system includes an advisory lock for the bus that
180 computes the 1-Wire standard CRC function over the data
187 The 1-Wire standard (Maxim AN937) defines layers that are akin to ISO
195 actions used to control the specific 1-Wire devices on bus.
216 .Tn 1-Wire
H A Dowll.933 .Nd Dallas Semiconductor 1-Wire Link Layer Interface
47 Semiconductor 1-Wire from upper layers of the protocol.
52 writes a one bit or a zero bit respectively on the 1-Wire bus.
55 reads one bit from the 1-Wire bus.
58 in the 1-Wire device data sheets.
64 This is the beginning of all 1-Wire transactions.
79 .Tn 1-Wire
/freebsd/libexec/getty/
H A Dgettytab220 # 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/sys/contrib/device-tree/Bindings/iio/temperature/
H A Dmaxim,max31865.yaml22 maxim,3-wire:
25 enables 3-wire RTD connection. Else 2-wire or 4-wire RTD connection.
51 maxim,3-wire;
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dintel,ce4100-lapic.yaml42 intel,virtual-wire-mode:
47 Virtual Wire Mode - use lapic as virtual wire interrupt delivery mode.
52 mode is configured to virtual wire compatibility mode.
70 intel,virtual-wire-mode;
H A Darm,gic-v5-iwb.yaml7 title: ARM Generic Interrupt Controller, version 5 Interrupt Wire Bridge (IWB)
20 GICv5 has zero or more Interrupt Wire Bridges (IWB) that are responsible
21 for translating wire signals into interrupt messages to the GICv5 ITS.
39 The 1st cell corresponds to the IWB wire.
/freebsd/sys/contrib/device-tree/Bindings/display/panel/
H A Dtpo,tpg110.yaml17 and other properties, and has a control interface over 3WIRE
39 protocol is not I2C but 3WIRE SPI.
62 spi-3wire: true
73 - spi-3wire
88 spi-3wire;
/freebsd/sbin/init/
H A Dttys40 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/input/touchscreen/
H A Dti,am3359-tsc.yaml17 description: Wires refer to application modes i.e. 4/5/8 wire touchscreen
36 ti,wire-config:
63 - ti,wire-config
74 ti,wire-config = <0x00 0x11 0x22 0x33>;
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Dawinic,aw8738.yaml14 (set using one-wire pulse control). The mode configures the speaker-guard
26 GPIO used for one-wire pulse control. The pin is typically called SHDN
32 description: Operation mode (number of pulses for one-wire pulse control)
/freebsd/sys/contrib/device-tree/Bindings/spi/
H A Dicpdas-lp8841-spi-rtc.txt28 - spi-3wire: The master itself has only 3 wire. It cannor work in
50 spi-3wire;
/freebsd/sys/contrib/device-tree/Bindings/iio/adc/
H A Dadi,ad7944.yaml46 the datasheet calls "4-wire mode". This is the conventional SPI mode used
54 * single: The datasheet calls this "3-wire mode". (NOTE: The datasheet's
55 definition of 3-wire mode is NOT at all related to the standard
56 spi-3wire property!) This mode is often used when the ADC is the only
154 # in '4-wire' mode, cnv-gpios is required, for other modes it is optional
/freebsd/share/misc/
H A Dpci_vendors19650 4001 T420-CR Unified Wire Ethernet Controller
19651 4002 T422-CR Unified Wire Ethernet Controller
19652 4003 T440-CR Unified Wire Ethernet Controller
19653 4004 T420-BCH Unified Wire Ethernet Controller
19654 4005 T440-BCH Unified Wire Ethernet Controller
19655 4006 T440-CH Unified Wire Ethernet Controller
19656 4007 T420-SO Unified Wire Ethernet Controller
19657 4008 T420-CX Unified Wire Ethernet Controller
19658 4009 T420-BT Unified Wire Ethernet Controller
19659 400a T404-BT Unified Wire Ethernet Controller
[all …]

12345678910>>...32