Lines Matching defs:hardware
150 bool hardware) {
168 // Tell each thread to set a watchpoint. In the event that hardware
171 // more threads than hardware watchpoints available, some of the threads will
172 // fail to set hardware watchpoints while software ones may be available.
178 thread->SetWatchpoint(addr, size, watch_flags, hardware);
179 if (thread_error.Fail() && hardware) {
180 // Try software watchpoints since we failed on hardware watchpoint
181 // setting and we may have just run out of hardware watchpoints.
185 "hardware watchpoint requested but software watchpoint set");
205 return m_watchpoint_list.Add(addr, size, watch_flags, hardware);
238 // This default implementation assumes setting a hardware breakpoint for this
239 // process will require setting same hardware breakpoint for each of its
246 // Exit here if target does not have required hardware breakpoint capability.
252 "Target does not have required no of hardware breakpoints");
255 // set this hardware breakpoint. If any of the current process threads fails
256 // to set this hardware breakpoint then roll back and remove this breakpoint
260 // Request to set a hardware breakpoint for each of current process threads.
272 // get back to a consistent state of "not set" for this hardware
287 // Register new hardware breakpoint into hardware breakpoints map of current
306 // Also remove from hardware breakpoint map of current process.
645 bool hardware) {
646 if (hardware)