Lines Matching defs:site
417 BreakpointSiteSP site(GetBreakpointSiteList().FindByAddress(pc));
418 if (site && site->ValidForThisThread(*stop_thread)) {
421 "address {1:x} with breakpoint site {2}",
423 site->GetID());
425 site->GetID());
481 BreakpointSiteSP site(GetBreakpointSiteList().FindByAddress(pc));
482 if (site) {
485 "breakpoint site {2}",
487 site->GetID());
489 if (site->ValidForThisThread(*stop_thread)) {
491 "Breakpoint site {0} is valid for this thread ({1:x}), "
493 site->GetID(), stop_thread->GetID());
496 *stop_thread, site->GetID());
500 "Breakpoint site {0} is not valid for this thread, "
502 site->GetID());
510 "No breakpoint site matches for this thread. __debugbreak()? "