| /freebsd-12-stable/sys/dev/scc/ |
| D | scc_if.m | 36 # The SCC hardware interface. The core SCC code is hardware independent. 37 # The details of the hardware are abstracted by the SCC hardware interface. 50 # attach() - attach hardware. 52 # have been allocated. The intend of this method is to setup the hardware 54 # The reset parameter informs the hardware driver whether a full device 56 # be used as system console and a hardware reset would disrupt output. 80 # service them on an interrupt priority basis. If the hardware cannot provide 87 # probe() - detect hardware. 89 # hardware exists. This function should also set the device description 90 # to something that represents the hardware.
|
| /freebsd-12-stable/sbin/dhclient/ |
| D | parse.c | 160 parse_hardware_param(FILE *cfile, struct hardware *hardware) in parse_hardware_param() argument 170 hardware->htype = HTYPE_ETHER; in parse_hardware_param() 173 hardware->htype = HTYPE_IEEE802; in parse_hardware_param() 176 hardware->htype = HTYPE_FDDI; in parse_hardware_param() 197 if (hlen > sizeof(hardware->haddr)) { in parse_hardware_param() 201 hardware->hlen = hlen; in parse_hardware_param() 202 memcpy((unsigned char *)&hardware->haddr[0], t, in parse_hardware_param() 203 hardware->hlen); in parse_hardware_param() 204 if (hlen < sizeof(hardware->haddr)) in parse_hardware_param() 205 memset(&hardware->haddr[hlen], 0, in parse_hardware_param() [all …]
|
| D | dhcpd.h | 115 struct hardware *haddr; 119 struct hardware { struct 202 struct hardware hw_address; 265 int, unsigned int, struct iaddr, struct hardware *); 291 void parse_hardware_param(FILE *, struct hardware *); 315 struct sockaddr_in *, struct hardware *); 319 struct dhcp_packet *, int, unsigned int, struct iaddr, struct hardware *); 425 ssize_t decode_hw_header(unsigned char *, int, struct hardware *);
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Breakpoint/ |
| D | StoppointSite.cpp | 15 StoppointSite::StoppointSite(break_id_t id, addr_t addr, bool hardware) in StoppointSite() argument 16 : m_id(id), m_addr(addr), m_is_hardware_required(hardware), in StoppointSite() 20 uint32_t byte_size, bool hardware) in StoppointSite() argument 21 : m_id(id), m_addr(addr), m_is_hardware_required(hardware), in StoppointSite()
|
| D | Watchpoint.cpp | 27 const CompilerType *type, bool hardware) in Watchpoint() argument 28 : StoppointSite(0, addr, size, hardware), m_target(target), in Watchpoint() 29 m_enabled(false), m_is_hardware(hardware), m_is_watch_variable(false), in Watchpoint()
|
| /freebsd-12-stable/sys/dev/uart/ |
| D | uart_if.m | 37 # The UART hardware interface. The core UART code is hardware independent. 38 # The details of the hardware are abstracted by the UART hardware interface. 42 # attach() - attach hardware. 46 # The intend of this method is to setup the hardware for normal operation. 51 # detach() - detach hardware. 55 # The intend of this method is to disable the hardware. 72 # by the hardware driver are cleared as a side-effect. A second call to 95 # service them on an interrupt priority basis. If the hardware cannot provide 112 # probe() - detect hardware. 114 # hardware exists. This function should also set the device description [all …]
|
| /freebsd-12-stable/contrib/ngatm/snmp_atm/ |
| D | BEGEMOT-ATM.txt | 89 "This table contains an entry for each hardware ATM 98 "This is a table entry describing one ATM hardware interface." 190 "The default End System Identifier as reported by the hardware. 191 If the hardware has no ESI all six bytes are reported as 0." 224 -- Interface hardware table 232 for each hardware ATM interface. The entries describe the 233 ATM hardware interface." 241 "This is a table entry describing one ATM hardware interface." 283 "The hardware version of the interface card or 0 if it doesn't 284 report a hardware version number."
|
| /freebsd-12-stable/sys/dev/bhnd/bhndb/ |
| D | bhndb_bus_if.m | 78 * Return a generic hardware configuration to be used by 106 * Return the hardware specification table to be used when identifying the 107 * bridge's full hardware configuration. 118 * Return the hardware priority table to be used when allocating bridge 130 * Return true if the hardware required by @p core is unpopulated or 133 * In some cases, the core's pins may be left floating, or the hardware
|
| /freebsd-12-stable/contrib/gcc/config/sparc/ |
| D | sparc.opt | 24 Use hardware FP 28 Use hardware FP 32 Do not use hardware FP 48 Use hardware quad FP instructions 52 Do not use hardware quad fp instructions
|
| /freebsd-12-stable/sys/dev/bhnd/cores/chipc/ |
| D | bhnd_chipc_if.m | 61 * hardware (e.g. if @p dev is an EXTIF core). 77 * Currently, the only known valid use-case is in implementing a hardware 97 * Enable hardware access to the SPROM/OTP source. 102 * @retval EBUSY If enabling the hardware may conflict with 110 * Release hardware access to the SPROM/OTP source.
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/MSP430/ |
| D | MSP430.td | 26 "Enable 16-bit hardware multiplier">; 30 "Enable 32-bit hardware multiplier">; 34 "Enable F5 series hardware multiplier">;
|
| /freebsd-12-stable/crypto/openssh/ |
| D | PROTOCOL.u2f | 6 U2F is an open standard for two-factor authentication hardware, widely 9 cheapest way for users to achieve hardware-backed credential storage. 21 given key is backed by hardware. Finally the signature format includes 23 concurrent use of a private key, should it be extracted from hardware. 30 the hardware-backed private key, some flags and signed attestation 32 particular hardware instance. 34 It is common for U2F hardware to derive private keys from the key handle 36 hardware, thus requiring little on-device storage for an effectively 143 During key generation, the hardware also returns attestation information 145 hardware-backed. Unfortunately, the protocol required for this proof is [all …]
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/ |
| D | NativeWatchpointList.cpp | 17 bool hardware) { in Add() argument 18 m_watchpoints[addr] = {addr, size, watch_flags, hardware}; in Add()
|
| D | NativeProcessProtocol.cpp | 148 bool hardware) { in SetWatchpoint() argument 176 thread->SetWatchpoint(addr, size, watch_flags, hardware); in SetWatchpoint() 177 if (thread_error.Fail() && hardware) { in SetWatchpoint() 203 return m_watchpoint_list.Add(addr, size, watch_flags, hardware); in SetWatchpoint() 606 bool hardware) { in RemoveBreakpoint() argument 607 if (hardware) in RemoveBreakpoint()
|
| /freebsd-12-stable/contrib/file/magic/Magdir/ |
| D | hardware | 3 # $File: hardware,v 1.1 2018/08/02 06:32:52 christos Exp $ 4 # hardware magic
|
| D | att3b | 27 >18 beshort &00040000 and MAU hardware required 36 #>18 beshort &00040000 and MAU hardware required
|
| D | tplink | 16 # skip user.dbt by looking for positive hardware id 24 # hardware id like 10430001 07410001 09410004 09410006 27 # hardware revision like 1
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| D | StoppointSite.h | 20 StoppointSite(lldb::break_id_t bid, lldb::addr_t m_addr, bool hardware); 23 uint32_t byte_size, bool hardware);
|
| /freebsd-12-stable/contrib/gcc/config/mips/ |
| D | mips.opt | 56 Allow hardware floating-point instructions to cover both 32-bit and 64-bit operations 106 Work around an early 4300 hardware bug 138 Allow the use of hardware floating-point instructions 194 Restrict the use of hardware floating-point instructions to 32-bit operations 198 Prevent the use of all hardware floating-point instructions
|
| /freebsd-12-stable/sys/gnu/dts/arm/ |
| D | s5pv210-smdkc110.dts | 13 * available in Linux 3.15 and intends to provide equivalent level of hardware 14 * support. Due to lack of hardware, _no_ testing has been performed.
|
| D | s5pv210-torbreck.dts | 13 * available in Linux 3.15 and intends to provide equivalent level of hardware 14 * support. Due to lack of hardware, _no_ testing has been performed.
|
| /freebsd-12-stable/sys/dev/bhnd/cores/pmu/ |
| D | bhnd_pmu_if.m | 41 # Provides an interface to the PMU hardware found on modern bhnd(4) chipsets. 143 * @returns The chipctrl register value, or 0 if undefined by this hardware. 177 * @returns The regctrl register value, or 0 if undefined by this hardware. 211 * @returns The pllctrl register value, or 0 if undefined by this hardware. 237 * Set a hardware-specific output voltage register value for @p regulator. 318 * Request that the PMU configure itself for a given hardware-specific
|
| /freebsd-12-stable/contrib/apr/misc/unix/ |
| D | randbyte_os2.inc | 17 /* The high resolution timer API provides access to the hardware timer 19 * varies randomly due to system events, hardware interrupts etc 60 * randomness due to interference of hardware events.
|
| /freebsd-12-stable/usr.sbin/bsdconfig/console/include/ |
| D | messages.subr | 93 …hardware defaults to displaying characters in the\nIBM 437 character set. However, in the Unix wo… 191 …hardware defaults to\ndisplaying characters in the IBM 437 character set. However,\nin the Unix w… 267 msg_use_hardware_default_font="Use hardware default font"
|
| /freebsd-12-stable/share/examples/sound/ |
| D | README | 43 - There is a software facing buffer (bs) and a hardware driver buffer (b) 46 - OSS ioctl only concern software buffer fragments, not hardware 54 avoid under- and overruns in communication with the hardware.
|