14 lines · plain
1include "../../../../include/lldb/Core/PropertiesBase.td"2 3let Definition = "dynamicloaderdarwinkernel" in {4 def LoadKexts: Property<"load-kexts", "Boolean">,5 Global,6 DefaultTrue,7 Desc<"Automatically loads kext images when attaching to a kernel.">;8 def ScanType: Property<"scan-type", "Enum">,9 Global,10 DefaultEnumValue<"eKASLRScanNearPC">,11 EnumValues<"OptionEnumValues(g_kaslr_kernel_scan_enum_values)">,12 Desc<"Control how many reads lldb will make while searching for a Darwin kernel on attach.">;13}14