Home | History | Annotate | Download | only in python

Lines Matching defs:bp_loc

45   bp_location *bp_loc;
55 if ((Breakpoint)->bp != (Location)->bp_loc->owner) \
64 if ((Breakpoint)->bp != (Location)->bp_loc->owner) \
848 py_bploc->bp_loc = ref.release ();
1587 enable_disable_bp_location (self->bp_loc, cmp == 1);
1605 if (self->bp_loc->enabled)
1619 return gdb_py_object_from_ulongest (self->bp_loc->address).release ();
1644 if (self->bp_loc->symtab)
1651 = host_string_to_python_string (self->bp_loc->symtab->filename);
1654 auto line = gdb_py_object_from_ulongest (self->bp_loc->line_number);
1674 const auto fn_name = self->bp_loc->function_name.get ();
1691 if (inf->pspace == self->bp_loc->pspace)
1709 const auto symtab = self->bp_loc->symtab;
1725 bp_location_ref_ptr decrementing_ref {self->bp_loc};
1737 || self->owner->bp != self->bp_loc->owner)
1740 const auto enabled = self->bp_loc->enabled ? "enabled" : "disabled";
1745 paddress (self->bp_loc->owner->gdbarch,
1746 self->bp_loc->address));
1748 if (self->bp_loc->requested_address != self->bp_loc->address)
1750 paddress (self->bp_loc->owner->gdbarch,
1751 self->bp_loc->requested_address));
1752 if (self->bp_loc->symtab != nullptr)
1753 str += string_printf (" source=%s:%d", self->bp_loc->symtab->filename,
1754 self->bp_loc->line_number);
1756 const auto fn_name = self->bp_loc->function_name.get ();