Searched refs:hardware (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DStoppointLocation.cpp16 StoppointLocation::StoppointLocation(break_id_t bid, addr_t addr, bool hardware) argument
17 : m_loc_id(bid), m_addr(addr), m_hardware(hardware),
21 uint32_t byte_size, bool hardware)
22 : m_loc_id(bid), m_addr(addr), m_hardware(hardware),
20 StoppointLocation(break_id_t bid, addr_t addr, uint32_t byte_size, bool hardware) argument
H A DWatchpoint.cpp27 const CompilerType *type, bool hardware)
28 : StoppointLocation(0, addr, size, hardware), m_target(target),
29 m_enabled(false), m_is_hardware(hardware), m_is_watch_variable(false),
26 Watchpoint(Target &target, lldb::addr_t addr, uint32_t size, const CompilerType *type, bool hardware) argument
H A DBreakpoint.cpp49 BreakpointResolverSP &resolver_sp, bool hardware,
51 : m_being_created(true), m_hardware(hardware), m_target(target),
197 bool hardware = false; local
199 Breakpoint::GetKey(OptionNames::Hardware), hardware);
202 hardware, true);
48 Breakpoint(Target &target, SearchFilterSP &filter_sp, BreakpointResolverSP &resolver_sp, bool hardware, bool resolve_indirect_symbols) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
H A DNativeWatchpointList.cpp17 bool hardware) {
18 m_watchpoints[addr] = {addr, size, watch_flags, hardware};
16 Add(addr_t addr, size_t size, uint32_t watch_flags, bool hardware) argument
H A DNativeProcessProtocol.cpp137 bool hardware) {
155 // Tell each thread to set a watchpoint. In the event that hardware
158 // more threads than hardware watchpoints available, some of the threads will
159 // fail to set hardware watchpoints while software ones may be available.
165 thread->SetWatchpoint(addr, size, watch_flags, hardware);
166 if (thread_error.Fail() && hardware) {
167 // Try software watchpoints since we failed on hardware watchpoint
168 // setting and we may have just run out of hardware watchpoints.
172 "hardware watchpoint requested but software watchpoint set");
192 return m_watchpoint_list.Add(addr, size, watch_flags, hardware);
135 SetWatchpoint(lldb::addr_t addr, size_t size, uint32_t watch_flags, bool hardware) argument
631 RemoveBreakpoint(lldb::addr_t addr, bool hardware) argument
[all...]
/freebsd-13-stable/sbin/dhclient/
H A Dparse.c156 * hardware-parameter :== HARDWARE ETHERNET csns SEMI
160 parse_hardware_param(FILE *cfile, struct hardware *hardware) argument
170 hardware->htype = HTYPE_ETHER;
173 hardware->htype = HTYPE_IEEE802;
176 hardware->htype = HTYPE_FDDI;
179 parse_warn("expecting a network hardware type");
185 * Parse the hardware address information. Technically, it
187 * we'll accept here to the length of a particular hardware
197 if (hlen > sizeof(hardware
[all...]
H A Ddhcpd.h115 struct hardware *haddr;
119 struct hardware { struct
201 struct hardware hw_address;
264 int, unsigned int, struct iaddr, struct hardware *);
290 void parse_hardware_param(FILE *, struct hardware *);
314 struct sockaddr_in *, struct hardware *);
318 struct dhcp_packet *, int, unsigned int, struct iaddr, struct hardware *);
424 ssize_t decode_hw_header(unsigned char *, int, struct hardware *);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeWatchpointList.h28 bool hardware);
H A DNativeThreadProtocol.h41 uint32_t watch_flags, bool hardware) = 0;
H A DNativeProcessProtocol.h136 bool hardware) = 0;
138 virtual Status RemoveBreakpoint(lldb::addr_t addr, bool hardware = false);
154 uint32_t watch_flags, bool hardware);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStoppointLocation.h21 StoppointLocation(lldb::break_id_t bid, lldb::addr_t m_addr, bool hardware);
24 uint32_t byte_size, bool hardware);
61 bool m_hardware; // True if this point has been is required to use hardware
63 uint32_t m_hardware_index; // The hardware resource index for this
67 // software breakpoints, or the optional length in bytes for hardware
H A DBreakpointLocation.h314 /// \param[in] hardware
315 /// \b true if a hardware breakpoint is requested.
318 const Address &addr, lldb::tid_t tid, bool hardware,
H A DWatchpoint.h62 const CompilerType *type, bool hardware = true);
170 bool m_is_hardware; // Is this a hardware watchpoint
/freebsd-13-stable/usr.sbin/acpi/
H A DMakefile.inc21 ${ACPICA_DIR}/components/hardware \
/freebsd-13-stable/contrib/wpa/wpa_supplicant/
H A Dwpa_supplicant_conf.mk8 # Include this makefile to generate your hardware specific wpa_supplicant.conf
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeThreadNetBSD.h42 bool hardware) override;
H A DNativeProcessNetBSD.h75 bool hardware) override;
H A DNativeThreadNetBSD.cpp241 uint32_t watch_flags, bool hardware) {
242 if (!hardware)
251 return Status("Setting hardware watchpoint failed.");
264 return Status("Clearing hardware watchpoint failed.");
279 return Status("Setting hardware breakpoint failed.");
296 return Status("Clearing hardware breakpoint failed.");
240 SetWatchpoint(lldb::addr_t addr, size_t size, uint32_t watch_flags, bool hardware) argument
/freebsd-13-stable/usr.bin/xz/
H A DMakefile21 hardware.c \
/freebsd-13-stable/contrib/ntp/scripts/deprecated/
H A Dfreq_adj.in16 chop($timer = `sysctl -n kern.timecounter.hardware 2> /dev/null`);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DThreading.inc249 // We ask for less threads than there are hardware threads per CPU socket, no
259 // Assumes the same number of hardware threads per CPU socket.
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp305 bool hardware = false; local
308 .CreateBreakpoint(symbol_address, internal, hardware)
/freebsd-13-stable/release/tools/
H A Dgce.conf47 kern.timecounter.hardware=ACPI-safe
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DLanguageRuntime.cpp253 bool hardware = false; local
256 target.CreateBreakpoint(filter_sp, resolver_sp, is_internal, hardware,
/freebsd-13-stable/contrib/apr/misc/unix/
H A Drandbyte_os2.inc17 /* 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.

Completed in 282 milliseconds

12