HomeSort by relevance Sort by last modified time
    Searched refs:wp_sp (Results 1 - 12 of 12) sorted by null

  /external/lldb/source/Breakpoint/
WatchpointList.cpp 34 WatchpointList::Add (const WatchpointSP &wp_sp, bool notify)
37 wp_sp->SetID(++m_next_wp_id);
38 m_watchpoints.push_back(wp_sp);
41 if (wp_sp->GetTarget().EventTypeHasListeners(Target::eBroadcastBitWatchpointChanged))
42 wp_sp->GetTarget().BroadcastEvent (Target::eBroadcastBitWatchpointChanged,
43 new Watchpoint::WatchpointEventData (eWatchpointEventTypeAdded, wp_sp));
45 return wp_sp->GetID();
72 WatchpointSP wp_sp; local
79 wp_sp = *pos;
84 return wp_sp;
90 WatchpointSP wp_sp; local
139 WatchpointSP wp_sp; local
151 WatchpointSP wp_sp = FindByAddress (addr); local
162 WatchpointSP wp_sp = FindBySpec (spec); local
174 WatchpointSP wp_sp; local
188 WatchpointSP wp_sp; local
215 WatchpointSP wp_sp = *pos; local
243 WatchpointSP wp_sp = FindByID (watch_id); local
    [all...]
Watchpoint.cpp 482 WatchpointSP wp_sp; local
486 wp_sp = data->m_new_watchpoint_sp;
488 return wp_sp;
  /external/lldb/source/Plugins/Process/Utility/
StopInfoMachException.cpp 370 lldb::WatchpointSP wp_sp;
372 wp_sp = target->GetWatchpointList().FindByAddress((lldb::addr_t)exc_sub_code);
373 if (wp_sp && wp_sp->IsEnabled())
378 wp_sp->SetHardwareIndex((uint32_t)exc_sub_sub_code);
379 return StopInfo::CreateStopReasonWithWatchpointID(thread, wp_sp->GetID());
405 lldb::WatchpointSP wp_sp; local
407 wp_sp = target->GetWatchpointList().FindByAddress((lldb::addr_t)exc_sub_code);
408 if (wp_sp && wp_sp->IsEnabled()
    [all...]
  /external/lldb/include/lldb/API/
SBWatchpoint.h 25 SBWatchpoint (const lldb::WatchpointSP &wp_sp);
  /external/lldb/source/Target/
StopInfo.cpp 607 WatchpointSP wp_sp (thread_sp->CalculateTarget()->GetWatchpointList().FindByID(GetValue()));
608 if (wp_sp)
613 m_should_stop = wp_sp->ShouldStop (&context);
651 WatchpointSP wp_sp (thread_sp->CalculateTarget()->GetWatchpointList().FindByID(GetValue()));
652 if (wp_sp)
659 WatchpointSentry sentry(process, wp_sp.get());
692 if (m_should_stop && wp_sp->GetConditionText() != NULL)
707 wp_sp->GetConditionText(),
747 wp_sp->GetDescription (error_sp.get(), eDescriptionLevelBrief);
749 wp_sp->GetConditionText())
    [all...]
Target.cpp 561 WatchpointSP wp_sp; local
565 return wp_sp;
574 return wp_sp;
599 wp_sp = matched_sp;
600 wp_sp->SetEnabled(false, notify);
610 if (!wp_sp)
612 wp_sp.reset(new Watchpoint(*this, addr, size, type));
613 wp_sp->SetWatchpointType(kind, notify);
614 m_watchpoint_list.Add (wp_sp, true);
617 error = m_process_sp->EnableWatchpoint(wp_sp.get(), notify)
776 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
811 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
844 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
866 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
890 WatchpointSP wp_sp = m_watchpoint_list.GetByIndex(i); local
    [all...]
  /external/lldb/include/lldb/Breakpoint/
WatchpointList.h 54 /// @param[in] wp_sp
61 Add (const lldb::WatchpointSP& wp_sp, bool notify);
  /external/lldb/source/API/
SBWatchpoint.cpp 35 SBWatchpoint::SBWatchpoint (const lldb::WatchpointSP &wp_sp) :
36 m_opaque_sp (wp_sp)
44 log->Printf ("SBWatchpoint::SBWatchpoint (const lldb::WatchpointSP &wp_sp"
45 "=%p) => this.sp = %p (%s)", wp_sp.get(), m_opaque_sp.get(), sstr.GetData());
  /external/lldb/source/Plugins/Process/POSIX/
POSIXThread.cpp 460 lldb::WatchpointSP wp_sp = wp_list.FindByAddress(wp_monitor_addr); local
462 assert(wp_sp.get() && "No watchpoint found");
464 wp_sp->GetID()));
  /external/lldb/source/Commands/
CommandObjectWatchpoint.cpp 865 WatchpointSP wp_sp = target->GetLastCreatedWatchpoint(); local
866 wp_sp->SetCondition(m_options.m_condition.c_str());
884 WatchpointSP wp_sp = watchpoints.FindByID(wp_ids[i]); local
885 if (wp_sp)
887 wp_sp->SetCondition(m_options.m_condition.c_str());
    [all...]
  /external/lldb/include/lldb/Interpreter/
ScriptInterpreter.h 95 const lldb::WatchpointSP &wp_sp);
  /external/lldb/source/Interpreter/
ScriptInterpreterPython.cpp 2294 WatchpointSP wp_sp = target->GetWatchpointList().FindByID (watch_id); local
    [all...]

Completed in 578 milliseconds