Example #1
0
void BreakptMgr::GetAllMemoryBreakpoints(BreakpointInfoVec_t& memoryBps)
{
    BreakpointInfoVec_t allBps; // Start by finding all on the line
    GetBreakpoints(allBps);
    
    for(size_t i=0; i<allBps.size(); i++) {
        BreakpointInfo &bp = allBps.at(i);
        if ( !bp.memory_address.IsEmpty() ) {
            memoryBps.push_back( bp );
        }
    }
}