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

  /external/lldb/source/Plugins/Process/MacOSX-Kernel/
ProcessKDP.cpp 683 ProcessKDP::EnableBreakpointSite (BreakpointSite *bp_site)
688 if (!bp_site->IsEnabled())
690 if (m_comm.SendRequestBreakpoint(true, bp_site->GetLoadAddress()))
692 bp_site->SetEnabled(true);
693 bp_site->SetType (BreakpointSite::eExternal);
702 return EnableSoftwareBreakpoint (bp_site);
706 ProcessKDP::DisableBreakpointSite (BreakpointSite *bp_site)
711 if (bp_site->IsEnabled())
713 BreakpointSite::Type bp_type = bp_site->GetType();
719 bp_site->SetEnabled(false)
    [all...]
ProcessKDP.h 175 EnableBreakpointSite (lldb_private::BreakpointSite *bp_site);
178 DisableBreakpointSite (lldb_private::BreakpointSite *bp_site);
  /external/lldb/source/Plugins/Process/POSIX/
ProcessPOSIX.h 108 GetSoftwareBreakpointTrapOpcode(lldb_private::BreakpointSite* bp_site);
111 EnableBreakpointSite(lldb_private::BreakpointSite *bp_site);
114 DisableBreakpointSite(lldb_private::BreakpointSite *bp_site);
POSIXThread.cpp 399 lldb::BreakpointSiteSP bp_site(GetProcess()->GetBreakpointSiteList().FindByAddress(pc));
404 if (bp_site && bp_site->ValidForThisThread(this))
406 lldb::break_id_t bp_id = bp_site->GetID();
414 const ThreadSpec *spec = bp_site ?
415 bp_site->GetOwnerAtIndex(0)->GetOptionsNoCreate()->GetThreadSpecNoCreate() : 0;
ProcessPOSIX.cpp 627 ProcessPOSIX::GetSoftwareBreakpointTrapOpcode(BreakpointSite* bp_site)
648 bp_site->SetTrapOpcode(opcode, opcode_size);
653 ProcessPOSIX::EnableBreakpointSite(BreakpointSite *bp_site)
655 return EnableSoftwareBreakpoint(bp_site);
659 ProcessPOSIX::DisableBreakpointSite(BreakpointSite *bp_site)
661 return DisableSoftwareBreakpoint(bp_site);
  /external/lldb/source/Plugins/Platform/Linux/
PlatformLinux.h 87 BreakpointSite *bp_site);
PlatformLinux.cpp 374 BreakpointSite *bp_site)
396 if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size))
  /external/lldb/source/Plugins/Platform/gdb-server/
PlatformRemoteGDBServer.h 103 lldb_private::BreakpointSite *bp_site);
PlatformRemoteGDBServer.cpp 150 PlatformRemoteGDBServer::GetSoftwareBreakpointTrapOpcode (Target &target, BreakpointSite *bp_site)
  /external/lldb/source/Target/
ThreadPlanStepRange.cpp 373 BreakpointSiteSP bp_site = bp_loc->GetBreakpointSite(); local
374 if (bp_site)
376 bp_site_id = bp_site->GetID();
Process.cpp     [all...]
  /external/lldb/source/Plugins/Platform/FreeBSD/
PlatformFreeBSD.h 82 lldb_private::BreakpointSite *bp_site);
PlatformFreeBSD.cpp 284 PlatformFreeBSD::GetSoftwareBreakpointTrapOpcode (Target &target, BreakpointSite *bp_site)
306 if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size))
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformDarwin.h 54 lldb_private::BreakpointSite *bp_site);
PlatformDarwin.cpp 373 PlatformDarwin::GetSoftwareBreakpointTrapOpcode (Target &target, BreakpointSite *bp_site)
401 lldb::BreakpointLocationSP bp_loc_sp (bp_site->GetOwnerAtIndex (0));
432 if (bp_site->SetTrapOpcode(trap_opcode, trap_opcode_size))
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp     [all...]
ProcessGDBRemote.h 194 EnableBreakpointSite (lldb_private::BreakpointSite *bp_site);
197 DisableBreakpointSite (lldb_private::BreakpointSite *bp_site);
  /external/lldb/include/lldb/Target/
Process.h     [all...]
Platform.h 354 BreakpointSite *bp_site) = 0;

Completed in 495 milliseconds