Home
last modified time | relevance | path

Searched refs:GetAllowDelete (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_breakpointname.py36 obj.GetAllowDelete()
/external/llvm-project/lldb/bindings/interface/
DSBBreakpointName.i103 bool GetAllowDelete();
/external/llvm-project/lldb/source/API/
DSBBreakpointName.cpp653 bool SBBreakpointName::GetAllowDelete() { in GetAllowDelete() function in SBBreakpointName
654 LLDB_RECORD_METHOD_NO_ARGS(bool, SBBreakpointName, GetAllowDelete); in GetAllowDelete()
659 return bp_name->GetPermissions().GetAllowDelete(); in GetAllowDelete()
757 LLDB_REGISTER_METHOD(bool, SBBreakpointName, GetAllowDelete, ()); in RegisterMethods()
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointName.cpp51 s->Printf("delete: %s", GetAllowDelete() ? "allowed" : "disallowed"); in GetDescription()
/external/llvm-project/lldb/include/lldb/API/
DSBBreakpointName.h103 bool GetAllowDelete();
/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointName.h90 bool GetAllowDelete() const { return GetPermission(deletePerm); } in GetAllowDelete() function
DBreakpoint.h571 return GetPermissions().GetAllowDelete(); in AllowDelete()
/external/llvm-project/lldb/test/API/functionalities/breakpoint/breakpoint_names/
DTestBreakpointNames.py313 self.assertEqual(bp_name.GetAllowDelete(), False, "Didn't set allow delete.")