├── .clang-format ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tags ├── CMakeLists.txt ├── LICENSE ├── README.md ├── README_zh-cn.md ├── builtin-plugin ├── ApplicationEventMonitor │ ├── MGCopyAnswerMonitor.cc │ ├── dobby_monitor.h │ ├── dynamic_loader_monitor.cc │ ├── file_operation_monitor.cc │ ├── memory_operation_instrument.cc │ ├── posix_file_descriptor_operation_monitor.cc │ └── posix_socket_network_monitor.cc ├── BionicLinkerRestriction │ ├── bionic_linker_restriction.cc │ ├── bionic_linker_restriction.h │ └── linker_restriction_demo.cc ├── Dyld2HideLibrary │ ├── CMakeLists.txt │ ├── dyld2_hide_library.cc │ └── dyld2_hide_library.h ├── GlobalOffsetTableHook │ ├── CMakeLists.txt │ ├── global_offset_table_hook.cc │ └── global_offset_table_hook.h ├── HideSystemCall │ └── README ├── IntegrityReadCallback │ └── README ├── LinkerImageLoadCallback │ └── linker_load_callback.cc ├── MemoryRemapHook │ └── README ├── ObjcRuntimeHook │ ├── CMakeLists.txt │ ├── objc_runtime_hook.h │ └── objc_runtime_hook.mm ├── SupervisorCallMonitor │ ├── CMakeLists.txt │ ├── README │ ├── XnuInternal │ │ ├── README │ │ ├── mach │ │ │ ├── audit_triggers.defs │ │ │ ├── boolean.h │ │ │ ├── bootstrap.h │ │ │ ├── clock.defs │ │ │ ├── clock.h │ │ │ ├── clock_priv.defs │ │ │ ├── clock_priv.h │ │ │ ├── clock_reply.defs │ │ │ ├── clock_reply.h │ │ │ ├── clock_types.defs │ │ │ ├── clock_types.h │ │ │ ├── dyld_kernel.h │ │ │ ├── error.h │ │ │ ├── exc.defs │ │ │ ├── exc.h │ │ │ ├── exception.h │ │ │ ├── exception_types.h │ │ │ ├── host_info.h │ │ │ ├── host_notify.h │ │ │ ├── host_notify_reply.defs │ │ │ ├── host_priv.defs │ │ │ ├── host_priv.h │ │ │ ├── host_reboot.h │ │ │ ├── host_security.defs │ │ │ ├── host_security.h │ │ │ ├── host_special_ports.h │ │ │ ├── i386 │ │ │ │ ├── _structs.h │ │ │ │ ├── asm.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── fp_reg.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── ndr_def.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── sdt_isa.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── kern_return.h │ │ │ ├── kmod.h │ │ │ ├── lock_set.defs │ │ │ ├── lock_set.h │ │ │ ├── mach.h │ │ │ ├── mach_error.h │ │ │ ├── mach_exc.defs │ │ │ ├── mach_host.defs │ │ │ ├── mach_host.h │ │ │ ├── mach_init.h │ │ │ ├── mach_interface.h │ │ │ ├── mach_param.h │ │ │ ├── mach_port.defs │ │ │ ├── mach_port.h │ │ │ ├── mach_right.h │ │ │ ├── mach_syscalls.h │ │ │ ├── mach_time.h │ │ │ ├── mach_traps.h │ │ │ ├── mach_types.defs │ │ │ ├── mach_types.h │ │ │ ├── mach_vm.defs │ │ │ ├── mach_vm.h │ │ │ ├── mach_voucher.defs │ │ │ ├── mach_voucher.h │ │ │ ├── mach_voucher_attr_control.defs │ │ │ ├── mach_voucher_types.h │ │ │ ├── machine.h │ │ │ ├── machine │ │ │ │ ├── _structs.h │ │ │ │ ├── asm.h │ │ │ │ ├── boolean.h │ │ │ │ ├── exception.h │ │ │ │ ├── kern_return.h │ │ │ │ ├── machine_types.defs │ │ │ │ ├── ndr_def.h │ │ │ │ ├── processor_info.h │ │ │ │ ├── rpc.h │ │ │ │ ├── sdt.h │ │ │ │ ├── sdt_isa.h │ │ │ │ ├── thread_state.h │ │ │ │ ├── thread_status.h │ │ │ │ ├── vm_param.h │ │ │ │ └── vm_types.h │ │ │ ├── memory_entry.defs │ │ │ ├── memory_entry.h │ │ │ ├── memory_object_types.h │ │ │ ├── message.h │ │ │ ├── mig.h │ │ │ ├── mig_errors.h │ │ │ ├── mig_strncpy_zerofill_support.h │ │ │ ├── mig_voucher_support.h │ │ │ ├── ndr.h │ │ │ ├── notify.defs │ │ │ ├── notify.h │ │ │ ├── policy.h │ │ │ ├── port.h │ │ │ ├── port_obj.h │ │ │ ├── processor.defs │ │ │ ├── processor.h │ │ │ ├── processor_info.h │ │ │ ├── processor_set.defs │ │ │ ├── processor_set.h │ │ │ ├── rpc.h │ │ │ ├── sdt.h │ │ │ ├── semaphore.h │ │ │ ├── shared_memory_server.h │ │ │ ├── shared_region.h │ │ │ ├── std_types.defs │ │ │ ├── std_types.h │ │ │ ├── sync.h │ │ │ ├── sync_policy.h │ │ │ ├── task.defs │ │ │ ├── task.h │ │ │ ├── task_access.defs │ │ │ ├── task_info.h │ │ │ ├── task_inspect.h │ │ │ ├── task_policy.h │ │ │ ├── task_special_ports.h │ │ │ ├── telemetry_notification.defs │ │ │ ├── thread_act.defs │ │ │ ├── thread_act.h │ │ │ ├── thread_info.h │ │ │ ├── thread_policy.h │ │ │ ├── thread_special_ports.h │ │ │ ├── thread_state.h │ │ │ ├── thread_status.h │ │ │ ├── thread_switch.h │ │ │ ├── time_value.h │ │ │ ├── vm_attributes.h │ │ │ ├── vm_behavior.h │ │ │ ├── vm_inherit.h │ │ │ ├── vm_map.defs │ │ │ ├── vm_map.h │ │ │ ├── vm_page_size.h │ │ │ ├── vm_param.h │ │ │ ├── vm_prot.h │ │ │ ├── vm_purgable.h │ │ │ ├── vm_region.h │ │ │ ├── vm_statistics.h │ │ │ ├── vm_sync.h │ │ │ ├── vm_task.h │ │ │ └── vm_types.h │ │ ├── syscall_sw.c │ │ └── syscalls.c │ ├── deprecated │ │ ├── mach_system_call.cc │ │ └── system_call.cc │ ├── mach_system_call_log_handler.cc │ ├── misc_utility.cc │ ├── misc_utility.h │ ├── sensitive_api_monitor.cc │ ├── supervisor_call_monitor.cc │ ├── supervisor_call_monitor.h │ ├── system_call_log_handler.cc │ └── test_supervisor_call_monitor.cc └── SymbolResolver │ ├── CMakeLists.txt │ ├── dobby_symbol_resolver.h │ ├── elf │ └── dobby_symbol_resolver.cc │ ├── macho │ ├── dobby_symbol_resolver.cc │ ├── dyld_shared_cache_symbol_table_iterator.cc │ ├── shared-cache │ │ └── dyld_cache_format.h │ └── shared_cache_internal.h │ └── pe │ └── dobby_symbol_resolver.cc ├── cmake ├── AutoFiles.cmake ├── EarlyGlobals.cmake ├── Globals.cmake ├── Macros.cmake ├── Util.cmake ├── XcodeGenerator.cmake ├── dobby.xcode.source.cmake ├── ios.toolchain.cmake └── mingw64-x86_64.toolchain.cmake ├── docs ├── .nojekyll ├── _cover_page.md ├── _nav_bar.md ├── _side_bar.md ├── build-documentation.md ├── get-started-android.md ├── get-started-ios.md ├── get-started.md ├── images │ └── vue-logo.png ├── index.html ├── intro-board.md ├── scripts │ ├── imagesloaded.pkgd.min.js │ ├── palettify.min.js │ └── palettify.styles.min.js └── styles │ ├── grid.min.css │ ├── palettify.min.css │ └── style.css ├── example ├── CMakeLists.txt ├── android_common_api.cc ├── darwin_common_api.cc └── main.cc ├── external ├── logging │ ├── CMakeLists.txt │ ├── cxxlogging.cc │ ├── logging.c │ └── logging │ │ ├── check_logging.h │ │ ├── cxxlogging.h │ │ └── logging.h ├── misc-helper │ ├── CMakeLists.txt │ ├── async_logger.cc │ ├── misc-helper │ │ ├── async_logger.h │ │ └── variable_cache.h │ ├── pthread_helper.cc │ ├── pthread_helper.h │ ├── unistd_helper.h │ └── variable_cache.c └── xnucxx │ ├── CMakeLists.txt │ ├── LiteCollection.cc │ ├── LiteIterator.cc │ ├── LiteMemOpt.cc │ ├── LiteMutableArray.cc │ ├── LiteMutableBuffer.cc │ ├── LiteObject.cc │ └── xnucxx │ ├── LiteCollection.h │ ├── LiteIterator.h │ ├── LiteMemOpt.h │ ├── LiteMutableArray.h │ ├── LiteMutableBuffer.h │ └── LiteObject.h ├── include └── dobby.h ├── source ├── InstructionRelocation │ ├── InstructionRelocation.h │ ├── arm │ │ ├── ARMInstructionRelocation.cc │ │ └── ARMInstructionRelocation.h │ ├── arm64 │ │ ├── ARM64InstructionRelocation.cc │ │ ├── ARM64InstructionRelocation.h │ │ └── ARM64PCLiteralInstructionTable.h │ ├── x64 │ │ ├── X64InstructionRelocation.cc │ │ └── X64InstructionRelocation.h │ └── x86 │ │ ├── X86InstructionRelocation.cc │ │ ├── X86InstructionRelocation.h │ │ ├── deprecated │ │ ├── Ia32Disassembler.cc │ │ ├── X86OpcodoDecodeTable.cc │ │ └── X86OpcodoDecodeTable.h │ │ └── x86_insn_decode │ │ ├── build_config.h │ │ ├── x86_insn_decode.c │ │ ├── x86_insn_decode.h │ │ ├── x86_insn_reader.c │ │ ├── x86_opcode_modrm_reg_group.c │ │ ├── x86_opcode_one_byte.c │ │ ├── x86_opcode_sse_group.c │ │ └── x86_opcode_two_byte.c ├── InterceptRouting │ ├── InterceptRouting.cpp │ ├── InterceptRouting.h │ ├── Routing │ │ ├── DynamicBinaryInstrument │ │ │ ├── DynamicBinaryInstrumentExport.cc │ │ │ ├── dynamic-binary-instrument.cc │ │ │ ├── dynamic-binary-instrument.h │ │ │ ├── intercept_routing_handler.cc │ │ │ └── intercept_routing_handler.h │ │ ├── FunctionInlineReplace │ │ │ ├── FunctionInlineReplaceExport.cc │ │ │ ├── function-inline-replace.cc │ │ │ └── function-inline-replace.h │ │ └── FunctionWrapper │ │ │ ├── FunctionWrapperExport.cc │ │ │ ├── function-wrapper.cc │ │ │ ├── function-wrapper.h │ │ │ ├── intercept_routing_handler.cc │ │ │ └── intercept_routing_handler.h │ └── RoutingPlugin │ │ ├── NearBranchTrampoline │ │ ├── NeaBranchTrampoline.cc │ │ └── NearBranchTrampoline.h │ │ ├── RoutingPlugin.cc │ │ └── RoutingPlugin.h ├── Interceptor.cpp ├── Interceptor.h ├── MemoryAllocator │ ├── AssemblyCodeBuilder.cc │ ├── AssemblyCodeBuilder.h │ ├── CodeBuffer │ │ ├── CodeBufferBase.cc │ │ ├── CodeBufferBase.h │ │ ├── code-buffer-arm.cc │ │ ├── code-buffer-arm.h │ │ ├── code-buffer-arm64.cc │ │ ├── code-buffer-arm64.h │ │ ├── code-buffer-x64.cc │ │ ├── code-buffer-x64.h │ │ ├── code-buffer-x86.cc │ │ └── code-buffer-x86.h │ ├── MemoryArena.cc │ ├── MemoryArena.h │ ├── NearMemoryArena.cc │ └── NearMemoryArena.h ├── PlatformUnifiedInterface │ ├── ExecMemory │ │ ├── ClearCacheTool.h │ │ └── CodePatchTool.h │ └── StdMemory.h ├── TrampolineBridge │ ├── ClosureTrampolineBridge │ │ ├── AssemblyClosureTrampoline.h │ │ ├── arm │ │ │ ├── ARMAssemblyClosureTrampoline.cc │ │ │ ├── closure-bridge-arm.cc │ │ │ ├── dummy │ │ │ │ ├── closure-bridge-template-arm.cc │ │ │ │ └── closure-trampoline-template-arm.S │ │ │ └── helper-arm.cc │ │ ├── arm64 │ │ │ ├── ARM64AssemblyClosureTrampoline.cc │ │ │ ├── closure-bridge-arm64.cc │ │ │ ├── dummy │ │ │ │ ├── closure-bridge-template-arm64.c │ │ │ │ ├── closure-trampoline-template-arm64.S │ │ │ │ └── dynamic-closure-trampoline-template-arm64.S │ │ │ └── helper-arm64.cc │ │ ├── common-bridge-handler.cc │ │ ├── common-bridge-handler.h │ │ ├── x64 │ │ │ ├── X64AssemblyClosureTrampoline.cc │ │ │ ├── closure-bridge-x64.cc │ │ │ ├── dummy │ │ │ │ ├── closure-bridge-template-x64.c │ │ │ │ └── closure-trampoline-template-x64.S │ │ │ └── helper-x64.cc │ │ └── x86 │ │ │ ├── X86AssemblyClosureTrampoline.cc │ │ │ ├── closure-bridge-x86.cc │ │ │ └── helper-x86.cc │ └── Trampoline │ │ ├── Trampoline.h │ │ ├── arm │ │ └── trampoline-arm.cc │ │ ├── arm64 │ │ └── trampoline-arm64.cc │ │ ├── x64 │ │ └── trampoline-x64.cc │ │ └── x86 │ │ └── trampoline-x86.cc ├── UserMode │ ├── ExecMemory │ │ ├── clear-cache-tool-all.c │ │ ├── clear-cache-tool │ │ │ ├── clear-cache-tool-arm-dummy.cc │ │ │ └── clear-cache-tool-arm64-dummy.cc │ │ ├── code-patch-tool-darwin.cc │ │ ├── code-patch-tool-posix.cc │ │ ├── code-patch-tool-windows.cc │ │ └── substrated │ │ │ ├── include │ │ │ ├── bootstrap.h │ │ │ └── xpc │ │ │ │ └── base.h │ │ │ └── mach_interface_support │ │ │ ├── substrated.defs │ │ │ ├── substrated_client.c │ │ │ ├── substrated_client.h │ │ │ ├── substrated_server.c │ │ │ └── substrated_server.h │ ├── MultiThreadSupport │ │ ├── ThreadSupport.cpp │ │ └── ThreadSupport.h │ ├── PlatformUtil │ │ ├── Darwin │ │ │ └── ProcessRuntimeUtility.cc │ │ ├── Linux │ │ │ └── ProcessRuntimeUtility.cc │ │ ├── ProcessRuntimeUtility.h │ │ └── Windows │ │ │ └── ProcessRuntimeUtility.cc │ ├── Thread │ │ ├── PlatformThread.cc │ │ ├── PlatformThread.h │ │ ├── platform-thread-posix.cc │ │ └── platform-thread-windows.cc │ └── UnifiedInterface │ │ ├── platform-darwin │ │ └── mach_vm.h │ │ ├── platform-posix.cc │ │ ├── platform-windows.cc │ │ ├── platform.h │ │ ├── semaphore.cc │ │ └── semaphore.h ├── core │ ├── arch │ │ ├── Cpu.cc │ │ ├── Cpu.h │ │ ├── CpuFeature.cc │ │ ├── CpuFeature.h │ │ ├── CpuRegister.cc │ │ ├── CpuRegister.h │ │ ├── CpuUtils.h │ │ ├── arm │ │ │ ├── constants-arm.h │ │ │ └── registers-arm.h │ │ ├── arm64 │ │ │ ├── constants-arm64.h │ │ │ └── registers-arm64.h │ │ ├── x64 │ │ │ ├── constants-x64.h │ │ │ └── registers-x64.h │ │ └── x86 │ │ │ ├── constants-x86.h │ │ │ ├── cpu-x86.cc │ │ │ ├── cpu-x86.h │ │ │ └── registers-x86.h │ └── modules │ │ ├── assembler │ │ ├── assembler-arch.h │ │ ├── assembler-arm.cc │ │ ├── assembler-arm.h │ │ ├── assembler-arm64.cc │ │ ├── assembler-arm64.h │ │ ├── assembler-ia32.cc │ │ ├── assembler-ia32.h │ │ ├── assembler-x64.cc │ │ ├── assembler-x64.h │ │ ├── assembler-x86-shared.cc │ │ ├── assembler-x86-shared.h │ │ ├── assembler.cc │ │ └── assembler.h │ │ ├── codegen │ │ ├── codegen-arm.cc │ │ ├── codegen-arm.h │ │ ├── codegen-arm64.cc │ │ ├── codegen-arm64.h │ │ ├── codegen-ia32.cc │ │ ├── codegen-ia32.h │ │ ├── codegen-x64.cc │ │ ├── codegen-x64.h │ │ └── codegen.h │ │ └── emulator │ │ └── dummy.cc ├── dobby.cpp ├── dobby_internal.h └── include │ ├── common_header.h │ ├── list_structure.h │ ├── platform_macro.h │ ├── type_macro.h │ └── utility_macro.h └── tests ├── CMakelists.txt ├── InstructionRelocation ├── aarch64 │ └── test_aarch64_instruction_relocation.cc └── x64 │ └── test_x64_instruction_relocation.cc └── catch.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/.vscode/tags -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/README.md -------------------------------------------------------------------------------- /README_zh-cn.md: -------------------------------------------------------------------------------- 1 | ## Dobby 2 | 3 | **待更新** -------------------------------------------------------------------------------- /builtin-plugin/ApplicationEventMonitor/MGCopyAnswerMonitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/ApplicationEventMonitor/MGCopyAnswerMonitor.cc -------------------------------------------------------------------------------- /builtin-plugin/ApplicationEventMonitor/dobby_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/ApplicationEventMonitor/dobby_monitor.h -------------------------------------------------------------------------------- /builtin-plugin/ApplicationEventMonitor/dynamic_loader_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/ApplicationEventMonitor/dynamic_loader_monitor.cc -------------------------------------------------------------------------------- /builtin-plugin/ApplicationEventMonitor/file_operation_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/ApplicationEventMonitor/file_operation_monitor.cc -------------------------------------------------------------------------------- /builtin-plugin/ApplicationEventMonitor/memory_operation_instrument.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/ApplicationEventMonitor/memory_operation_instrument.cc -------------------------------------------------------------------------------- /builtin-plugin/ApplicationEventMonitor/posix_file_descriptor_operation_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/ApplicationEventMonitor/posix_file_descriptor_operation_monitor.cc -------------------------------------------------------------------------------- /builtin-plugin/ApplicationEventMonitor/posix_socket_network_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/ApplicationEventMonitor/posix_socket_network_monitor.cc -------------------------------------------------------------------------------- /builtin-plugin/BionicLinkerRestriction/bionic_linker_restriction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/BionicLinkerRestriction/bionic_linker_restriction.cc -------------------------------------------------------------------------------- /builtin-plugin/BionicLinkerRestriction/bionic_linker_restriction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/BionicLinkerRestriction/bionic_linker_restriction.h -------------------------------------------------------------------------------- /builtin-plugin/BionicLinkerRestriction/linker_restriction_demo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/BionicLinkerRestriction/linker_restriction_demo.cc -------------------------------------------------------------------------------- /builtin-plugin/Dyld2HideLibrary/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/Dyld2HideLibrary/CMakeLists.txt -------------------------------------------------------------------------------- /builtin-plugin/Dyld2HideLibrary/dyld2_hide_library.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/Dyld2HideLibrary/dyld2_hide_library.cc -------------------------------------------------------------------------------- /builtin-plugin/Dyld2HideLibrary/dyld2_hide_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/Dyld2HideLibrary/dyld2_hide_library.h -------------------------------------------------------------------------------- /builtin-plugin/GlobalOffsetTableHook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/GlobalOffsetTableHook/CMakeLists.txt -------------------------------------------------------------------------------- /builtin-plugin/GlobalOffsetTableHook/global_offset_table_hook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/GlobalOffsetTableHook/global_offset_table_hook.cc -------------------------------------------------------------------------------- /builtin-plugin/GlobalOffsetTableHook/global_offset_table_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/GlobalOffsetTableHook/global_offset_table_hook.h -------------------------------------------------------------------------------- /builtin-plugin/HideSystemCall/README: -------------------------------------------------------------------------------- 1 | private -------------------------------------------------------------------------------- /builtin-plugin/IntegrityReadCallback/README: -------------------------------------------------------------------------------- 1 | private -------------------------------------------------------------------------------- /builtin-plugin/LinkerImageLoadCallback/linker_load_callback.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/LinkerImageLoadCallback/linker_load_callback.cc -------------------------------------------------------------------------------- /builtin-plugin/MemoryRemapHook/README: -------------------------------------------------------------------------------- 1 | private -------------------------------------------------------------------------------- /builtin-plugin/ObjcRuntimeHook/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/ObjcRuntimeHook/CMakeLists.txt -------------------------------------------------------------------------------- /builtin-plugin/ObjcRuntimeHook/objc_runtime_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/ObjcRuntimeHook/objc_runtime_hook.h -------------------------------------------------------------------------------- /builtin-plugin/ObjcRuntimeHook/objc_runtime_hook.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/ObjcRuntimeHook/objc_runtime_hook.mm -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/CMakeLists.txt -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/README -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/README: -------------------------------------------------------------------------------- 1 | syscalls.c is automatically generated -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/audit_triggers.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/audit_triggers.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/boolean.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/bootstrap.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_priv.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_priv.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_priv.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_reply.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_reply.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_reply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_reply.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_types.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/clock_types.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/dyld_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/dyld_kernel.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/error.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/exc.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/exc.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/exc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/exc.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/exception.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/exception_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/exception_types.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_info.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_notify.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_notify_reply.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_notify_reply.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_priv.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_priv.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_priv.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_reboot.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_security.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_security.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_security.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_special_ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/host_special_ports.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/_structs.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/asm.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/boolean.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/exception.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/fp_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/fp_reg.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/kern_return.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/kern_return.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/ndr_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/ndr_def.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/processor_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/processor_info.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/rpc.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/sdt_isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/sdt_isa.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/thread_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/thread_state.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/thread_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/thread_status.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/vm_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/vm_param.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/vm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/i386/vm_types.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/kern_return.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/kern_return.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/kmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/kmod.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/lock_set.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/lock_set.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/lock_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/lock_set.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_error.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_exc.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_exc.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_host.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_host.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_host.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_init.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_interface.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_param.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_port.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_port.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_port.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_right.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_right.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_syscalls.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_time.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_traps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_traps.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_types.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_types.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_vm.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_vm.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_vm.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_voucher.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_voucher.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_voucher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_voucher.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_voucher_attr_control.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_voucher_attr_control.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_voucher_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mach_voucher_types.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/_structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/_structs.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/asm.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/boolean.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/exception.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/kern_return.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/kern_return.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/machine_types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/machine_types.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/ndr_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/ndr_def.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/processor_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/processor_info.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/rpc.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/sdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/sdt.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/sdt_isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/sdt_isa.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/thread_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/thread_state.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/thread_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/thread_status.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/vm_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/vm_param.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/vm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/machine/vm_types.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/memory_entry.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/memory_entry.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/memory_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/memory_entry.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/memory_object_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/memory_object_types.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/message.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mig.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mig_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mig_errors.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mig_strncpy_zerofill_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mig_strncpy_zerofill_support.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mig_voucher_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/mig_voucher_support.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/ndr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/ndr.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/notify.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/notify.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/notify.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/policy.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/port.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/port_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/port_obj.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/processor.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/processor.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/processor.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/processor_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/processor_info.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/processor_set.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/processor_set.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/processor_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/processor_set.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/rpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/rpc.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/sdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/sdt.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/semaphore.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/shared_memory_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/shared_memory_server.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/shared_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/shared_region.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/std_types.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/std_types.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/std_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/std_types.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/sync.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/sync_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/sync_policy.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task_access.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task_access.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task_info.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task_inspect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task_inspect.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task_policy.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task_special_ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/task_special_ports.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/telemetry_notification.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/telemetry_notification.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_act.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_act.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_act.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_info.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_policy.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_special_ports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_special_ports.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_state.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_status.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/thread_switch.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/time_value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/time_value.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_attributes.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_behavior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_behavior.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_inherit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_inherit.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_map.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_map.defs -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_map.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_page_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_page_size.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_param.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_prot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_prot.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_purgable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_purgable.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_region.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_statistics.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_sync.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_task.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/mach/vm_types.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/syscall_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/syscall_sw.c -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/XnuInternal/syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/XnuInternal/syscalls.c -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/deprecated/mach_system_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/deprecated/mach_system_call.cc -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/deprecated/system_call.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/deprecated/system_call.cc -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/mach_system_call_log_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/mach_system_call_log_handler.cc -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/misc_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/misc_utility.cc -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/misc_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/misc_utility.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/sensitive_api_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/sensitive_api_monitor.cc -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/supervisor_call_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/supervisor_call_monitor.cc -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/supervisor_call_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/supervisor_call_monitor.h -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/system_call_log_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/system_call_log_handler.cc -------------------------------------------------------------------------------- /builtin-plugin/SupervisorCallMonitor/test_supervisor_call_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SupervisorCallMonitor/test_supervisor_call_monitor.cc -------------------------------------------------------------------------------- /builtin-plugin/SymbolResolver/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SymbolResolver/CMakeLists.txt -------------------------------------------------------------------------------- /builtin-plugin/SymbolResolver/dobby_symbol_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SymbolResolver/dobby_symbol_resolver.h -------------------------------------------------------------------------------- /builtin-plugin/SymbolResolver/elf/dobby_symbol_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SymbolResolver/elf/dobby_symbol_resolver.cc -------------------------------------------------------------------------------- /builtin-plugin/SymbolResolver/macho/dobby_symbol_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SymbolResolver/macho/dobby_symbol_resolver.cc -------------------------------------------------------------------------------- /builtin-plugin/SymbolResolver/macho/dyld_shared_cache_symbol_table_iterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SymbolResolver/macho/dyld_shared_cache_symbol_table_iterator.cc -------------------------------------------------------------------------------- /builtin-plugin/SymbolResolver/macho/shared-cache/dyld_cache_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SymbolResolver/macho/shared-cache/dyld_cache_format.h -------------------------------------------------------------------------------- /builtin-plugin/SymbolResolver/macho/shared_cache_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SymbolResolver/macho/shared_cache_internal.h -------------------------------------------------------------------------------- /builtin-plugin/SymbolResolver/pe/dobby_symbol_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/builtin-plugin/SymbolResolver/pe/dobby_symbol_resolver.cc -------------------------------------------------------------------------------- /cmake/AutoFiles.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/cmake/AutoFiles.cmake -------------------------------------------------------------------------------- /cmake/EarlyGlobals.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/cmake/EarlyGlobals.cmake -------------------------------------------------------------------------------- /cmake/Globals.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/cmake/Globals.cmake -------------------------------------------------------------------------------- /cmake/Macros.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/cmake/Macros.cmake -------------------------------------------------------------------------------- /cmake/Util.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/cmake/Util.cmake -------------------------------------------------------------------------------- /cmake/XcodeGenerator.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/cmake/XcodeGenerator.cmake -------------------------------------------------------------------------------- /cmake/dobby.xcode.source.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/cmake/dobby.xcode.source.cmake -------------------------------------------------------------------------------- /cmake/ios.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/cmake/ios.toolchain.cmake -------------------------------------------------------------------------------- /cmake/mingw64-x86_64.toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/cmake/mingw64-x86_64.toolchain.cmake -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_cover_page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/_cover_page.md -------------------------------------------------------------------------------- /docs/_nav_bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/_nav_bar.md -------------------------------------------------------------------------------- /docs/_side_bar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/_side_bar.md -------------------------------------------------------------------------------- /docs/build-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/build-documentation.md -------------------------------------------------------------------------------- /docs/get-started-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/get-started-android.md -------------------------------------------------------------------------------- /docs/get-started-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/get-started-ios.md -------------------------------------------------------------------------------- /docs/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/get-started.md -------------------------------------------------------------------------------- /docs/images/vue-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/images/vue-logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/intro-board.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/intro-board.md -------------------------------------------------------------------------------- /docs/scripts/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/scripts/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /docs/scripts/palettify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/scripts/palettify.min.js -------------------------------------------------------------------------------- /docs/scripts/palettify.styles.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/scripts/palettify.styles.min.js -------------------------------------------------------------------------------- /docs/styles/grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/styles/grid.min.css -------------------------------------------------------------------------------- /docs/styles/palettify.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/styles/palettify.min.css -------------------------------------------------------------------------------- /docs/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/docs/styles/style.css -------------------------------------------------------------------------------- /example/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/example/CMakeLists.txt -------------------------------------------------------------------------------- /example/android_common_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/example/android_common_api.cc -------------------------------------------------------------------------------- /example/darwin_common_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/example/darwin_common_api.cc -------------------------------------------------------------------------------- /example/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/example/main.cc -------------------------------------------------------------------------------- /external/logging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/logging/CMakeLists.txt -------------------------------------------------------------------------------- /external/logging/cxxlogging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/logging/cxxlogging.cc -------------------------------------------------------------------------------- /external/logging/logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/logging/logging.c -------------------------------------------------------------------------------- /external/logging/logging/check_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/logging/logging/check_logging.h -------------------------------------------------------------------------------- /external/logging/logging/cxxlogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/logging/logging/cxxlogging.h -------------------------------------------------------------------------------- /external/logging/logging/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/logging/logging/logging.h -------------------------------------------------------------------------------- /external/misc-helper/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/misc-helper/CMakeLists.txt -------------------------------------------------------------------------------- /external/misc-helper/async_logger.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/misc-helper/async_logger.cc -------------------------------------------------------------------------------- /external/misc-helper/misc-helper/async_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/misc-helper/misc-helper/async_logger.h -------------------------------------------------------------------------------- /external/misc-helper/misc-helper/variable_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/misc-helper/misc-helper/variable_cache.h -------------------------------------------------------------------------------- /external/misc-helper/pthread_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/misc-helper/pthread_helper.cc -------------------------------------------------------------------------------- /external/misc-helper/pthread_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/misc-helper/pthread_helper.h -------------------------------------------------------------------------------- /external/misc-helper/unistd_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/misc-helper/unistd_helper.h -------------------------------------------------------------------------------- /external/misc-helper/variable_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/misc-helper/variable_cache.c -------------------------------------------------------------------------------- /external/xnucxx/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/CMakeLists.txt -------------------------------------------------------------------------------- /external/xnucxx/LiteCollection.cc: -------------------------------------------------------------------------------- 1 | #include "xnucxx/LiteCollection.h" 2 | -------------------------------------------------------------------------------- /external/xnucxx/LiteIterator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/LiteIterator.cc -------------------------------------------------------------------------------- /external/xnucxx/LiteMemOpt.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/LiteMemOpt.cc -------------------------------------------------------------------------------- /external/xnucxx/LiteMutableArray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/LiteMutableArray.cc -------------------------------------------------------------------------------- /external/xnucxx/LiteMutableBuffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/LiteMutableBuffer.cc -------------------------------------------------------------------------------- /external/xnucxx/LiteObject.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/LiteObject.cc -------------------------------------------------------------------------------- /external/xnucxx/xnucxx/LiteCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/xnucxx/LiteCollection.h -------------------------------------------------------------------------------- /external/xnucxx/xnucxx/LiteIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/xnucxx/LiteIterator.h -------------------------------------------------------------------------------- /external/xnucxx/xnucxx/LiteMemOpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/xnucxx/LiteMemOpt.h -------------------------------------------------------------------------------- /external/xnucxx/xnucxx/LiteMutableArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/xnucxx/LiteMutableArray.h -------------------------------------------------------------------------------- /external/xnucxx/xnucxx/LiteMutableBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/xnucxx/LiteMutableBuffer.h -------------------------------------------------------------------------------- /external/xnucxx/xnucxx/LiteObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/external/xnucxx/xnucxx/LiteObject.h -------------------------------------------------------------------------------- /include/dobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/include/dobby.h -------------------------------------------------------------------------------- /source/InstructionRelocation/InstructionRelocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/InstructionRelocation.h -------------------------------------------------------------------------------- /source/InstructionRelocation/arm/ARMInstructionRelocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/arm/ARMInstructionRelocation.cc -------------------------------------------------------------------------------- /source/InstructionRelocation/arm/ARMInstructionRelocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/arm/ARMInstructionRelocation.h -------------------------------------------------------------------------------- /source/InstructionRelocation/arm64/ARM64InstructionRelocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/arm64/ARM64InstructionRelocation.cc -------------------------------------------------------------------------------- /source/InstructionRelocation/arm64/ARM64InstructionRelocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/arm64/ARM64InstructionRelocation.h -------------------------------------------------------------------------------- /source/InstructionRelocation/arm64/ARM64PCLiteralInstructionTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/arm64/ARM64PCLiteralInstructionTable.h -------------------------------------------------------------------------------- /source/InstructionRelocation/x64/X64InstructionRelocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x64/X64InstructionRelocation.cc -------------------------------------------------------------------------------- /source/InstructionRelocation/x64/X64InstructionRelocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x64/X64InstructionRelocation.h -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/X86InstructionRelocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/X86InstructionRelocation.cc -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/X86InstructionRelocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/X86InstructionRelocation.h -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/deprecated/Ia32Disassembler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/deprecated/Ia32Disassembler.cc -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/deprecated/X86OpcodoDecodeTable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/deprecated/X86OpcodoDecodeTable.cc -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/deprecated/X86OpcodoDecodeTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/deprecated/X86OpcodoDecodeTable.h -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/x86_insn_decode/build_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/x86_insn_decode/build_config.h -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/x86_insn_decode/x86_insn_decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/x86_insn_decode/x86_insn_decode.c -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/x86_insn_decode/x86_insn_decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/x86_insn_decode/x86_insn_decode.h -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/x86_insn_decode/x86_insn_reader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/x86_insn_decode/x86_insn_reader.c -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_modrm_reg_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_modrm_reg_group.c -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_one_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_one_byte.c -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_sse_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_sse_group.c -------------------------------------------------------------------------------- /source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_two_byte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InstructionRelocation/x86/x86_insn_decode/x86_opcode_two_byte.c -------------------------------------------------------------------------------- /source/InterceptRouting/InterceptRouting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/InterceptRouting.cpp -------------------------------------------------------------------------------- /source/InterceptRouting/InterceptRouting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/InterceptRouting.h -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/DynamicBinaryInstrument/DynamicBinaryInstrumentExport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/DynamicBinaryInstrument/DynamicBinaryInstrumentExport.cc -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/DynamicBinaryInstrument/dynamic-binary-instrument.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/DynamicBinaryInstrument/dynamic-binary-instrument.cc -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/DynamicBinaryInstrument/dynamic-binary-instrument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/DynamicBinaryInstrument/dynamic-binary-instrument.h -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/DynamicBinaryInstrument/intercept_routing_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/DynamicBinaryInstrument/intercept_routing_handler.cc -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/DynamicBinaryInstrument/intercept_routing_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/DynamicBinaryInstrument/intercept_routing_handler.h -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/FunctionInlineReplace/FunctionInlineReplaceExport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/FunctionInlineReplace/FunctionInlineReplaceExport.cc -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/FunctionInlineReplace/function-inline-replace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/FunctionInlineReplace/function-inline-replace.cc -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/FunctionInlineReplace/function-inline-replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/FunctionInlineReplace/function-inline-replace.h -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/FunctionWrapper/FunctionWrapperExport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/FunctionWrapper/FunctionWrapperExport.cc -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/FunctionWrapper/function-wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/FunctionWrapper/function-wrapper.cc -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/FunctionWrapper/function-wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/FunctionWrapper/function-wrapper.h -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/FunctionWrapper/intercept_routing_handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/FunctionWrapper/intercept_routing_handler.cc -------------------------------------------------------------------------------- /source/InterceptRouting/Routing/FunctionWrapper/intercept_routing_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/Routing/FunctionWrapper/intercept_routing_handler.h -------------------------------------------------------------------------------- /source/InterceptRouting/RoutingPlugin/NearBranchTrampoline/NeaBranchTrampoline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/RoutingPlugin/NearBranchTrampoline/NeaBranchTrampoline.cc -------------------------------------------------------------------------------- /source/InterceptRouting/RoutingPlugin/NearBranchTrampoline/NearBranchTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/RoutingPlugin/NearBranchTrampoline/NearBranchTrampoline.h -------------------------------------------------------------------------------- /source/InterceptRouting/RoutingPlugin/RoutingPlugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/RoutingPlugin/RoutingPlugin.cc -------------------------------------------------------------------------------- /source/InterceptRouting/RoutingPlugin/RoutingPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/InterceptRouting/RoutingPlugin/RoutingPlugin.h -------------------------------------------------------------------------------- /source/Interceptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/Interceptor.cpp -------------------------------------------------------------------------------- /source/Interceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/Interceptor.h -------------------------------------------------------------------------------- /source/MemoryAllocator/AssemblyCodeBuilder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/AssemblyCodeBuilder.cc -------------------------------------------------------------------------------- /source/MemoryAllocator/AssemblyCodeBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/AssemblyCodeBuilder.h -------------------------------------------------------------------------------- /source/MemoryAllocator/CodeBuffer/CodeBufferBase.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/CodeBuffer/CodeBufferBase.cc -------------------------------------------------------------------------------- /source/MemoryAllocator/CodeBuffer/CodeBufferBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/CodeBuffer/CodeBufferBase.h -------------------------------------------------------------------------------- /source/MemoryAllocator/CodeBuffer/code-buffer-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/CodeBuffer/code-buffer-arm.cc -------------------------------------------------------------------------------- /source/MemoryAllocator/CodeBuffer/code-buffer-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/CodeBuffer/code-buffer-arm.h -------------------------------------------------------------------------------- /source/MemoryAllocator/CodeBuffer/code-buffer-arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/CodeBuffer/code-buffer-arm64.cc -------------------------------------------------------------------------------- /source/MemoryAllocator/CodeBuffer/code-buffer-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/CodeBuffer/code-buffer-arm64.h -------------------------------------------------------------------------------- /source/MemoryAllocator/CodeBuffer/code-buffer-x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/CodeBuffer/code-buffer-x64.cc -------------------------------------------------------------------------------- /source/MemoryAllocator/CodeBuffer/code-buffer-x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/CodeBuffer/code-buffer-x64.h -------------------------------------------------------------------------------- /source/MemoryAllocator/CodeBuffer/code-buffer-x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/CodeBuffer/code-buffer-x86.cc -------------------------------------------------------------------------------- /source/MemoryAllocator/CodeBuffer/code-buffer-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/CodeBuffer/code-buffer-x86.h -------------------------------------------------------------------------------- /source/MemoryAllocator/MemoryArena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/MemoryArena.cc -------------------------------------------------------------------------------- /source/MemoryAllocator/MemoryArena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/MemoryArena.h -------------------------------------------------------------------------------- /source/MemoryAllocator/NearMemoryArena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/NearMemoryArena.cc -------------------------------------------------------------------------------- /source/MemoryAllocator/NearMemoryArena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/MemoryAllocator/NearMemoryArena.h -------------------------------------------------------------------------------- /source/PlatformUnifiedInterface/ExecMemory/ClearCacheTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/PlatformUnifiedInterface/ExecMemory/ClearCacheTool.h -------------------------------------------------------------------------------- /source/PlatformUnifiedInterface/ExecMemory/CodePatchTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/PlatformUnifiedInterface/ExecMemory/CodePatchTool.h -------------------------------------------------------------------------------- /source/PlatformUnifiedInterface/StdMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/PlatformUnifiedInterface/StdMemory.h -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/AssemblyClosureTrampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/AssemblyClosureTrampoline.h -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/arm/ARMAssemblyClosureTrampoline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/arm/ARMAssemblyClosureTrampoline.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/arm/closure-bridge-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/arm/closure-bridge-arm.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/arm/dummy/closure-bridge-template-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/arm/dummy/closure-bridge-template-arm.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/arm/dummy/closure-trampoline-template-arm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/arm/dummy/closure-trampoline-template-arm.S -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/arm/helper-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/arm/helper-arm.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/arm64/ARM64AssemblyClosureTrampoline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/arm64/ARM64AssemblyClosureTrampoline.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/arm64/closure-bridge-arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/arm64/closure-bridge-arm64.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/closure-bridge-template-arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/closure-bridge-template-arm64.c -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/closure-trampoline-template-arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/closure-trampoline-template-arm64.S -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/dynamic-closure-trampoline-template-arm64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/arm64/dummy/dynamic-closure-trampoline-template-arm64.S -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/arm64/helper-arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/arm64/helper-arm64.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/common-bridge-handler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/common-bridge-handler.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/common-bridge-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/common-bridge-handler.h -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/x64/X64AssemblyClosureTrampoline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/x64/X64AssemblyClosureTrampoline.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/x64/closure-bridge-x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/x64/closure-bridge-x64.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/x64/dummy/closure-bridge-template-x64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/x64/dummy/closure-bridge-template-x64.c -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/x64/dummy/closure-trampoline-template-x64.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/x64/dummy/closure-trampoline-template-x64.S -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/x64/helper-x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/x64/helper-x64.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/x86/X86AssemblyClosureTrampoline.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/x86/X86AssemblyClosureTrampoline.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/x86/closure-bridge-x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/x86/closure-bridge-x86.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/ClosureTrampolineBridge/x86/helper-x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/ClosureTrampolineBridge/x86/helper-x86.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/Trampoline/Trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/Trampoline/Trampoline.h -------------------------------------------------------------------------------- /source/TrampolineBridge/Trampoline/arm/trampoline-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/Trampoline/arm/trampoline-arm.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/Trampoline/arm64/trampoline-arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/Trampoline/arm64/trampoline-arm64.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/Trampoline/x64/trampoline-x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/Trampoline/x64/trampoline-x64.cc -------------------------------------------------------------------------------- /source/TrampolineBridge/Trampoline/x86/trampoline-x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/TrampolineBridge/Trampoline/x86/trampoline-x86.cc -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/clear-cache-tool-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/clear-cache-tool-all.c -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/clear-cache-tool/clear-cache-tool-arm-dummy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/clear-cache-tool/clear-cache-tool-arm-dummy.cc -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/clear-cache-tool/clear-cache-tool-arm64-dummy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/clear-cache-tool/clear-cache-tool-arm64-dummy.cc -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/code-patch-tool-darwin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/code-patch-tool-darwin.cc -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/code-patch-tool-posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/code-patch-tool-posix.cc -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/code-patch-tool-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/code-patch-tool-windows.cc -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/substrated/include/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/substrated/include/bootstrap.h -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/substrated/include/xpc/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/substrated/include/xpc/base.h -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/substrated/mach_interface_support/substrated.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/substrated/mach_interface_support/substrated.defs -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/substrated/mach_interface_support/substrated_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/substrated/mach_interface_support/substrated_client.c -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/substrated/mach_interface_support/substrated_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/substrated/mach_interface_support/substrated_client.h -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/substrated/mach_interface_support/substrated_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/substrated/mach_interface_support/substrated_server.c -------------------------------------------------------------------------------- /source/UserMode/ExecMemory/substrated/mach_interface_support/substrated_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/ExecMemory/substrated/mach_interface_support/substrated_server.h -------------------------------------------------------------------------------- /source/UserMode/MultiThreadSupport/ThreadSupport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/MultiThreadSupport/ThreadSupport.cpp -------------------------------------------------------------------------------- /source/UserMode/MultiThreadSupport/ThreadSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/MultiThreadSupport/ThreadSupport.h -------------------------------------------------------------------------------- /source/UserMode/PlatformUtil/Darwin/ProcessRuntimeUtility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/PlatformUtil/Darwin/ProcessRuntimeUtility.cc -------------------------------------------------------------------------------- /source/UserMode/PlatformUtil/Linux/ProcessRuntimeUtility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/PlatformUtil/Linux/ProcessRuntimeUtility.cc -------------------------------------------------------------------------------- /source/UserMode/PlatformUtil/ProcessRuntimeUtility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/PlatformUtil/ProcessRuntimeUtility.h -------------------------------------------------------------------------------- /source/UserMode/PlatformUtil/Windows/ProcessRuntimeUtility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/PlatformUtil/Windows/ProcessRuntimeUtility.cc -------------------------------------------------------------------------------- /source/UserMode/Thread/PlatformThread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/Thread/PlatformThread.cc -------------------------------------------------------------------------------- /source/UserMode/Thread/PlatformThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/Thread/PlatformThread.h -------------------------------------------------------------------------------- /source/UserMode/Thread/platform-thread-posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/Thread/platform-thread-posix.cc -------------------------------------------------------------------------------- /source/UserMode/Thread/platform-thread-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/Thread/platform-thread-windows.cc -------------------------------------------------------------------------------- /source/UserMode/UnifiedInterface/platform-darwin/mach_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/UnifiedInterface/platform-darwin/mach_vm.h -------------------------------------------------------------------------------- /source/UserMode/UnifiedInterface/platform-posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/UnifiedInterface/platform-posix.cc -------------------------------------------------------------------------------- /source/UserMode/UnifiedInterface/platform-windows.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/UnifiedInterface/platform-windows.cc -------------------------------------------------------------------------------- /source/UserMode/UnifiedInterface/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/UnifiedInterface/platform.h -------------------------------------------------------------------------------- /source/UserMode/UnifiedInterface/semaphore.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/UnifiedInterface/semaphore.cc -------------------------------------------------------------------------------- /source/UserMode/UnifiedInterface/semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/UserMode/UnifiedInterface/semaphore.h -------------------------------------------------------------------------------- /source/core/arch/Cpu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/Cpu.cc -------------------------------------------------------------------------------- /source/core/arch/Cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/Cpu.h -------------------------------------------------------------------------------- /source/core/arch/CpuFeature.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/CpuFeature.cc -------------------------------------------------------------------------------- /source/core/arch/CpuFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/CpuFeature.h -------------------------------------------------------------------------------- /source/core/arch/CpuRegister.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/CpuRegister.cc -------------------------------------------------------------------------------- /source/core/arch/CpuRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/CpuRegister.h -------------------------------------------------------------------------------- /source/core/arch/CpuUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/CpuUtils.h -------------------------------------------------------------------------------- /source/core/arch/arm/constants-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/arm/constants-arm.h -------------------------------------------------------------------------------- /source/core/arch/arm/registers-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/arm/registers-arm.h -------------------------------------------------------------------------------- /source/core/arch/arm64/constants-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/arm64/constants-arm64.h -------------------------------------------------------------------------------- /source/core/arch/arm64/registers-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/arm64/registers-arm64.h -------------------------------------------------------------------------------- /source/core/arch/x64/constants-x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/x64/constants-x64.h -------------------------------------------------------------------------------- /source/core/arch/x64/registers-x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/x64/registers-x64.h -------------------------------------------------------------------------------- /source/core/arch/x86/constants-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/x86/constants-x86.h -------------------------------------------------------------------------------- /source/core/arch/x86/cpu-x86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/x86/cpu-x86.cc -------------------------------------------------------------------------------- /source/core/arch/x86/cpu-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/x86/cpu-x86.h -------------------------------------------------------------------------------- /source/core/arch/x86/registers-x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/arch/x86/registers-x86.h -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler-arch.h -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler-arm.cc -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler-arm.h -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler-arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler-arm64.cc -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler-arm64.h -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler-ia32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler-ia32.cc -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler-ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler-ia32.h -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler-x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler-x64.cc -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler-x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler-x64.h -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler-x86-shared.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler-x86-shared.cc -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler-x86-shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler-x86-shared.h -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler.cc -------------------------------------------------------------------------------- /source/core/modules/assembler/assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/assembler/assembler.h -------------------------------------------------------------------------------- /source/core/modules/codegen/codegen-arm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/codegen/codegen-arm.cc -------------------------------------------------------------------------------- /source/core/modules/codegen/codegen-arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/codegen/codegen-arm.h -------------------------------------------------------------------------------- /source/core/modules/codegen/codegen-arm64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/codegen/codegen-arm64.cc -------------------------------------------------------------------------------- /source/core/modules/codegen/codegen-arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/codegen/codegen-arm64.h -------------------------------------------------------------------------------- /source/core/modules/codegen/codegen-ia32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/codegen/codegen-ia32.cc -------------------------------------------------------------------------------- /source/core/modules/codegen/codegen-ia32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/codegen/codegen-ia32.h -------------------------------------------------------------------------------- /source/core/modules/codegen/codegen-x64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/codegen/codegen-x64.cc -------------------------------------------------------------------------------- /source/core/modules/codegen/codegen-x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/codegen/codegen-x64.h -------------------------------------------------------------------------------- /source/core/modules/codegen/codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/core/modules/codegen/codegen.h -------------------------------------------------------------------------------- /source/core/modules/emulator/dummy.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/dobby.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/dobby.cpp -------------------------------------------------------------------------------- /source/dobby_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/dobby_internal.h -------------------------------------------------------------------------------- /source/include/common_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/include/common_header.h -------------------------------------------------------------------------------- /source/include/list_structure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/include/list_structure.h -------------------------------------------------------------------------------- /source/include/platform_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/include/platform_macro.h -------------------------------------------------------------------------------- /source/include/type_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/include/type_macro.h -------------------------------------------------------------------------------- /source/include/utility_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/source/include/utility_macro.h -------------------------------------------------------------------------------- /tests/CMakelists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/tests/CMakelists.txt -------------------------------------------------------------------------------- /tests/InstructionRelocation/aarch64/test_aarch64_instruction_relocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/tests/InstructionRelocation/aarch64/test_aarch64_instruction_relocation.cc -------------------------------------------------------------------------------- /tests/InstructionRelocation/x64/test_x64_instruction_relocation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/tests/InstructionRelocation/x64/test_x64_instruction_relocation.cc -------------------------------------------------------------------------------- /tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/Dobby/HEAD/tests/catch.hpp --------------------------------------------------------------------------------