Home | History | Annotate | Download | only in Unix

Lines Matching refs:debugger

310 def TypePrintFormating(debugger):
315 category = debugger.GetDefaultCategory()
344 debugger.HandleCommand("type summary add EFI_GUID --python-function lldbefi.EFI_GUID_TypeSummary")
345 debugger.HandleCommand("type summary add EFI_STATUS --python-function lldbefi.EFI_STATUS_TypeSummary")
346 debugger.HandleCommand("type summary add EFI_TPL --python-function lldbefi.EFI_TPL_TypeSummary")
347 debugger.HandleCommand("type summary add EFI_DEVICE_PATH_PROTOCOL --python-function lldbefi.EFI_DEVICE_PATH_PROTOCOL_TypeSummary")
349 debugger.HandleCommand("type summary add CHAR16 --python-function lldbefi.CHAR16_TypeSummary")
350 debugger.HandleCommand('type summary add --regex "CHAR16 \[[0-9]+\]" --python-function lldbefi.CHAR16_TypeSummary')
351 debugger.HandleCommand("type summary add CHAR8 --python-function lldbefi.CHAR8_TypeSummary")
352 debugger.HandleCommand('type summary add --regex "CHAR8 \[[0-9]+\]" --python-function lldbefi.CHAR8_TypeSummary')
382 frame.thread.process.target.debugger.HandleCommand("process handle SIGALRM -n false")
395 debugger = frame.thread.process.target.debugger
399 debugger.HandleCommand ("target modules add %s" % FileName)
401 debugger.HandleCommand ("target modules load --slide 0x%x --file %s" % (LoadAddress, FileName))
403 target = debugger.GetSelectedTarget()
466 def efi_guid_command(debugger, command, result, dict):
508 def __lldb_init_module (debugger, internal_dict):
525 TypePrintFormating (debugger)
531 debugger.HandleCommand('command script add -f lldbefi.efi_guid_command guid')
534 Target = debugger.GetTargetAtIndex(0)
539 debugger.HandleCommand("breakpoint command add -s python -F lldbefi.LoadEmulatorEfiSymbols {id}".format(id=Breakpoint.GetID()))