Created
August 17, 2017 06:01
-
-
Save rickmark/d19b9ae7e721a7890c22be4449b7e089 to your computer and use it in GitHub Desktop.
Playing with MojoKDP
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Last login: Wed Aug 16 18:53:59 on ttys000 | |
| Ricks-MacBook-Pro:~ rickmark$ lldb -s <(echo 'gdb-remote localhost:52364') | |
| (lldb) command source -s 0 '/dev/fd/63' | |
| Executing commands in '/dev/fd/63'. | |
| (lldb) gdb-remote localhost:52364 | |
| Kernel UUID: D3314D98-5D40-3CD8-98A4-F1DD46C20E03 | |
| Load Address: 0xffffff8018e00000 | |
| warning: 'kernel' contains a debug script. To run this script in this debug session: | |
| command script import "/Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Kernels/kernel.dSYM/Contents/Resources/DWARF/../Python/kernel.py" | |
| To run all discovered debug scripts in this session: | |
| settings set target.load-script-from-symbol-file true | |
| Kernel slid 0x18c00000 in memory. | |
| Loaded kernel file /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Kernels/kernel | |
| Loading 92 kext modules ...............warning: Can't find binary/dSYM for com.apple.kext.MojoKDP (93B3F3CE-360D-3653-A2B7-CF9F2BF5132C) | |
| ............................................................................. done. | |
| (lldb) list | |
| (lldb) help list | |
| List relevant source code using one of several shorthand formats. Expects 'raw' input (see 'help raw-input'.) | |
| Syntax: | |
| _regexp-list <file>:<line> // List around specific file/line | |
| _regexp-list <line> // List current file around specified line | |
| _regexp-list <function-name> // List specified function | |
| _regexp-list 0x<address> // List around specified address | |
| _regexp-list -[<count>] // List previous <count> lines | |
| _regexp-list // List subsequent lines | |
| 'list' is an abbreviation for '_regexp-list' | |
| (lldb) ? | |
| error: '?' is not a valid command. | |
| error: Unrecognized command '?'. | |
| (lldb) help | |
| Debugger commands: | |
| apropos -- List debugger commands related to a word or subject. | |
| breakpoint -- Commands for operating on breakpoints (see 'help b' for shorthand.) | |
| bugreport -- Commands for creating domain-specific bug reports. | |
| command -- Commands for managing custom LLDB commands. | |
| disassemble -- Disassemble specified instructions in the current target. Defaults to the current function for the current thread and | |
| stack frame. | |
| expression -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting. | |
| frame -- Commands for selecting and examing the current thread's stack frames. | |
| gdb-remote -- Connect to a process via remote GDB server. If no host is specifed, localhost is assumed. | |
| gui -- Switch into the curses based GUI mode. | |
| help -- Show a list of all debugger commands, or give details about a specific command. | |
| kdp-remote -- Connect to a process via remote KDP server. If no UDP port is specified, port 41139 is assumed. | |
| language -- Commands specific to a source language. | |
| log -- Commands controlling LLDB internal logging. | |
| memory -- Commands for operating on memory in the current target process. | |
| platform -- Commands to manage and create platforms. | |
| plugin -- Commands for managing LLDB plugins. | |
| process -- Commands for interacting with processes on the current platform. | |
| quit -- Quit the LLDB debugger. | |
| register -- Commands to access registers for the current thread and stack frame. | |
| script -- Invoke the script interpreter with provided code and display any results. Start the interactive interpreter if no code | |
| is supplied. | |
| settings -- Commands for managing LLDB settings. | |
| source -- Commands for examining source code described by debug information for the current target process. | |
| target -- Commands for operating on debugger targets. | |
| thread -- Commands for operating on one or more threads in the current process. | |
| type -- Commands for operating on the type system. | |
| version -- Show the LLDB debugger version. | |
| watchpoint -- Commands for operating on watchpoints. | |
| Current command abbreviations (type 'help command alias' for more info): | |
| add-dsym -- Add a debug symbol file to one of the target's current modules by specifying a path to a debug symbols file, or using the | |
| options to specify a module to download symbols for. | |
| attach -- Attach to process by ID or name. | |
| b -- Set a breakpoint using one of several shorthand formats. | |
| bt -- Show the current thread's call stack. Any numeric argument displays at most that many frames. The argument 'all' displays all | |
| threads. | |
| c -- Continue execution of all threads in the current process. | |
| call -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting. | |
| continue -- Continue execution of all threads in the current process. | |
| detach -- Detach from the current target process. | |
| di -- Disassemble specified instructions in the current target. Defaults to the current function for the current thread and stack | |
| frame. | |
| dis -- Disassemble specified instructions in the current target. Defaults to the current function for the current thread and stack | |
| frame. | |
| display -- Evaluate an expression at every stop (see 'help target stop-hook'.) | |
| down -- Select a newer stack frame. Defaults to moving one frame, a numeric argument can specify an arbitrary number. | |
| env -- Shorthand for viewing and setting environment variables. | |
| exit -- Quit the LLDB debugger. | |
| f -- Select the current stack frame by index from within the current thread (see 'thread backtrace'.) | |
| file -- Create a target using the argument as the main executable. | |
| finish -- Finish executing the current stack frame and stop after returning. Defaults to current thread unless specified. | |
| image -- Commands for accessing information for one or more target modules. | |
| j -- Set the program counter to a new address. | |
| jump -- Set the program counter to a new address. | |
| kill -- Terminate the current target process. | |
| l -- List relevant source code using one of several shorthand formats. | |
| list -- List relevant source code using one of several shorthand formats. | |
| n -- Source level single step, stepping over calls. Defaults to current thread unless specified. | |
| next -- Source level single step, stepping over calls. Defaults to current thread unless specified. | |
| nexti -- Instruction level single step, stepping over calls. Defaults to current thread unless specified. | |
| ni -- Instruction level single step, stepping over calls. Defaults to current thread unless specified. | |
| p -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting. | |
| parray -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting. | |
| po -- Evaluate an expression on the current thread. Displays any returned value with formatting controlled by the type's author. | |
| poarray -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting. | |
| print -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting. | |
| q -- Quit the LLDB debugger. | |
| r -- Launch the executable in the debugger. | |
| rbreak -- Sets a breakpoint or set of breakpoints in the executable. | |
| repl -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting. | |
| run -- Launch the executable in the debugger. | |
| s -- Source level single step, stepping into calls. Defaults to current thread unless specified. | |
| si -- Instruction level single step, stepping into calls. Defaults to current thread unless specified. | |
| sif -- Step through the current block, stopping if you step directly into a function whose name matches the TargetFunctionName. | |
| step -- Source level single step, stepping into calls. Defaults to current thread unless specified. | |
| stepi -- Instruction level single step, stepping into calls. Defaults to current thread unless specified. | |
| t -- Change the currently selected thread. | |
| tbreak -- Set a one-shot breakpoint using one of several shorthand formats. | |
| undisplay -- Stop displaying expression at every stop (specified by stop-hook index.) | |
| up -- Select an older stack frame. Defaults to moving one frame, a numeric argument can specify an arbitrary number. | |
| x -- Read from the memory of the current target process. | |
| For more information on any command, type 'help <command-name>'. | |
| (lldb) image | |
| Commands for accessing information for one or more target modules. | |
| Syntax: target modules <sub-command> ... | |
| The following subcommands are supported: | |
| add -- Add a new module to the current target's modules. | |
| dump -- Commands for dumping information about one or more target modules. | |
| list -- List current executable and dependent shared library images. | |
| load -- Set the load addresses for one or more sections in a target module. | |
| lookup -- Look up information within executable and dependent shared library images. | |
| search-paths -- Commands for managing module search paths for a target. | |
| show-unwind -- Show synthesized unwind instructions for a function. | |
| For more help on any particular subcommand, type 'help <command> <subcommand>'. | |
| (lldb) image list | |
| [ 0] D3314D98-5D40-3CD8-98A4-F1DD46C20E03 0xffffff8018e00000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Kernels/kernel | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Kernels/kernel.dSYM/Contents/Resources/DWARF/kernel | |
| [ 1] E3701C61-A548-3181-9F3E-C90DF8327185 0xffffff7f996ea000 //System/Library/Extensions/corecrypto.kext/Contents/MacOS/corecrypto | |
| [ 2] 968CBFF1-925D-321E-A5E0-0C5C563BF08C 0xffffff7f99b3b000 //System/Library/Extensions/Libm.kext/Contents/MacOS/Libm | |
| [ 3] 225C22A5-813D-3651-9C40-FDEEAB0D78E1 0xffffff7f9cc8b000 //System/Library/Extensions/pthread.kext/Contents/MacOS/pthread | |
| [ 4] 4F7FB6AD-2498-3F71-827C-ED7AA4BF2511 0xffffff7f9963a000 //System/Library/Extensions/IOACPIFamily.kext/Contents/MacOS/IOACPIFamily | |
| [ 5] 3E00E7D2-E569-341D-9BE0-34D5DE491825 0xffffff7f997b8000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOPCIFamily.kext/IOPCIFamily | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOPCIFamily.kext.dSYM/Contents/Resources/DWARF/IOPCIFamily | |
| [ 6] 65E05472-6AE7-3308-8CC8-FA6CB0DB2AEE 0xffffff7f9c9c1000 //System/Library/Extensions/AppleACPIPlatform.kext/Contents/MacOS/AppleACPIPlatform | |
| [ 7] DB526B45-1A45-3A81-A0C1-57F826CADEDF 0xffffff7f99643000 //System/Library/Extensions/AppleBusPowerController.kext/Contents/MacOS/AppleBusPowerController | |
| [ 8] 896273C6-36AE-30AC-9274-1BCB7C9A4062 0xffffff7f99658000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOUSBHostFamily.kext/Contents/MacOS/IOUSBHostFamily | |
| [ 9] DDF94CEB-B30D-3DA9-A783-F86D72A62215 0xffffff7f996c9000 //System/Library/Extensions/KernelRelayHost.kext/Contents/MacOS/KernelRelayHost | |
| [ 10] 3DC3C93A-F1BC-3B04-B770-B3771039FF0E 0xffffff7f99793000 //System/Library/Extensions/AppleCredentialManager.kext/Contents/MacOS/AppleCredentialManager | |
| [ 11] B14DC3D3-7250-3DA3-BF50-C666EBEDAF4C 0xffffff7f99822000 //System/Library/Extensions/IOReportFamily.kext/Contents/MacOS/IOReportFamily | |
| [ 12] EA5D0966-E8EA-337A-98EB-195806E8F723 0xffffff7f99936000 //System/Library/Extensions/AppleFDEKeyStore.kext/Contents/MacOS/AppleFDEKeyStore | |
| [ 13] 5AA0EAB8-6128-3B0C-B8CE-293BDB9D21A8 0xffffff7f99cac000 //System/Library/Extensions/IOBluetoothFamily.kext/Contents/MacOS/IOBluetoothFamily | |
| [ 14] F908D7F5-4F54-3B89-8657-57F06350F4DB 0xffffff7f997f3000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOStorageFamily.kext/Contents/MacOS/IOStorageFamily | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOStorageFamily.kext.dSYM/Contents/Resources/DWARF/IOStorageFamily | |
| [ 15] 7A04C2E6-40FF-36A9-84D4-FDF685F3B0A9 0xffffff7f99fa8000 //System/Library/Extensions/IOHDIXController.kext/Contents/MacOS/IOHDIXController | |
| [ 16] E54425FE-971A-38E2-8F27-82A1B7A3479D 0xffffff7f99f2e000 //System/Library/Extensions/AppleMobileFileIntegrity.kext/Contents/MacOS/AppleMobileFileIntegrity | |
| [ 17] 884F9643-4316-3596-9A77-F1053C033358 0xffffff7f9d0a0000 //System/Library/Extensions/AppleKeyStore.kext/Contents/MacOS/AppleKeyStore | |
| [ 18] 87563A26-608B-3C95-8476-CAA6E1271FBF 0xffffff7f9cb22000 //System/Library/Extensions/ALF.kext/Contents/MacOS/ALF | |
| [ 19] 3B280DAB-903F-33DC-8110-525A1154B11E 0xffffff7f9ce28000 //System/Library/Extensions/AppleMatch.kext/Contents/MacOS/AppleMatch | |
| [ 20] 7AAA3FD3-1652-3365-BCB4-25B9572525AF 0xffffff7f9d080000 //System/Library/Extensions/Sandbox.kext/Contents/MacOS/Sandbox | |
| [ 21] B87D3377-617E-3F24-993B-D70AE269A837 0xffffff7f9d47d000 //System/Library/Extensions/TMSafetyNet.kext/Contents/MacOS/TMSafetyNet | |
| [ 22] 1486A49E-2D3F-3D7E-B07A-D2008F327113 0xffffff7f9d480000 //System/Library/Extensions/Quarantine.kext/Contents/MacOS/Quarantine | |
| [ 23] BC2E6D01-BCBB-3525-BF38-BF99C3F1EC46 0xffffff7f9cb3c000 //System/Library/Extensions/AppleAPIC.kext/Contents/MacOS/AppleAPIC | |
| [ 24] 9BB02681-4B47-3592-AD62-71FB0BF56965 0xffffff7f9d0ff000 //System/Library/Extensions/AppleSMBIOS.kext/Contents/MacOS/AppleSMBIOS | |
| [ 25] 3FD1BCF4-8AFC-3CE6-A36E-26410544AD14 0xffffff7f9d3e2000 //System/Library/Extensions/AppleRTC.kext/Contents/MacOS/AppleRTC | |
| [ 26] 185F0EBF-0262-3370-BD47-8FE4C8AA726E 0xffffff7f9ce2d000 //System/Library/Extensions/IOSMBusFamily.kext/Contents/MacOS/IOSMBusFamily | |
| [ 27] C2873EC3-4194-3C09-B16B-FE63BF4C2EAF 0xffffff7f9d6f2000 //System/Library/Extensions/AppleACPIPlatform.kext/Contents/PlugIns/AppleACPIEC.kext/Contents/MacOS/AppleACPIEC | |
| [ 28] 2CFB49B8-4CC2-320B-9C6E-99646DFD8571 0xffffff7f9d6b4000 //System/Library/Extensions/AppleHPET.kext/Contents/MacOS/AppleHPET | |
| [ 29] 6035514B-B403-36FD-BD88-6ADCD3990C9F 0xffffff7f99941000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOHIDFamily.kext/Contents/MacOS/IOHIDFamily | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOHIDFamily.kext.dSYM/Contents/Resources/DWARF/IOHIDFamily | |
| [ 30] 6EA42B65-0CD7-3678-87D5-E002D2CDA2D5 0xffffff7f9cefb000 //System/Library/Extensions/AppleACPIPlatform.kext/Contents/PlugIns/AppleACPIButtons.kext/Contents/MacOS/AppleACPIButtons | |
| [ 31] F1292652-3882-3625-AB38-A0DAB306E9C7 0xffffff7f9a1d9000 //System/Library/Extensions/AppleEFIRuntime.kext/Contents/MacOS/AppleEFIRuntime | |
| [ 32] 9D230163-2F83-3EAC-9152-D0A15AB056AB 0xffffff7f9cb31000 //System/Library/Extensions/AppleEFIRuntime.kext/Contents/PlugIns/AppleEFINVRAM.kext/Contents/MacOS/AppleEFINVRAM | |
| [ 33] E5344248-8F3B-3B41-AA68-27F9A6C175F7 0xffffff7f9ca97000 //System/Library/Extensions/IOATAFamily.kext/Contents/MacOS/IOATAFamily | |
| [ 34] BDC5E432-B04E-3ACF-A213-672128140381 0xffffff7f9dfbc000 //System/Library/Extensions/IOATAFamily.kext/Contents/PlugIns/AppleIntelPIIXATA.kext/Contents/MacOS/AppleIntelPIIXATA | |
| [ 35] 1B35F2B8-7EB1-3F3A-86DD-35F07996E335 0xffffff7f99a58000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOUSBFamily.kext/Contents/MacOS/IOUSBFamily | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOUSBFamily.kext.dSYM/Contents/Resources/DWARF/IOUSBFamily | |
| [ 36] 0FEE9916-40A3-3F33-B125-103191A1611A 0xffffff7f99ecd000 //System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostPacketFilter.kext/Contents/MacOS/AppleUSBHostPacketFilter | |
| [ 37] 811980CC-05F5-3197-B700-CAD0726EB99D 0xffffff7f9ce31000 //System/Library/Extensions/AppleSmartBatteryManager.kext/Contents/MacOS/AppleSmartBatteryManager | |
| [ 38] 6326DB88-5330-3F0C-91F6-D478AB5E7503 0xffffff7f99ed6000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IONetworkingFamily.kext/Contents/MacOS/IONetworkingFamily | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IONetworkingFamily.kext.dSYM/Contents/Resources/DWARF/IONetworkingFamily | |
| [ 39] 34B30414-098D-3D22-AAB5-1A754D0647C6 0xffffff7f9ca71000 //System/Library/Extensions/IONetworkingFamily.kext/Contents/PlugIns/AppleIntel8254XEthernet.kext/Contents/MacOS/AppleIntel8254XEthernet | |
| [ 40] CC5812B3-E187-3737-BB79-6C58211224C8 0xffffff7f999f2000 //System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBEHCI.kext/Contents/MacOS/AppleUSBEHCI | |
| [ 41] 61F38B09-9A0F-36A8-9ABF-FD6C90B68209 0xffffff7f9cf32000 //System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBUHCI.kext/Contents/MacOS/AppleUSBUHCI | |
| [ 42] A7D78739-C921-3770-9979-AFB20CA47936 0xffffff7f9d33d000 //System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBUHCIPCI.kext/Contents/MacOS/AppleUSBUHCIPCI | |
| [ 43] 7DBE53B6-8BED-3DD3-984C-7AAAA20C484C 0xffffff7f9a07a000 //System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBXHCI.kext/Contents/MacOS/AppleUSBXHCI | |
| [ 44] 65795D1D-0F6C-3648-81CB-8C7CDE52270C 0xffffff7f9a0c1000 //System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBXHCIPCI.kext/Contents/MacOS/AppleUSBXHCIPCI | |
| [ 45] 48BD8A21-B99B-3D70-9FEA-32B381CCAA54 0xffffff7f9cc9a000 //System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBEHCIPCI.kext/Contents/MacOS/AppleUSBEHCIPCI | |
| [ 46] 5C275B66-A173-3D92-853A-44FC35D45FFC 0xffffff7f9cac2000 //System/Library/Extensions/IOAHCIFamily.kext/Contents/MacOS/IOAHCIFamily | |
| [ 47] 64D547B5-153B-34CC-B506-10E958212BF6 0xffffff7f9e01a000 //System/Library/Extensions/AppleAHCIPort.kext/Contents/MacOS/AppleAHCIPort | |
| [ 48] 0B188EA4-DAC4-3EB7-9212-36318F549C19 0xffffff7f9cd4b000 //System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCIBlockStorage.kext/Contents/MacOS/IOAHCIBlockStorage | |
| [ 49] 82139727-96EE-3990-B7E3-950D3F9799F5 0xffffff7f998c7000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/MacOS/IOSCSIArchitectureModelFamily | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOSCSIArchitectureModelFamily.kext.dSYM/Contents/Resources/DWARF/IOSCSIArchitectureModelFamily | |
| [ 50] 076A585D-4979-3E8C-9D63-949C2D5D1764 0xffffff7f9cadf000 //System/Library/Extensions/IOAHCIFamily.kext/Contents/PlugIns/IOAHCISerialATAPI.kext/Contents/MacOS/IOAHCISerialATAPI | |
| [ 51] 057A044B-8E0D-3A57-8861-87193496E893 0xffffff7f99fa1000 //System/Library/Extensions/HFSEncodings.kext/Contents/MacOS/HFSEncodings | |
| [ 52] 13DD449C-FA18-3584-92A1-F91CAED7746A 0xffffff7f9a117000 //System/Library/Extensions/AppleFSCompressionTypeDataless.kext/Contents/MacOS/AppleFSCompressionTypeDataless | |
| [ 53] A8B584B1-03DF-3780-923B-4FD6FF942049 0xffffff7f9d3a6000 //System/Library/Extensions/AppleFSCompressionTypeZlib.kext/Contents/MacOS/AppleFSCompressionTypeZlib | |
| [ 54] B0B8A05A-CC75-325C-A3DA-76C4F7B6F21A 0xffffff7f9d409000 //System/Library/Extensions/HFS.kext/Contents/MacOS/HFS | |
| [ 55] 06D08FFE-3FB9-37A0-A0AE-BDDCDA4184D6 0xffffff7f9e1c7000 //System/Library/Extensions/BootCache.kext/Contents/MacOS/BootCache | |
| [ 56] 0E033F13-4AF3-38EB-966E-7FACAAFA222D 0xffffff7f9cb41000 //System/Library/Extensions/CoreStorage.kext/Contents/MacOS/CoreStorage | |
| [ 57] 9571529C-397B-3627-B558-6B3E0B2FB0DF 0xffffff7f99fc6000 //System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesKernelBacked.kext/Contents/MacOS/AppleDiskImagesKernelBacked | |
| [ 58] 112DCA3E-C706-356B-9BA6-3178BC511E7A 0xffffff7f99fde000 //System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesRAMBackingStore.kext/Contents/MacOS/AppleDiskImagesRAMBackingStore | |
| [ 59] D22C905C-ED65-30ED-875C-86B6B8C67E3F 0xffffff7f9cc3d000 //System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesFileBackingStore.kext/Contents/MacOS/AppleDiskImagesFileBackingStore | |
| [ 60] 528F9884-B0EE-3893-833C-DF831E498B60 0xffffff7f9c8ce000 //System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesUDIFDiskImage.kext/Contents/MacOS/AppleDiskImagesUDIFDiskImage | |
| [ 61] 3E1B0698-FB62-367A-8970-3B83D3DEFCEB 0xffffff7f9d39e000 //System/Library/Extensions/IOHDIXController.kext/Contents/PlugIns/AppleDiskImagesReadWriteDiskImage.kext/Contents/MacOS/AppleDiskImagesReadWriteDiskImage | |
| [ 62] 9EEF7CF2-673C-3743-84DD-D3B3D5E61DDB 0xffffff7f99c77000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOCDStorageFamily.kext/Contents/MacOS/IOCDStorageFamily | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOCDStorageFamily.kext.dSYM/Contents/Resources/DWARF/IOCDStorageFamily | |
| [ 63] 9BC77405-09A3-3398-AE63-98894C42E288 0xffffff7f99c88000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IODVDStorageFamily.kext/Contents/MacOS/IODVDStorageFamily | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IODVDStorageFamily.kext.dSYM/Contents/Resources/DWARF/IODVDStorageFamily | |
| [ 64] EE071733-F836-360B-958B-440E2CCF81E1 0xffffff7f99c96000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOBDStorageFamily.kext/Contents/MacOS/IOBDStorageFamily | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOBDStorageFamily.kext.dSYM/Contents/Resources/DWARF/IOBDStorageFamily | |
| [ 65] 55C067B6-E8B4-3348-8EF2-131A7B5CC16A 0xffffff7f9cc60000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/IOSCSIMultimediaCommandsDevice.kext/Contents/MacOS/IOSCSIMultimediaCommandsDevice | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/IOSCSIMultimediaCommandsDevice.kext.dSYM/Contents/Resources/DWARF/IOSCSIMultimediaCommandsDevice | |
| [ 66] FF53AE3E-7008-356D-A3C2-67EF25E5033A 0xffffff7f9e1bc000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/SCSITaskUserClient.kext/Contents/MacOS/SCSITaskUserClient | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOSCSIArchitectureModelFamily.kext/Contents/PlugIns/SCSITaskUserClient.kext.dSYM/Contents/Resources/DWARF/SCSITaskUserClient | |
| [ 67] 93FCA7CE-F6C1-3229-8425-7E4B664231BD 0xffffff7f999d0000 //System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHostCompositeDevice.kext/Contents/MacOS/AppleUSBHostCompositeDevice | |
| [ 68] 54F58B56-AFFE-3605-8ADC-E205EAD4D230 0xffffff7f9a195000 //System/Library/Extensions/AppleUSBNetworking.kext/Contents/MacOS/AppleUSBNetworking | |
| [ 69] 60EE9D2B-FFB8-3035-8A63-F46B1D75D128 0xffffff7f9caec000 //System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/AppleUSBHub.kext/Contents/MacOS/AppleUSBHub | |
| [ 70] 8C7C5296-D36F-3304-90FE-2A6DD1B0DED8 0xffffff7f999d8000 //System/Library/Extensions/IOUSBHostFamily.kext/Contents/PlugIns/IOUSBHostHIDDevice.kext/Contents/MacOS/IOUSBHostHIDDevice | |
| [ 71] FDE5FF00-45B5-3460-BC9A-ED934B50A1AE 0xffffff7f99ca2000 //System/Library/Extensions/AppleHIDKeyboard.kext/Contents/MacOS/AppleHIDKeyboard | |
| [ 72] A423518D-758D-3021-A111-A59F44D760A8 0xffffff7f9e205000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOGraphicsFamily.kext/IOGraphicsFamily | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOGraphicsFamily.kext.dSYM/Contents/Resources/DWARF/IOGraphicsFamily | |
| [ 73] 480556A8-289E-3A63-83F8-0E9224255A68 0xffffff7f9e241000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IONDRVSupport.kext/IONDRVSupport | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IONDRVSupport.kext.dSYM/Contents/Resources/DWARF/IONDRVSupport | |
| [ 74] CE7B6D9D-0577-3683-8410-CA8707BBDA4B 0xffffff7f9cc49000 //System/Library/Extensions/IOSlowAdaptiveClockingFamily.kext/Contents/MacOS/IOSlowAdaptiveClockingFamily | |
| [ 75] 6FE984DD-A1FE-309E-83CF-B346989A6F17 0xffffff7f9e253000 //System/Library/Extensions/AppleIntelSlowAdaptiveClocking.kext/Contents/MacOS/AppleIntelSlowAdaptiveClocking | |
| [ 76] 88026B2E-E18A-3463-97D4-05EE7DED9F06 0xffffff7f9e256000 //System/Library/Extensions/AppleSMC.kext/Contents/MacOS/AppleSMC | |
| [ 77] A578127A-BBAD-32D4-AEBD-20E14786110D 0xffffff7f9e273000 //System/Library/Extensions/IOPlatformPluginFamily.kext/Contents/MacOS/IOPlatformPluginFamily | |
| [ 78] BC0876C4-ED42-31B7-AF69-9178B7B1177A 0xffffff7f9e27b000 //System/Library/Extensions/IOPlatformPluginFamily.kext/Contents/PlugIns/IOPlatformPluginLegacy.kext/Contents/MacOS/IOPlatformPluginLegacy | |
| [ 79] 5D441A20-E42C-313C-BF80-6894AAAE0DFA 0xffffff7f9e28d000 //System/Library/Extensions/IOPlatformPluginFamily.kext/Contents/PlugIns/ACPI_SMC_PlatformPlugin.kext/Contents/MacOS/ACPI_SMC_PlatformPlugin | |
| [ 80] DDD8F03B-087A-3709-8296-354CCE62BE15 0xffffff7f99b46000 //System/Library/Extensions/vecLib.kext/Contents/MacOS/vecLib | |
| [ 81] C0F713E6-785F-3BC6-8800-1D6E2C7AE123 0xffffff7f9e2c9000 //System/Library/Extensions/AppleSMBusController.kext/Contents/MacOS/AppleSMBusController | |
| [ 82] BF69780E-2728-34A8-A5B9-59290572CCF3 0xffffff7f9e2d8000 //System/Library/Extensions/AppleMCCSControl.kext/Contents/MacOS/AppleMCCSControl | |
| [ 83] 86C220DD-F35A-304C-A5AC-35D7EC4FDC90 0xffffff7f9e2ec000 //System/Library/Extensions/AppleHV.kext/Contents/MacOS/AppleHV | |
| [ 84] 9B1AC3B0-A459-3D88-B43D-428EA39DDB8A 0xffffff7f9e2fa000 //System/Library/Extensions/AppleOSXWatchdog.kext/Contents/MacOS/AppleOSXWatchdog | |
| [ 85] 7B7DB739-3DAA-3E7A-BA9E-38C3256D15B6 0xffffff7f9e2ff000 //System/Library/Extensions/Dont Steal Mac OS X.kext/Contents/MacOS/Dont Steal Mac OS X | |
| [ 86] 272855EE-C816-329B-927C-383C40F83F1A 0xffffff7f9e065000 /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOSerialFamily.kext/Contents/MacOS/IOSerialFamily | |
| /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Extensions/IOSerialFamily.kext.dSYM/Contents/Resources/DWARF/IOSerialFamily | |
| [ 87] 28B1B6A7-E5CD-3C1A-B337-DD81C3A2CE01 0xffffff7f9e310000 //System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothSerialManager.kext/Contents/MacOS/IOBluetoothSerialManager | |
| [ 88] 41481668-8740-3468-95AC-C28D370432D6 0xffffff7f9e31e000 //System/Library/Extensions/webcontentfilter.kext/Contents/MacOS/webcontentfilter | |
| [ 89] 24A912F5-68C5-3BF9-9676-4FB131A6E90C 0xffffff7f9e324000 //System/Library/Extensions/IOSurface.kext/Contents/MacOS/IOSurface | |
| [ 90] 32E2019A-799D-3E86-9F40-7D9AB4500A9D 0xffffff7f9e33b000 //System/Library/Extensions/IOUserEthernet.kext/Contents/MacOS/IOUserEthernet | |
| [ 91] 48FE4CE8-66CC-335E-9ABD-835F954B114D 0xffffff7f9e344000 //System/Library/Extensions/pmtelemetry.kext/Contents/MacOS/pmtelemetry | |
| (lldb) showallkexts | |
| error: 'showallkexts' is not a valid command. | |
| error: Unrecognized command 'showallkexts'. | |
| (lldb) showallkmods | |
| error: 'showallkmods' is not a valid command. | |
| error: Unrecognized command 'showallkmods'. | |
| (lldb) image | |
| Available completions: | |
| add | |
| dump | |
| list | |
| load | |
| lookup | |
| search-paths | |
| show-unwind | |
| (lldb) image | |
| Available completions: | |
| add | |
| dump | |
| list | |
| load | |
| lookup | |
| search-paths | |
| show-unwind | |
| (lldb) image dump | |
| Commands for dumping information about one or more target modules. | |
| Syntax: target modules dump [headers|symtab|sections|symfile|line-table] [<file1> <file2> ...] | |
| The following subcommands are supported: | |
| line-table -- Dump the line table for one or more compilation units. | |
| objfile -- Dump the object file headers from one or more target modules. | |
| sections -- Dump the sections from one or more target modules. | |
| symfile -- Dump the debug symbol file for one or more target modules. | |
| symtab -- Dump the symbol table from one or more target modules. | |
| For more help on any particular subcommand, type 'help <command> <subcommand>'. | |
| (lldb) image dump objfile | |
| Dumping headers for 92 module(s). | |
| 0x7fcf32d94ed0: ObjectFileMachO64, file = '/Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Kernels/kernel', arch = x86_64 | |
| SectID Type File Address Perm File Off. File Size Flags Section Name | |
| ---------- ---------------- --------------------------------------- ---- ---------- ---------- ---------- ---------------------------- | |
| 0x00000100 container [0xffffff8000200000-0xffffff8000a00000) r-x 0x00000000 0x00800000 0x00000000 kernel.__TEXT | |
| 0x00000001 code [0xffffff8000295000-0xffffff80009399bc) r-x 0x00095000 0x006a49bc 0x80000400 kernel.__TEXT.__text | |
| 0x00000002 regular [0xffffff80009399c0-0xffffff800095e9e0) r-x 0x007399c0 0x00025020 0x00000000 kernel.__TEXT.__const | |
| 0x00000003 data-cstr [0xffffff800095e9e0-0xffffff80009fddf6) r-x 0x0075e9e0 0x0009f416 0x00000002 kernel.__TEXT.__cstring | |
| 0x00000004 regular [0xffffff80009fde00-0xffffff80009ff8f4) r-x 0x007fde00 0x00001af4 0x00000000 kernel.__TEXT.__os_log | |
| 0x00000200 container [0xffffff8000a00000-0xffffff8000b0b000) rw- 0x00800000 0x0010b000 0x00000000 kernel.__DATA | |
| 0x00000005 regular [0xffffff8000a00000-0xffffff8000a00020) rw- 0x00800000 0x00000020 0x00000000 kernel.__DATA.__got | |
| 0x00000006 data-ptrs [0xffffff8000a00020-0xffffff8000a00230) rw- 0x00800020 0x00000210 0x00000009 kernel.__DATA.__mod_init_func | |
| 0x00000007 data-ptrs [0xffffff8000a00230-0xffffff8000a00438) rw- 0x00800230 0x00000208 0x0000000a kernel.__DATA.__mod_term_func | |
| 0x00000008 data [0xffffff8000a01000-0xffffff8000a5edc0) rw- 0x00801000 0x0005ddc0 0x00000000 kernel.__DATA.__data | |
| 0x00000009 regular [0xffffff8000a5edc0-0xffffff8000a5efc0) rw- 0x0085edc0 0x00000200 0x00000000 kernel.__DATA.__sfi_class_reg | |
| 0x0000000a regular [0xffffff8000a5efc0-0xffffff8000a618e0) rw- 0x0085efc0 0x00002920 0x00000000 kernel.__DATA.__sysctl_set | |
| 0x0000000b regular rw- 0x008618e0 0x00000000 0x00000000 kernel.__DATA.__llvm_prf_cnts | |
| 0x0000000c regular rw- 0x008618e0 0x00000000 0x00000000 kernel.__DATA.__llvm_prf_data | |
| 0x0000000d regular rw- 0x008618e0 0x00000000 0x00000000 kernel.__DATA.__llvm_prf_names | |
| 0x0000000e regular [0xffffff8000a62000-0xffffff8000ac3e10) rw- 0x00862000 0x00061e10 0x00000000 kernel.__DATA.__common | |
| 0x0000000f regular [0xffffff8000ac4000-0xffffff8000b0aecc) rw- 0x008c4000 0x00046ecc 0x00000000 kernel.__DATA.__bss | |
| 0x00000300 container [0xffffff8000b0b000-0xffffff8000b36000) rw- 0x0090b000 0x0002b000 0x00000000 kernel.__CONST | |
| 0x00000010 regular [0xffffff8000b0b000-0xffffff8000b35a10) rw- 0x0090b000 0x0002aa10 0x00000000 kernel.__CONST.__constdata | |
| 0x00000400 container [0xffffff8000100000-0xffffff8000113000) rw- 0x00936000 0x00013000 0x00000000 kernel.__HIB | |
| 0x00000011 regular [0xffffff8000100000-0xffffff8000106000) rw- 0x00936000 0x00006000 0x00000000 kernel.__HIB.__bootPT | |
| 0x00000012 regular [0xffffff8000106000-0xffffff8000107098) rw- 0x0093c000 0x00001098 0x00000000 kernel.__HIB.__desc | |
| 0x00000013 data [0xffffff8000108000-0xffffff800010c074) rw- 0x0093e000 0x00004074 0x00000000 kernel.__HIB.__data | |
| 0x00000014 code [0xffffff800010d000-0xffffff800010f60d) rw- 0x00943000 0x0000260d 0x00000000 kernel.__HIB.__text | |
| 0x00000015 regular [0xffffff8000110000-0xffffff8000110100) rw- 0x00946000 0x00000100 0x00000000 kernel.__HIB.__const | |
| 0x00000016 regular [0xffffff8000111000-0xffffff8000111200) rw- 0x00947000 0x00000200 0x00000000 kernel.__HIB.__bss | |
| 0x00000017 regular [0xffffff8000112000-0xffffff8000112114) rw- 0x00948000 0x00000114 0x00000000 kernel.__HIB.__common | |
| 0x00000500 container [0xffffff8000b36000-0xffffff8000b37000) rw- 0x00949000 0x00001000 0x00000000 kernel.__DESC | |
| 0x00000018 regular [0xffffff8000b36000-0xffffff8000b36088) rw- 0x00949000 0x00000088 0x00000000 kernel.__DESC.master_sstk | |
| 0x00000600 container [0xffffff8000b37000-0xffffff8000b38000) rw- 0x0094a000 0x00001000 0x00000000 kernel.__VECTORS | |
| 0x00000019 regular [0xffffff8000b37000-0xffffff8000b370f0) rw- 0x0094a000 0x000000f0 0x00000000 kernel.__VECTORS.__recover | |
| 0x00000700 container [0xffffff8000b38000-0xffffff8000b51000) rw- 0x0094b000 0x00019000 0x00000000 kernel.__KLD | |
| 0x0000001a code [0xffffff8000b38000-0xffffff8000b4a238) rw- 0x0094b000 0x00012238 0x80000400 kernel.__KLD.__text | |
| 0x0000001b data-cstr [0xffffff8000b4a238-0xffffff8000b4aa9b) rw- 0x0095d238 0x00000863 0x00000002 kernel.__KLD.__cstring | |
| 0x0000001c regular [0xffffff8000b4aaa0-0xffffff8000b50b38) rw- 0x0095daa0 0x00006098 0x00000000 kernel.__KLD.__const | |
| 0x0000001d data-ptrs [0xffffff8000b50b38-0xffffff8000b50b40) rw- 0x00963b38 0x00000008 0x00000009 kernel.__KLD.__mod_init_func | |
| 0x0000001e data-ptrs [0xffffff8000b50b40-0xffffff8000b50b48) rw- 0x00963b40 0x00000008 0x0000000a kernel.__KLD.__mod_term_func | |
| 0x0000001f regular [0xffffff8000b50b48-0xffffff8000b50b49) rw- 0x00963b48 0x00000001 0x00000000 kernel.__KLD.__bss | |
| 0x00000800 container [0xffffff8000b51000-0xffffff8000b52000) rw- 0x00964000 0x00001000 0x00000000 kernel.__LAST | |
| 0x00000020 data-ptrs [0xffffff8000b51000-0xffffff8000b51008) rw- 0x00964000 0x00000008 0x00000009 kernel.__LAST.__mod_init_func | |
| 0x00000021 regular rw- 0x00964008 0x00000000 0x00000000 kernel.__LAST.__last | |
| 0x00000900 container rw- 0x00965000 0x00000000 0x00000004 kernel.__PRELINK_TEXT | |
| 0x00000022 code rw- 0x00965000 0x00000000 0x00000000 kernel.__PRELINK_TEXT.__text | |
| 0x00000a00 container rw- 0x00965000 0x00000000 0x00000004 kernel.__PLK_TEXT_EXEC | |
| 0x00000023 code rw- 0x00965000 0x00000000 0x00000000 kernel.__PLK_TEXT_EXEC.__text | |
| 0x00000b00 container rw- 0x00965000 0x00000000 0x00000004 kernel.__PRELINK_DATA | |
| 0x00000024 data rw- 0x00965000 0x00000000 0x00000000 kernel.__PRELINK_DATA.__data | |
| 0x00000c00 container rw- 0x00965000 0x00000000 0x00000004 kernel.__PLK_DATA_CONST | |
| 0x00000025 data rw- 0x00965000 0x00000000 0x00000000 kernel.__PLK_DATA_CONST.__data | |
| 0x00000d00 container rw- 0x00965000 0x00000000 0x00000004 kernel.__PLK_LLVM_COV | |
| 0x00000026 regular rw- 0x00965000 0x00000000 0x00000000 kernel.__PLK_LLVM_COV.__llvm_covmap | |
| 0x00000e00 container rw- 0x00965000 0x00000000 0x00000004 kernel.__PLK_LINKEDIT | |
| 0x00000027 data rw- 0x00965000 0x00000000 0x00000000 kernel.__PLK_LINKEDIT.__data | |
| 0x00000f00 container rw- 0x00965000 0x00000000 0x00000004 kernel.__PRELINK_INFO | |
| 0x00000028 regular rw- 0x00965000 0x00000000 0x00000000 kernel.__PRELINK_INFO.__info | |
| 0x00001000 container [0xffffff8000b52000-0xffffff8000c7a920) r-- 0x009be0e0 0x00128920 0x00000000 kernel.__LINKEDIT | |
| 0x00001100 container r-- 0x00965000 0x000590dd 0x00000000 kernel.__CTF | |
| 0x00000029 regular [0xffffff8000b52000-0xffffff8000bab0dd) r-- 0x00965000 0x000590dd 0x00000000 kernel.__CTF.__ctf | |
| Symtab, file = /Library/Developer/KDKs/KDK_10.12.6_16G29.kdk/System/Library/Kernels/kernel, num_symbols = 25366: | |
| Debug symbol | |
| |Synthetic symbol | |
| ||Externally Visible | |
| ||| | |
| Index UserID DSX Type File Address/Value Load Address Size Flags Name | |
| ------- ------ --- --------------- ------------------ ------------------ ------------------ ---------- ---------------------------------- | |
| [ 0] 0 X Data 0xffffff8000a0598c 0x0000000000000008 0x000f0000 .constructors_used | |
| [ 1] 1 X Data 0xffffff8000a05994 0x000000000000066c 0x000f0000 .destructors_used | |
| [ 2] 2 X Code 0xffffff80002e93f0 0x0000000000000060 0x000f0000 Assert | |
| [ 3] 3 X Invalid 0xffffff8000101000 0x0000000000001000 0x000f0000 BootPDPT | |
| [ 4] 4 X Invalid 0xffffff8000100000 0x0000000000001000 0x000f0000 BootPML4 | |
| [ 5] 5 X Invalid 0xffffff8000102000 0x0000000000004000 0x000f0000 BootPTD | |
| [ 6] 6 X Code 0xffffff8000785050 0x0000000000000190 0x000f0000 CURSIG | |
| [ 7] 7 X Code 0xffffff80003d50c0 0x0000000000000070 0x000f0000 CalculateCRC | |
| [ 8] 8 X Data 0xffffff8000a8a498 0x0000000000000008 0x000f0000 DADDR1 | |
| [ 9] 9 X Data 0xffffff8000a8a4a0 0x0000000000000008 0x000f0000 DADDR2 | |
| [ 10] 10 X Data 0xffffff8000a8a488 0x0000000000000008 0x000f0000 DMAP1 | |
| [ 11] 11 X Data 0xffffff8000a8a490 0x0000000000000008 0x000f0000 DMAP2 | |
| [ 12] 12 X Code 0xffffff8000917a70 0x0000000000000090 0x000f0000 DTCreateEntryIterator | |
| [ 13] 13 X Code 0xffffff8000917e10 0x0000000000000060 0x000f0000 DTCreatePropertyIterator | |
| [ 14] 14 X Code 0xffffff8000917b00 0x0000000000000070 0x000f0000 DTDisposeEntryIterator | |
| [ 15] 15 X Code 0xffffff8000917e70 0x0000000000000030 0x000f0000 DTDisposePropertyIterator | |
| [ 16] 16 X Code 0xffffff8000917b70 0x0000000000000090 0x000f0000 DTEnterEntry | |
| [ 17] 17 X Code 0xffffff8000917570 0x0000000000000010 0x000f0000 DTEntryIsEqual | |
| [ 18] 18 X Code 0xffffff8000917c00 0x0000000000000060 0x000f0000 DTExitEntry | |
| [ 19] 19 X Code 0xffffff8000917580 0x0000000000000030 0x000f0000 DTFindEntry | |
| [ 20] 20 X Code 0xffffff8000917d80 0x0000000000000090 0x000f0000 DTGetProperty | |
| [ 21] 21 X Code 0xffffff8000917550 0x0000000000000020 0x000f0000 DTInit | |
| [ 22] 22 X Code 0xffffff8000917c60 0x0000000000000100 0x000f0000 DTIterateEntries | |
| [ 23] 23 X Code 0xffffff8000917ea0 0x0000000000000060 0x000f0000 DTIterateProperties | |
| [ 24] 24 X Code 0xffffff80009176f0 0x00000000000002a0 0x000f0000 DTLookupEntry | |
| [ 25] 25 X Code 0xffffff8000917d60 0x0000000000000020 0x000f0000 DTRestartEntryIteration | |
| [ 26] 26 X Code 0xffffff8000917f00 0x0000000000000020 0x000f0000 DTRestartPropertyIteration | |
| [ 27] 27 X Code 0xffffff80004035c0 0x00000000000003b0 0x000f0000 Debugger | |
| [ 28] 28 X Code 0xffffff800040a1d0 0x0000000000000090 0x000f0000 DebuggerWithCallback | |
| [ 29] 29 X Code 0xffffff8000403590 0x0000000000000030 0x000f0000 DebuggerWithContext | |
| [ 30] 30 X Data 0xffffff8000a08d38 0x0000000000000048 0x000f0000 EntropyData | |
| [ 31] 31 X Code 0xffffff80003d68f0 0x0000000000000140 0x000f0000 FIPS_SHA1Final | |
| [ 32] 32 X Code 0xffffff80003d5710 0x0000000000000040 0x000f0000 FIPS_SHA1Init | |
| [ 33] 33 X Code 0xffffff80003d5750 0x0000000000000140 0x000f0000 FIPS_SHA1Update | |
| [ 34] 34 X Code 0xffffff8000883c30 0x0000000000000060 0x000f0000 IOAlignmentToSize | |
| [ 35] 35 X Code 0xffffff80008fdaa0 0x00000000000000e0 0x000f0000 IOBSDGetPlatformUUID | |
| [ 36] 36 X Code 0xffffff80008fdb80 0x0000000000000010 0x000f0000 IOBSDMountChange | |
| [ 37] 37 X Code 0xffffff80008fc9e0 0x0000000000000080 0x000f0000 IOBSDNameMatching | |
| [ 38] 38 X Code 0xffffff80008fda10 0x0000000000000020 0x000f0000 IOBSDRegistryEntryForDeviceTree | |
| [ 39] 39 X Code 0xffffff80008fda50 0x0000000000000050 0x000f0000 IOBSDRegistryEntryGetData | |
| [ 40] 40 X Code 0xffffff80008fda30 0x0000000000000020 0x000f0000 IOBSDRegistryEntryRelease | |
| [ 41] 41 X Code 0xffffff80008da180 0x0000000000000070 0x000f0000 IOCPURunPlatformActiveActions | |
| [ 42] 42 X Code 0xffffff80008da1f0 0x0000000000000090 0x000f0000 IOCPURunPlatformHaltRestartActions | |
| [ 43] 43 X Code 0xffffff80008da280 0x0000000000000090 0x000f0000 IOCPURunPlatformPanicActions | |
| [ 44] 44 X Code 0xffffff80008da110 0x0000000000000070 0x000f0000 IOCPURunPlatformQuiesceActions | |
| [ 45] 45 X Code 0xffffff80008fc940 0x00000000000000a0 0x000f0000 IOCatalogueMatchingDriversPresent | |
| [ 46] 46 X Code 0xffffff800087e320 0x0000000000000050 0x000f0000 IOCloseDebugDataFile | |
| [ 47] 47 X Code 0xffffff80008839d0 0x00000000000000a0 0x000f0000 IOCopyLogNameForPID | |
| [ 48] 48 X Code 0xffffff80008822a0 0x0000000000000030 0x000f0000 IOCreateThread | |
| [ 49] 49 X Code 0xffffff8000886940 0x0000000000000070 0x000f0000 IODTFreeLoaderInfo | |
| [ 50] 50 X Code 0xffffff8000886aa0 0x00000000000000d0 0x000f0000 IODTGetDefault | |
| [ 51] 51 X Code 0xffffff80008869b0 0x00000000000000f0 0x000f0000 IODTGetLoaderInfo | |
| [ 52] 52 X Code 0xffffff80003b70a0 0x0000000000000050 0x000f0000 IODefaultCacheBits | |
| [ 53] 53 X Code 0xffffff8000883770 0x0000000000000010 0x000f0000 IODelay | |
| [ 54] 54 X Code 0xffffff80008822d0 0x0000000000000020 0x000f0000 IOExitThread | |
| [ 55] 55 X Code 0xffffff80008fcd00 0x0000000000000c70 0x000f0000 IOFindBSDRoot | |
| [ 56] 56 X Code 0xffffff8000883920 0x0000000000000050 0x000f0000 IOFindNameForValue | |
| [ 57] 57 X Code 0xffffff8000883970 0x0000000000000060 0x000f0000 IOFindValueForName | |
| [ 58] 58 X Code 0xffffff80008836a0 0x0000000000000030 0x000f0000 IOFlushProcessorCache | |
| [ 59] 59 X Code 0xffffff8000882360 0x0000000000000060 0x000f0000 IOFree | |
| [ 60] 60 X Code 0xffffff8000882580 0x00000000000000a0 0x000f0000 IOFreeAligned | |
| [ 61] 61 X Code 0xffffff8000882a10 0x0000000000000190 0x000f0000 IOFreeContiguous | |
| [ 62] 62 X Code 0xffffff80008832e0 0x00000000000000e0 0x000f0000 IOFreePageable | |
| [ 63] 63 X Code 0xffffff8000917480 0x00000000000000d0 0x000f0000 IOGetBootKeyStoreData | |
| [ 64] 64 X Code 0xffffff80003b73a0 0x00000000000000c0 0x000f0000 IOGetLastPageNumber | |
| [ 65] 65 X Code 0xffffff80003b7460 0x0000000000000050 0x000f0000 IOGetTime | |
| [ 66] 66 X Code 0xffffff800087e370 0x0000000000000060 0x000f0000 IOHibernateIOKitSleep | |
| [ 67] 67 X Code 0xffffff8000881da0 0x0000000000000030 0x000f0000 IOHibernateSetWakeCapabilities | |
| [ 68] 68 X Code 0xffffff800087e3d0 0x00000000000004c0 0x000f0000 IOHibernateSystemHasSlept | |
| [ 69] 69 X Code 0xffffff800087eac0 0x00000000000001a0 0x000f0000 IOHibernateSystemInit | |
| [ 70] 70 X Code 0xffffff800087e900 0x0000000000000110 0x000f0000 IOHibernateSystemPostWake | |
| [ 71] 71 X Code 0xffffff800087d9e0 0x0000000000000080 0x000f0000 IOHibernateSystemPostWakeTrim | |
| [ 72] 72 X Code 0xffffff8000881dd0 0x0000000000000220 0x000f0000 IOHibernateSystemRestart | |
| [ 73] 73 X Code 0xffffff800087c840 0x00000000000011a0 0x000f0000 IOHibernateSystemSleep | |
| [ 74] 74 X Code 0xffffff800087e890 0x0000000000000070 0x000f0000 IOHibernateSystemWake | |
| [ 75] 75 X Code 0xffffff800087ea10 0x00000000000000b0 0x000f0000 IOHibernateWasScreenLocked | |
| [ 76] 76 X Code 0xffffff8000882ba0 0x0000000000000190 0x000f0000 IOIteratePageableMaps | |
| [ 77] 77 X Code 0xffffff80008826a0 0x0000000000000210 0x000f0000 IOKernelAllocateWithPhysicalRestrict | |
| [ 78] 78 X Code 0xffffff8000882620 0x0000000000000080 0x000f0000 IOKernelFreePhysical | |
| [ 79] 79 X Code 0xffffff80008fc880 0x0000000000000020 0x000f0000 IOKitBSDInit | |
| [ 80] 80 X Code 0xffffff8000884b40 0x0000000000000090 0x000f0000 IOKitInitializeTime | |
| [ 81] 81 X Code 0xffffff8000881ff0 0x0000000000000240 0x000f0000 IOLibInit | |
| [ 82] 82 X Code 0xffffff8000883cb0 0x0000000000000050 0x000f0000 IOLockAlloc | |
| [ 83] 83 X Code 0xffffff8000883d00 0x0000000000000020 0x000f0000 IOLockFree | |
| [ 84] 84 X Code 0xffffff8000883d20 0x0000000000000010 0x000f0000 IOLockGetMachLock | |
| [ 85] 85 X Data 0xffffff8000ac2820 0x0000000000000008 0x000f0000 IOLockGroup | |
| [ 86] 86 X Code 0xffffff8000883c90 0x0000000000000020 0x000f0000 IOLockInitWithState | |
| [ 87] 87 X Code 0xffffff8000883d90 0x0000000000000030 0x000f0000 IOLockSleep | |
| [ 88] 88 X Code 0xffffff8000883dc0 0x0000000000000030 0x000f0000 IOLockSleepDeadline | |
| [ 89] 89 X Code 0xffffff8000883d50 0x0000000000000020 0x000f0000 IOLockSleepDeadline_darwin14 | |
| [ 90] 90 X Code 0xffffff8000883d30 0x0000000000000020 0x000f0000 IOLockSleep_darwin14 | |
| [ 91] 91 X Code 0xffffff8000883df0 0x0000000000000020 0x000f0000 IOLockWakeup | |
| [ 92] 92 X Code 0xffffff8000883d70 0x0000000000000020 0x000f0000 IOLockWakeup_darwin14 | |
| [ 93] 93 X Code 0xffffff8000883790 0x00000000000000c0 0x000f0000 IOLog | |
| [ 94] 94 X Code 0xffffff8000883890 0x0000000000000090 0x000f0000 IOLogv | |
| [ 95] 95 X Code 0xffffff80008822f0 0x0000000000000070 0x000f0000 IOMalloc | |
| [ 96] 96 X Code 0xffffff80008823f0 0x0000000000000190 0x000f0000 IOMallocAligned | |
| [ 97] 97 X Code 0xffffff80008828b0 0x0000000000000160 0x000f0000 IOMallocContiguous | |
| [ 98] 98 X Code 0xffffff8000882d90 0x0000000000000100 0x000f0000 IOMallocPageable | |
| [ 99] 99 X Code 0xffffff80003b70f0 0x0000000000000150 0x000f0000 IOMapPages | |
| [ 100] 100 X Code 0xffffff80008c7350 0x00000000000000c0 0x000f0000 IOMappedRead16 | |
| [ 101] 101 X Code 0xffffff80008c7410 0x00000000000000b0 0x000f0000 IOMappedRead32 | |
| [ 102] 102 X Code 0xffffff80008c74c0 0x00000000000000b0 0x000f0000 IOMappedRead64 | |
| [ 103] 103 X Code 0xffffff80008c7290 0x00000000000000c0 0x000f0000 IOMappedRead8 | |
| [ 104] 104 X Code 0xffffff80008c7640 0x00000000000000d0 0x000f0000 IOMappedWrite16 | |
| [ 105] 105 X Code 0xffffff80008c7710 0x00000000000000d0 0x000f0000 IOMappedWrite32 | |
| [ 106] 106 X Code 0xffffff80008c77e0 0x00000000000000d0 0x000f0000 IOMappedWrite64 | |
| [ 107] 107 X Code 0xffffff80008c7570 0x00000000000000d0 0x000f0000 IOMappedWrite8 | |
| [ 108] 108 X Code 0xffffff80008c70f0 0x00000000000000e0 0x000f0000 IOMapperIOVMAlloc | |
| [ 109] 109 X Code 0xffffff80008c71d0 0x0000000000000040 0x000f0000 IOMapperIOVMFree | |
| [ 110] 110 X Code 0xffffff80008c7210 0x0000000000000080 0x000f0000 IOMapperInsertPage | |
| [ 111] 111 X Code 0xffffff80008ce200 0x0000000000000090 0x000f0000 IOMemoryDescriptorMapAlloc | |
| [ 112] 112 X Code 0xffffff80008823c0 0x0000000000000030 0x000f0000 IOMemoryTag | |
| [ 113] 113 X Code 0xffffff8000887fe0 0x0000000000000010 0x000f0000 IONDRVLibrariesInitialize | |
| [ 114] 114 X Code 0xffffff80008fca80 0x0000000000000160 0x000f0000 IONetworkNamePrefixMatching | |
| [ 115] 115 X Code 0xffffff80008fcbe0 0x0000000000000120 0x000f0000 IOOFPathMatching | |
| [ 116] 116 X Code 0xffffff800087e160 0x00000000000001c0 0x000f0000 IOOpenDebugDataFile | |
| [ 117] 117 X Code 0xffffff8000882d30 0x0000000000000060 0x000f0000 IOPageableMapForAddress | |
| [ 118] 118 X Code 0xffffff8000883780 0x0000000000000010 0x000f0000 IOPause | |
| [ 119] 119 X Code 0xffffff80008b8870 0x0000000000000160 0x000f0000 IOPolledFilePollersClose | |
| [ 120] 120 X Code 0xffffff80008b85c0 0x0000000000000150 0x000f0000 IOPolledFilePollersOpen | |
| [ 121] 121 X Code 0xffffff80008b9820 0x00000000000003b0 0x000f0000 IOPolledFileRead | |
| [ 122] 122 X Code 0xffffff80008b93d0 0x0000000000000060 0x000f0000 IOPolledFileSeek | |
| [ 123] 123 X Code 0xffffff80008b9430 0x00000000000003e0 0x000f0000 IOPolledFileWrite | |
| [ 124] 124 X Code 0xffffff80008ee4c0 0x0000000000000200 0x000f0000 IOPrintPlane | |
| [ 125] 125 X Code 0xffffff80003b7270 0x0000000000000130 0x000f0000 IOProtectCacheMode | |
| [ 126] 126 X Code 0xffffff8000884090 0x0000000000000020 0x000f0000 IORWLockAlloc | |
| [ 127] 127 X Code 0xffffff80008840b0 0x0000000000000020 0x000f0000 IORWLockFree | |
| [ 128] 128 X Code 0xffffff80008840d0 0x0000000000000010 0x000f0000 IORWLockGetMachLock | |
| [ 129] 129 X Code 0xffffff80008fd970 0x0000000000000090 0x000f0000 IORamDiskBSDRoot | |
| [ 130] 130 X Code 0xffffff8000884ea0 0x0000000000000080 0x000f0000 IORecordProgressBackbuffer | |
| [ 131] 131 X Code 0xffffff8000883e60 0x0000000000000060 0x000f0000 IORecursiveLockAlloc | |
| [ 132] 132 X Code 0xffffff8000883e10 0x0000000000000050 0x000f0000 IORecursiveLockAllocWithLockGroup | |
| [ 133] 133 X Code 0xffffff8000883ec0 0x0000000000000030 0x000f0000 IORecursiveLockFree | |
| [ 134] 134 X Code 0xffffff8000883ef0 0x0000000000000010 0x000f0000 IORecursiveLockGetMachLock | |
| [ 135] 135 X Code 0xffffff8000883fb0 0x0000000000000020 0x000f0000 IORecursiveLockHaveLock | |
| [ 136] 136 X Code 0xffffff8000883f00 0x0000000000000040 0x000f0000 IORecursiveLockLock | |
| [ 137] 137 X Code 0xffffff8000883fd0 0x0000000000000050 0x000f0000 IORecursiveLockSleep | |
| [ 138] 138 X Code 0xffffff8000884020 0x0000000000000050 0x000f0000 IORecursiveLockSleepDeadline | |
| [ 139] 139 X Code 0xffffff8000883f40 0x0000000000000050 0x000f0000 IORecursiveLockTryLock | |
| [ 140] 140 X Code 0xffffff8000883f90 0x0000000000000020 0x000f0000 IORecursiveLockUnlock | |
| [ 141] 141 X Code 0xffffff8000884070 0x0000000000000020 0x000f0000 IORecursiveLockWakeup | |
| [ 142] 142 X Code 0xffffff8000884e50 0x0000000000000050 0x000f0000 IORegistrySetOSBuildVersion | |
| [ 143] 143 X Code 0xffffff8000901060 0x00000000000001a0 0x000f0000 IOSKMemoryArrayCreate | |
| [ 144] 144 X Code 0xffffff8000900ed0 0x0000000000000190 0x000f0000 IOSKMemoryBufferCreate | |
| [ 145] 145 X Code 0xffffff8000900e80 0x0000000000000020 0x000f0000 IOSKMemoryDestroy | |
| [ 146] 146 X Code 0xffffff8000901310 0x0000000000000070 0x000f0000 IOSKMemoryDiscard | |
| [ 147] 147 X Code 0xffffff8000900ec0 0x0000000000000010 0x000f0000 IOSKMemoryGetIOMD | |
| [ 148] 148 X Code 0xffffff8000900ea0 0x0000000000000020 0x000f0000 IOSKMemoryMapDestroy | |
| [ 149] 149 X Code 0xffffff8000901200 0x0000000000000110 0x000f0000 IOSKMemoryMapToTask | |
| [ 150] 150 X Code 0xffffff8000901380 0x0000000000000070 0x000f0000 IOSKMemoryReclaim | |
| [ 151] 151 X Code 0xffffff80008fda00 0x0000000000000010 0x000f0000 IOSecureBSDRoot | |
| [ 152] 152 X Code 0xffffff80008fc8a0 0x0000000000000040 0x000f0000 IOServicePublishResource | |
| [ 153] 153 X Code 0xffffff80008fc8e0 0x0000000000000060 0x000f0000 IOServiceWaitForMatchingResource | |
| [ 154] 154 X Code 0xffffff8000917460 0x0000000000000020 0x000f0000 IOSetKeyStoreData | |
| [ 155] 155 X Code 0xffffff80008835b0 0x00000000000000f0 0x000f0000 IOSetProcessorCacheMode | |
| [ 156] 156 X Code 0xffffff80008840e0 0x0000000000000050 0x000f0000 IOSimpleLockAlloc | |
| [ 157] 157 X Code 0xffffff8000884150 0x0000000000000020 0x000f0000 IOSimpleLockFree | |
| [ 158] 158 X Code 0xffffff8000884170 0x0000000000000010 0x000f0000 IOSimpleLockGetMachLock | |
| [ 159] 159 X Code 0xffffff8000884130 0x0000000000000020 0x000f0000 IOSimpleLockInit | |
| [ 160] 160 X Code 0xffffff8000883a70 0x00000000000001c0 0x000f0000 IOSizeToAlignment | |
| [ 161] 161 X Code 0xffffff8000883720 0x0000000000000010 0x000f0000 IOSleep | |
| [ 162] 162 X Code 0xffffff8000883730 0x0000000000000040 0x000f0000 IOSleepWithLeeway | |
| [ 163] 163 X Code 0xffffff80002b6980 0x0000000000000008 0x000f0000 IOSpinUnlock | |
| [ 164] 164 X Code 0xffffff8000910a00 0x0000000000000080 0x000f0000 IOSystemShutdownNotification | |
| [ 165] 165 X Code 0xffffff80008fdb90 0x0000000000000040 0x000f0000 IOTaskHasEntitlement | |
| [ 166] 166 X Code 0xffffff80002b6988 0x0000000000000018 0x000f0000 IOTrySpinLock | |
| [ 167] 167 X Code 0xffffff80008fca60 0x0000000000000020 0x000f0000 IOUUIDMatching | |
| [ 168] 168 X Code 0xffffff80003b7240 0x0000000000000030 0x000f0000 IOUnmapPages | |
| [ 169] 169 X Data 0xffffff8000ac2818 0x0000000000000008 0x000f0000 IOZeroTvalspec | |
| [ 170] 170 X Code 0xffffff8000776bf0 0x0000000000000020 0x000f0000 IS_64BIT_PROCESS | |
| [ 171] 171 X Data 0xffffff8000a8b700 0x0000000000000008 0x000f0000 IdlePDPT | |
| [ 172] 172 X Data 0xffffff8000a8b6d8 0x0000000000000008 0x000f0000 IdlePML4 | |
| [ 173] 173 X Data 0xffffff8000a8b6f8 0x0000000000000008 0x000f0000 IdlePTD | |
| [ 174] 174 X Data 0xffffff8000a63420 0x0000000000000020 0x000f0000 KERNEL_AUDIT_TOKEN | |
| [ 175] 175 X Data 0xffffff8000a06f90 0x0000000000000008 0x000f0000 KERNEL_SECURITY_TOKEN | |
| [ 176] 176 X Data 0xffffff8000a8b6f0 0x0000000000000008 0x000f0000 KPTphys | |
| [ 177] 177 X Code 0xffffff80002b9800 0x0000000000000080 0x000f0000 KUNCExecute | |
| [ 178] 178 X Code 0xffffff80002b9760 0x00000000000000a0 0x000f0000 KUNCGetNotificationID | |
| [ 179] 179 X Code 0xffffff80002b9880 0x0000000000000190 0x000f0000 KUNCUserNotificationCancel | |
| [ 180] 180 X Code 0xffffff80002b9ac0 0x00000000000000d0 0x000f0000 KUNCUserNotificationDisplayAlert | |
| [ 181] 181 X Code 0xffffff80002b9b90 0x00000000000000f0 0x000f0000 KUNCUserNotificationDisplayFromBundle | |
| [ 182] 182 X Code 0xffffff80002b9a10 0x00000000000000b0 0x000f0000 KUNCUserNotificationDisplayNotice | |
| [ 183] 183 X Data 0xffffff8000a8b988 0x0000000000000008 0x000f0000 LastDebuggerEntryAllowance | |
| [ 184] 184 X Data 0xffffff8000a8b950 0x0000000000000008 0x000f0000 LcksOpts | |
| [ 185] 185 X Code 0xffffff8000297710 0x0000000000000030 0x000f0000 Load_context | |
| [ 186] 186 X Data 0xffffff8000a66f90 0x0000000000000110 0x000f0000 LockCompatGroup | |
| [ 187] 187 X Data 0xffffff8000a670a0 0x0000000000000004 0x000f0000 LockDefaultGroupAttr | |
| [ 188] 188 X Data 0xffffff8000a670a4 0x000000000000000c 0x000f0000 LockDefaultLckAttr | |
| [ 189] 189 X Data 0xffffff8000a8b968 0x0000000000000008 0x000f0000 LockTimeOut | |
| [ 190] 190 X Data 0xffffff8000a8b970 0x0000000000000008 0x000f0000 LockTimeOutTSC | |
| [ 191] 191 X Data 0xffffff8000a8b964 0x0000000000000004 0x000f0000 LockTimeOutUsec | |
| [ 192] 192 X Data 0xffffff8000ac1e5c 0x0000000000000004 0x000f0000 MCFail | |
| [ 193] 193 X Code 0xffffff800086f760 0x00000000000000d0 0x000f0000 MD5Final | |
| [ 194] 194 X Code 0xffffff800086f570 0x00000000000000c0 0x000f0000 MD5Init | |
| [ 195] 195 X Code 0xffffff800086f630 0x0000000000000130 0x000f0000 MD5Update | |
| [ 196] 196 X Data 0xffffff8000ac1e6c 0x0000000000000004 0x000f0000 MDFail | |
| [ 197] 197 X Data 0xffffff8000ac1e64 0x0000000000000004 0x000f0000 MPFail | |
| [ 198] 198 X Data 0xffffff8000a8b980 0x0000000000000008 0x000f0000 MutexSpin | |
| [ 199] 199 X Data 0xffffff8000a06ed8 0x0000000000000008 0x000f0000 NDR_record | |
| [ 200] 200 X Data 0xffffff8000a8c010 0x0000000000000008 0x000f0000 NMIPI_acks | |
| [ 201] 201 X Data 0xffffff8000a8c018 0x0000000000000008 0x000f0000 NMI_count | |
| [ 202] 202 X Code 0xffffff80004093c0 0x0000000000000170 0x000f0000 NMI_cpus | |
| [ 203] 203 X Code 0xffffff80008328c0 0x0000000000000010 0x000f0000 OSAddAtomic | |
| [ 204] 204 X Code 0xffffff80008328b0 0x0000000000000010 0x000f0000 OSAddAtomic16 | |
| [ 205] 205 X Code 0xffffff80008328d0 0x0000000000000010 0x000f0000 OSAddAtomic64 | |
| [ 206] 206 X Code 0xffffff80008328a0 0x0000000000000010 0x000f0000 OSAddAtomic8 | |
| [ 207] 207 X Code 0xffffff80008328e0 0x0000000000000010 0x000f0000 OSAddAtomicLong | |
| [ 208] 208 X Code 0xffffff8000832e50 0x0000000000000300 0x000f0000 OSBacktrace | |
| [ 209] 209 X Code 0xffffff8000832910 0x0000000000000020 0x000f0000 OSBitAndAtomic | |
| [ 210] 210 X Code 0xffffff8000832aa0 0x0000000000000020 0x000f0000 OSBitAndAtomic16 | |
| [ 211] 211 X Code 0xffffff8000832a20 0x0000000000000020 0x000f0000 OSBitAndAtomic8 | |
| [ 212] 212 X Code 0xffffff8000832930 0x0000000000000020 0x000f0000 OSBitOrAtomic | |
| [ 213] 213 X Code 0xffffff8000832ac0 0x0000000000000020 0x000f0000 OSBitOrAtomic16 | |
| [ 214] 214 X Code 0xffffff8000832a40 0x0000000000000020 0x000f0000 OSBitOrAtomic8 | |
| [ 215] 215 X Code 0xffffff8000832950 0x0000000000000020 0x000f0000 OSBitXorAtomic | |
| [ 216] 216 X Code 0xffffff8000832ae0 0x0000000000000020 0x000f0000 OSBitXorAtomic16 | |
| [ 217] 217 X Code 0xffffff8000832a60 0x0000000000000020 0x000f0000 OSBitXorAtomic8 | |
| [ 218] 218 X Code 0xffffff8000832850 0x0000000000000010 0x000f0000 OSCompareAndSwap | |
| [ 219] 219 X Code 0xffffff8000832830 0x0000000000000020 0x000f0000 OSCompareAndSwap16 | |
| [ 220] 220 X Code 0xffffff8000832860 0x0000000000000020 0x000f0000 OSCompareAndSwap64 | |
| [ 221] 221 X Code 0xffffff8000832810 0x0000000000000020 0x000f0000 OSCompareAndSwap8 | |
| [ 222] 222 X Code 0xffffff8000832880 0x0000000000000020 0x000f0000 OSCompareAndSwapPtr | |
| [ 223] 223 X Code 0xffffff8000832900 0x0000000000000010 0x000f0000 OSDecrementAtomic | |
| [ 224] 224 X Code 0xffffff8000832a90 0x0000000000000010 0x000f0000 OSDecrementAtomic16 | |
| [ 225] 225 X Code 0xffffff8000832a10 0x0000000000000010 0x000f0000 OSDecrementAtomic8 | |
| [ 226] 226 X Code 0xffffff80002f5480 0x0000000000000050 0x000f0000 OSFree | |
| [ 227] 227 X Code 0xffffff80008328f0 0x0000000000000010 0x000f0000 OSIncrementAtomic | |
| [ 228] 228 X Code 0xffffff8000832a80 0x0000000000000010 0x000f0000 OSIncrementAtomic16 | |
| [ 229] 229 X Code 0xffffff8000832a00 0x0000000000000010 0x000f0000 OSIncrementAtomic8 | |
| [ 230] 230 X Code 0xffffff80008836d0 0x0000000000000050 0x000f0000 OSKernelStackRemaining | |
| [ 231] 231 X Code 0xffffff800085e5f0 0x0000000000000010 0x000f0000 OSKextCancelRequest | |
| [ 232] 232 X Code 0xffffff8000851c10 0x0000000000000010 0x000f0000 OSKextFreeSite | |
| [ 233] 233 X Code 0xffffff8000851ad0 0x00000000000000b0 0x000f0000 OSKextGetAllocationSiteForCaller | |
| [ 234] 234 X Code 0xffffff8000851b80 0x0000000000000090 0x000f0000 OSKextGetKmodIDForSite | |
| [ 235] 235 X Code 0xffffff800085e430 0x0000000000000060 0x000f0000 OSKextGetLoadTagForIdentifier | |
| [ 236] 236 X Code 0xffffff8000851c20 0x0000000000000130 0x000f0000 OSKextGetUUIDForName | |
| [ 237] 237 X Code 0xffffff8000850570 0x0000000000000190 0x000f0000 OSKextGrabPgoData | |
| [ 238] 238 X Code 0xffffff800085ed50 0x0000000000000010 0x000f0000 OSKextKextForAddress | |
| [ 239] 239 X Code 0xffffff800085e3e0 0x0000000000000050 0x000f0000 OSKextLoadKextWithIdentifier | |
| [ 240] 240 X Code 0xffffff800085ed60 0x0000000000000010 0x000f0000 OSKextLoadedKextSummariesUpdated | |
| [ 241] 241 X Code 0xffffff80008468a0 0x0000000000000060 0x000f0000 OSKextLog | |
| [ 242] 242 X Code 0xffffff800085f1a0 0x0000000000000700 0x000f0000 OSKextParseVersionString | |
| [ 243] 243 X Code 0xffffff800085e9b0 0x0000000000000010 0x000f0000 OSKextRegisterKextsWithDTrace | |
| [ 244] 244 X Code 0xffffff800085e530 0x00000000000000a0 0x000f0000 OSKextReleaseKextWithLoadTag | |
| [ 245] 245 X Code 0xffffff800085e9a0 0x0000000000000010 0x000f0000 OSKextRemoveKextBootstrap | |
| [ 246] 246 X Code 0xffffff800085e5e0 0x0000000000000010 0x000f0000 OSKextRequestResource | |
| [ 247] 247 X Code 0xffffff8000850770 0x00000000000000c0 0x000f0000 OSKextResetPgoCounters | |
| [ 248] 248 X Code 0xffffff8000850700 0x0000000000000050 0x000f0000 OSKextResetPgoCountersLock | |
| [ 249] 249 X Code 0xffffff8000850750 0x0000000000000020 0x000f0000 OSKextResetPgoCountersUnlock | |
| [ 250] 250 X Code 0xffffff800085e490 0x00000000000000a0 0x000f0000 OSKextRetainKextWithLoadTag | |
| [ 251] 251 X Code 0xffffff800084ee30 0x00000000000000c0 0x000f0000 OSKextSystemSleepOrWake | |
| [ 252] 252 X Code 0xffffff800085e5d0 0x0000000000000010 0x000f0000 OSKextUnloadKextWithLoadTag | |
| [ 253] 253 X Code 0xffffff8000846900 0x00000000000003f0 0x000f0000 OSKextVLog | |
| [ 254] 254 X Code 0xffffff800085f8a0 0x00000000000004a0 0x000f0000 OSKextVersionGetString | |
| [ 255] 255 X Code 0xffffff80002f5250 0x00000000000000b0 0x000f0000 OSMalloc | |
| [ 256] 256 X Code 0xffffff80002f4e40 0x0000000000000160 0x000f0000 OSMalloc_Tagalloc | |
| [ 257] 257 X Code 0xffffff80002f5120 0x0000000000000130 0x000f0000 OSMalloc_Tagfree | |
| [ 258] 258 X Code 0xffffff80002f4fa0 0x0000000000000040 0x000f0000 OSMalloc_Tagref | |
| [ 259] 259 X Code 0xffffff80002f4fe0 0x0000000000000140 0x000f0000 OSMalloc_Tagrele | |
| [ 260] 260 X Code 0xffffff80002f4570 0x0000000000000070 0x000f0000 OSMalloc_init | |
| [ 261] 261 X Code 0xffffff80002f53c0 0x00000000000000c0 0x000f0000 OSMalloc_noblock | |
| [ 262] 262 X Code 0xffffff80002f5300 0x00000000000000c0 0x000f0000 OSMalloc_nowait | |
| [ 263] 263 X Code 0xffffff80002f54d0 0x0000000000000070 0x000f0000 OSMalloc_size | |
| [ 264] 264 X Data 0xffffff8000a66e68 0x0000000000000008 0x000f0000 OSMalloc_tag_lck_grp | |
| [ 265] 265 X Data 0xffffff8000a66e70 0x0000000000000010 0x000f0000 OSMalloc_tag_lock | |
| [ 266] 266 X Code 0xffffff80008333b0 0x0000000000000090 0x000f0000 OSPrintBacktrace | |
| [ 267] 267 X Code 0xffffff80008ee6e0 0x0000000000000030 0x000f0000 OSPrintMemory | |
| [ 268] 268 X Code 0xffffff8000833150 0x0000000000000260 0x000f0000 OSReportWithBacktrace | |
| [ 269] 269 X Code 0xffffff8000854100 0x0000000000000140 0x000f0000 OSRuntimeFinalizeCPP | |
| [ 270] 270 X Code 0xffffff8000854240 0x0000000000000570 0x000f0000 OSRuntimeInitializeCPP | |
| [ 271] 271 X Code 0xffffff8000854000 0x0000000000000100 0x000f0000 OSRuntimeUnloadCPP | |
| [ 272] 272 X Code 0xffffff8000853ff0 0x0000000000000010 0x000f0000 OSRuntimeUnloadCPPForSegment | |
| [ 273] 273 X Code 0xffffff8000853d10 0x00000000000002e0 0x000f0000 OSRuntimeUnloadCPPForSegmentInKmod | |
| [ 274] 274 X Code 0xffffff80002b6988 0x0000000000000018 0x000f0000 OSSpinLockTry | |
| [ 275] 275 X Code 0xffffff80002b6980 0x0000000000000008 0x000f0000 OSSpinLockUnlock | |
| [ 276] 276 X Code 0xffffff80008329c0 0x0000000000000040 0x000f0000 OSTestAndClear | |
| [ 277] 277 X Code 0xffffff8000832970 0x0000000000000050 0x000f0000 OSTestAndSet | |
| [ 278] 278 X Data 0xffffff8000ac27a0 0x0000000000000008 0x000f0000 OSUnserializechar | |
| [ 279] 279 X Data 0xffffff8000ac27a8 0x0000000000000008 0x000f0000 OSUnserializelval | |
| [ 280] 280 X Data 0xffffff8000ac27b0 0x0000000000000004 0x000f0000 OSUnserializenerrs | |
| [ 281] 281 X Code 0xffffff80008547b0 0x0000000000000040 0x000f0000 OSlibkernInit | |
| [ 282] 282 X Code 0xffffff80008d85e0 0x0000000000000040 0x000f0000 PEGetGMTTimeOfDay | |
| [ 283] 283 X Code 0xffffff80008d7e90 0x0000000000000030 0x000f0000 PEGetMachineName | |
| [ 284] 284 X Code 0xffffff80008d7ec0 0x0000000000000030 0x000f0000 PEGetModelName | |
| [ 285] 285 X Code 0xffffff80008d7ef0 0x0000000000000020 0x000f0000 PEGetPlatformEpoch | |
| [ 286] 286 X Code 0xffffff80008d8620 0x0000000000000050 0x000f0000 PEGetUTCTimeOfDay | |
| [ 287] 287 X Code 0xffffff80008d7f10 0x00000000000001a0 0x000f0000 PEHaltRestart | |
| [ 288] 288 X Code 0xffffff80008d8110 0x0000000000000170 0x000f0000 PEReadNVRAMProperty | |
| [ 289] 289 X Code 0xffffff80008d84f0 0x00000000000000f0 0x000f0000 PERemoveNVRAMProperty | |
| [ 290] 290 X Code 0xffffff80008d80e0 0x0000000000000030 0x000f0000 PESavePanicInfo | |
| [ 291] 291 X Code 0xffffff80008d8670 0x0000000000000030 0x000f0000 PESetGMTTimeOfDay | |
| [ 292] 292 X Code 0xffffff80008d86a0 0x0000000000000030 0x000f0000 PESetUTCTimeOfDay | |
| [ 293] 293 X Code 0xffffff80008d8280 0x0000000000000120 0x000f0000 PEWriteNVRAMBooleanProperty | |
| [ 294] 294 X Code 0xffffff80008d83a0 0x0000000000000150 0x000f0000 PEWriteNVRAMProperty | |
| [ 295] 295 X Code 0xffffff80009199f0 0x0000000000000020 0x000f0000 PE_boot_args | |
| [ 296] 296 X Code 0xffffff80009198a0 0x00000000000000a0 0x000f0000 PE_call_timebase_callback | |
| [ 297] 297 X Code 0xffffff80008da950 0x0000000000000050 0x000f0000 PE_cpu_halt | |
| [ 298] 298 X Code 0xffffff80008dabb0 0x0000000000000070 0x000f0000 PE_cpu_machine_init | |
| [ 299] 299 X Code 0xffffff80008dac20 0x0000000000000050 0x000f0000 PE_cpu_machine_quiesce | |
| [ 300] 300 X Code 0xffffff80008da9a0 0x00000000000000b0 0x000f0000 PE_cpu_signal | |
| [ 301] 301 X Code 0xffffff80008dab00 0x00000000000000b0 0x000f0000 PE_cpu_signal_cancel | |
| [ 302] 302 X Code 0xffffff80008daa50 0x00000000000000b0 0x000f0000 PE_cpu_signal_deferred | |
| [ 303] 303 X Code 0xffffff80008da8d0 0x0000000000000080 0x000f0000 PE_cpu_start | |
| [ 304] 304 X Code 0xffffff80009196f0 0x0000000000000050 0x000f0000 PE_create_console | |
| [ 305] 305 X Code 0xffffff8000919740 0x0000000000000020 0x000f0000 PE_current_console | |
| [ 306] 306 X Code 0xffffff8000919760 0x0000000000000090 0x000f0000 PE_display_icon | |
| [ 307] 307 X Code 0xffffff8000918ed0 0x0000000000000020 0x000f0000 PE_enter_debugger | |
| [ 308] 308 X Code 0xffffff8000918610 0x00000000000000f0 0x000f0000 PE_get_default | |
| [ 309] 309 X Code 0xffffff80009197f0 0x0000000000000010 0x000f0000 PE_get_hotkey | |
| [ 310] 310 X Code 0xffffff8000918f20 0x00000000000000f0 0x000f0000 PE_get_random_seed | |
| [ 311] 311 X Data 0xffffff8000ac3400 0x0000000000000008 0x000f0000 PE_halt_restart | |
| [ 312] 312 X Code 0xffffff8000919970 0x0000000000000080 0x000f0000 PE_i_can_has_debugger | |
| [ 313] 313 X Code 0xffffff8000918ef0 0x0000000000000010 0x000f0000 PE_i_can_has_kernel_configuration | |
| [ 314] 314 X Code 0xffffff8000918600 0x0000000000000010 0x000f0000 PE_imgsrc_mount_supported | |
| [ 315] 315 X Code 0xffffff8000919e00 0x0000000000000030 0x000f0000 PE_incoming_interrupt | |
| [ 316] 316 X Code 0xffffff8000919150 0x0000000000000360 0x000f0000 PE_init_iokit | |
| [ 317] 317 X Code 0xffffff8000919ae0 0x0000000000000090 0x000f0000 PE_init_kprintf | |
| [ 318] 318 X Code 0xffffff80009194b0 0x0000000000000240 0x000f0000 PE_init_platform | |
| [ 319] 319 X Code 0xffffff8000918f00 0x0000000000000020 0x000f0000 PE_init_printf | |
| [ 320] 320 X Code 0xffffff8000919020 0x0000000000000130 0x000f0000 PE_initialize_console | |
| [ 321] 321 X Code 0xffffff8000919e30 0x0000000000000030 0x000f0000 PE_install_interrupt_handler | |
| [ 322] 322 X Data 0xffffff8000ac3c88 0x0000000000000020 0x000f0000 PE_interrupt_handler | |
| [ 323] 323 X Data 0xffffff8000ac3c80 0x0000000000000008 0x000f0000 PE_kputc | |
| [ 324] 324 X Code 0xffffff80009185f0 0x0000000000000010 0x000f0000 PE_parse_boot_arg_str | |
| [ 325] 325 X Code 0xffffff8000917f20 0x0000000000000010 0x000f0000 PE_parse_boot_argn | |
| [ 326] 326 X Data 0xffffff8000a5e690 0x000000000000006c 0x000f0000 PE_poll_input | |
| [ 327] 327 X Data 0xffffff8000ac3af8 0x0000000000000008 0x000f0000 PE_putc | |
| [ 328] 328 X Code 0xffffff8000919940 0x0000000000000020 0x000f0000 PE_reboot_on_panic | |
| [ 329] 329 X Code 0xffffff8000919800 0x00000000000000a0 0x000f0000 PE_register_timebase_callback | |
| [ 330] 330 X Data 0xffffff8000ac3b00 0x00000000000000a8 0x000f0000 PE_state | |
| [ 331] 331 X Code 0xffffff8000919960 0x0000000000000010 0x000f0000 PE_sync_panic_buffers | |
| [ 332] 332 X Code 0xffffff8000409640 0x0000000000000010 0x000f0000 PM_interrupt_register | |
| [ 333] 333 X Code 0xffffff80004e4cc0 0x0000000000000040 0x000f0000 PRIV_POLICY_CHOICE | |
| [ 334] 334 X Code 0xffffff80004e4d00 0x0000000000000040 0x000f0000 PRIV_POLICY_ONLY | |
| [ 335] 335 X Code 0xffffff8000312880 0x0000000000000300 0x000f0000 PROC_CROSSED_HIGH_WATERMARK__SEND_EXC_RESOURCE_AND_SUSPEND | |
| [ 336] 336 X Data 0xffffff8000abc370 0x0000000000000008 0x000f0000 RAW_file_offset | |
| [ 337] 337 X Data 0xffffff8000abc378 0x0000000000000008 0x000f0000 RAW_file_written | |
| [ 338] 338 X Code 0xffffff80004ed3c0 0x0000000000000020 0x000f0000 RandomULong | |
| [ 339] 339 X Code 0xffffff8000311ff0 0x00000000000001b0 0x000f0000 SENDING_NOTIFICATION__THIS_PROCESS_IS_CAUSING_TOO_MANY_WAKEUPS | |
| [ 340] 340 X Code 0xffffff8000311d10 0x0000000000000150 0x000f0000 SENDING_NOTIFICATION__THIS_PROCESS_IS_CAUSING_TOO_MUCH_IO | |
| [ 341] 341 X Code 0xffffff800031afa0 0x0000000000000380 0x000f0000 SENDING_NOTIFICATION__THIS_THREAD_IS_CONSUMING_TOO_MUCH_CPU | |
| [ 342] 342 X Code 0xffffff800030a5f0 0x0000000000000010 0x000f0000 SFI_APP_NAP_THREAD_IS_WAITING | |
| [ 343] 343 X Data 0xffffff8000a5ef80 0x0000000000000020 0x000f0000 SFI_APP_NAP_registration | |
| [ 344] 344 X Code 0xffffff800030a5e0 0x0000000000000010 0x000f0000 SFI_DARWIN_BG_THREAD_IS_WAITING | |
| [ 345] 345 X Data 0xffffff8000a5efa0 0x0000000000000020 0x000f0000 SFI_DARWIN_BG_registration | |
| [ 346] 346 X Code 0xffffff800030a630 0x0000000000000010 0x000f0000 SFI_DEFAULT_FOCAL_THREAD_IS_WAITING | |
| [ 347] 347 X Data 0xffffff8000a5ef00 0x0000000000000020 0x000f0000 SFI_DEFAULT_FOCAL_registration | |
| [ 348] 348 X Code 0xffffff800030a640 0x0000000000000010 0x000f0000 SFI_DEFAULT_NONFOCAL_THREAD_IS_WAITING | |
| [ 349] 349 X Data 0xffffff8000a5eee0 0x0000000000000020 0x000f0000 SFI_DEFAULT_NONFOCAL_registration | |
| [ 350] 350 X Code 0xffffff800030a6b0 0x0000000000000010 0x000f0000 SFI_KERNEL_THREAD_IS_WAITING | |
| [ 351] 351 X Data 0xffffff8000a5ee00 0x0000000000000020 0x000f0000 SFI_KERNEL_registration | |
| [ 352] 352 X Code 0xffffff800030a650 0x0000000000000010 0x000f0000 SFI_LEGACY_FOCAL_THREAD_IS_WAITING | |
| [ 353] 353 X Data 0xffffff8000a5eec0 0x0000000000000020 0x000f0000 SFI_LEGACY_FOCAL_registration | |
| [ 354] 354 X Code 0xffffff800030a660 0x0000000000000010 0x000f0000 SFI_LEGACY_NONFOCAL_THREAD_IS_WAITING | |
| [ 355] 355 X Data 0xffffff8000a5eea0 0x0000000000000020 0x000f0000 SFI_LEGACY_NONFOCAL_registration | |
| [ 356] 356 X Code 0xffffff800030a4b0 0x0000000000000010 0x000f0000 SFI_MAINTENANCE_THREAD_IS_WAITING | |
| [ 357] 357 X Data 0xffffff8000a5edc0 0x0000000000000020 0x000f0000 SFI_MAINTENANCE_registration | |
| [ 358] 358 X Code 0xffffff800030a600 0x0000000000000010 0x000f0000 SFI_MANAGED_FOCAL_THREAD_IS_WAITING | |
| [ 359] 359 X Data 0xffffff8000a5ef60 0x0000000000000020 0x000f0000 SFI_MANAGED_FOCAL_registration | |
| [ 360] 360 X Code 0xffffff800030a610 0x0000000000000010 0x000f0000 SFI_MANAGED_NONFOCAL_THREAD_IS_WAITING | |
| [ 361] 361 X Data 0xffffff8000a5ef40 0x0000000000000020 0x000f0000 SFI_MANAGED_NONFOCAL_registration | |
| [ 362] 362 X Code 0xffffff800030a6c0 0x0000000000000010 0x000f0000 SFI_OPTED_OUT_THREAD_IS_WAITING | |
| [ 363] 363 X Data 0xffffff8000a5ede0 0x0000000000000020 0x000f0000 SFI_OPTED_OUT_registration | |
| [ 364] 364 X Code 0xffffff800030a670 0x0000000000000010 0x000f0000 SFI_USER_INITIATED_FOCAL_THREAD_IS_WAITING | |
| [ 365] 365 X Data 0xffffff8000a5ee80 0x0000000000000020 0x000f0000 SFI_USER_INITIATED_FOCAL_registration | |
| [ 366] 366 X Code 0xffffff800030a680 0x0000000000000010 0x000f0000 SFI_USER_INITIATED_NONFOCAL_THREAD_IS_WAITING | |
| [ 367] 367 X Data 0xffffff8000a5ee60 0x0000000000000020 0x000f0000 SFI_USER_INITIATED_NONFOCAL_registration | |
| [ 368] 368 X Code 0xffffff800030a690 0x0000000000000010 0x000f0000 SFI_USER_INTERACTIVE_FOCAL_THREAD_IS_WAITING | |
| [ 369] 369 X Data 0xffffff8000a5ee40 0x0000000000000020 0x000f0000 SFI_USER_INTERACTIVE_FOCAL_registration | |
| [ 370] 370 X Code 0xffffff800030a6a0 0x0000000000000010 0x000f0000 SFI_USER_INTERACTIVE_NONFOCAL_THREAD_IS_WAITING | |
| [ 371] 371 X Data 0xffffff8000a5ee20 0x0000000000000020 0x000f0000 SFI_USER_INTERACTIVE_NONFOCAL_registration | |
| [ 372] 372 X Code 0xffffff800030a620 0x0000000000000010 0x000f0000 SFI_UTILITY_THREAD_IS_WAITING | |
| [ 373] 373 X Data 0xffffff8000a5ef20 0x0000000000000020 0x000f0000 SFI_UTILITY_registration | |
| [ 374] 374 X Code 0xffffff800086f420 0x00000000000000d0 0x000f0000 SHA1Final | |
| [ 375] 375 X Code 0xffffff800086f500 0x0000000000000020 0x000f0000 SHA1Final_r | |
| [ 376] 376 X Code 0xffffff800086f250 0x00000000000000b0 0x000f0000 SHA1Init | |
| [ 377] 377 X Code 0xffffff800086f300 0x0000000000000120 0x000f0000 SHA1Update | |
| [ 378] 378 X Code 0xffffff800086f4f0 0x0000000000000010 0x000f0000 SHA1UpdateUsePhysicalAddress | |
| [ 379] 379 X Code 0xffffff800086f0d0 0x0000000000000020 0x000f0000 SHA256_Final | |
| [ 380] 380 X Code 0xffffff800086f040 0x0000000000000060 0x000f0000 SHA256_Init | |
| [ 381] 381 X Code 0xffffff800086f0a0 0x0000000000000030 0x000f0000 SHA256_Update | |
| [ 382] 382 X Code 0xffffff800086f180 0x0000000000000020 0x000f0000 SHA384_Final | |
| [ 383] 383 X Code 0xffffff800086f0f0 0x0000000000000060 0x000f0000 SHA384_Init | |
| [ 384] 384 X Code 0xffffff800086f150 0x0000000000000030 0x000f0000 SHA384_Update | |
| [ 385] 385 X Code 0xffffff800086f230 0x0000000000000020 0x000f0000 SHA512_Final | |
| [ 386] 386 X Code 0xffffff800086f1a0 0x0000000000000060 0x000f0000 SHA512_Init | |
| [ 387] 387 X Code 0xffffff800086f200 0x0000000000000030 0x000f0000 SHA512_Update | |
| [ 388] 388 X Code 0xffffff800050d260 0x0000000000000020 0x000f0000 SPECHASH_LOCK | |
| [ 389] 389 X Code 0xffffff800050d280 0x0000000000000020 0x000f0000 SPECHASH_UNLOCK | |
| [ 390] 390 X Code 0xffffff80003c08c0 0x0000000000000070 0x000f0000 STRDUP | |
| [ 391] 391 X Code 0xffffff80002977d0 0x0000000000000060 0x000f0000 Shutdown_context | |
| [ 392] 392 X Code 0xffffff8000884c90 0x00000000000001c0 0x000f0000 StartIOKit | |
| [ 393] 393 X Code 0xffffff8000297740 0x0000000000000080 0x000f0000 Switch_context | |
| [ 394] 394 X Data 0xffffff8000a8b978 0x0000000000000008 0x000f0000 TLBTimeOut | |
| [ 395] 395 X Data 0xffffff8000a27130 0x0000000000000004 0x000f0000 TRAP_TYPES | |
| [ 396] 396 X Data 0xffffff8000a27260 0x0000000000000004 0x000f0000 TSC_sync_margin | |
| [ 397] 397 X Code 0xffffff80002977c0 0x0000000000000010 0x000f0000 Thread_continue | |
| [ 398] 398 X Code 0xffffff80007ae8d0 0x0000000000000030 0x000f0000 UBCINFOEXISTS | |
| [ 399] 399 X Code 0xffffff80002b9610 0x00000000000000f0 0x000f0000 UNDAlertCompletedWithResult_rpc | |
| [ 400] 400 X Code 0xffffff80002b8f60 0x0000000000000050 0x000f0000 UNDCancelNotification_rpc | |
| [ 401] 401 X Code 0xffffff80002b8c70 0x0000000000000160 0x000f0000 UNDDisplayAlertFromBundle_rpc | |
| [ 402] 402 X Code 0xffffff80002b9180 0x0000000000000270 0x000f0000 UNDDisplayAlertSimple_rpc | |
| [ 403] 403 X Code 0xffffff80002b8dd0 0x0000000000000190 0x000f0000 UNDDisplayCustomFromBundle_rpc | |
| [ 404] 404 X Code 0xffffff80002b8b10 0x0000000000000160 0x000f0000 UNDDisplayNoticeFromBundle_rpc | |
| [ 405] 405 X Code 0xffffff80002b8fb0 0x00000000000001d0 0x000f0000 UNDDisplayNoticeSimple_rpc | |
| [ 406] 406 X Code 0xffffff80002b8a40 0x00000000000000d0 0x000f0000 UNDExecute_rpc | |
| [ 407] 407 X Code 0xffffff80002b9700 0x0000000000000060 0x000f0000 UNDNotificationCreated_rpc | |
| [ 408] 408 X Code 0xffffff80002b9580 0x0000000000000090 0x000f0000 UNDReply_deallocate | |
| [ 409] 409 X Code 0xffffff80002b9500 0x0000000000000080 0x000f0000 UNDReply_server | |
| [ 410] 410 X Code 0xffffff80002b93f0 0x0000000000000040 0x000f0000 UNDReply_server_routine | |
| [ 411] 411 X Invalid 0xffffff8000b0b1a0 0x0000000000000308 0x000f0000 UNDReply_subsystem | |
| [ 412] 412 X Code 0xffffff8000544c90 0x00000000000000c0 0x000f0000 VFS_FHTOVP | |
| [ 413] 413 X Code 0xffffff8000544990 0x00000000000000c0 0x000f0000 VFS_GETATTR | |
| [ 414] 414 X Code 0xffffff8000544e20 0x00000000000000c0 0x000f0000 VFS_IOCTL | |
| [ 415] 415 X Code 0xffffff8000544670 0x00000000000000b0 0x000f0000 VFS_MOUNT | |
| [ 416] 416 X Code 0xffffff8000544960 0x0000000000000030 0x000f0000 VFS_QUOTACTL | |
| [ 417] 417 X Code 0xffffff8000544800 0x00000000000000c0 0x000f0000 VFS_ROOT | |
| [ 418] 418 X Code 0xffffff8000544a50 0x00000000000000c0 0x000f0000 VFS_SETATTR | |
| [ 419] 419 X Code 0xffffff80005447a0 0x0000000000000030 0x000f0000 VFS_START | |
| [ 420] 420 X Code 0xffffff8000544b10 0x00000000000000c0 0x000f0000 VFS_SYNC | |
| [ 421] 421 X Code 0xffffff80005447d0 0x0000000000000030 0x000f0000 VFS_UNMOUNT | |
| [ 422] 422 X Code 0xffffff8000544bd0 0x00000000000000c0 0x000f0000 VFS_VGET | |
| [ 423] 423 X Code 0xffffff8000544ee0 0x00000000000000c0 0x000f0000 VFS_VGET_SNAPDIR | |
| [ 424] 424 X Code 0xffffff8000544d50 0x00000000000000d0 0x000f0000 VFS_VPTOFH | |
| [ 425] 425 X Code 0xffffff80003942b0 0x0000000000000090 0x000f0000 VM_PRESSURE_CRITICAL_TO_WARNING | |
| [ 426] 426 X Code 0xffffff80003941a0 0x0000000000000080 0x000f0000 VM_PRESSURE_NORMAL_TO_WARNING | |
| [ 427] 427 X Code 0xffffff8000394100 0x00000000000000a0 0x000f0000 VM_PRESSURE_WARNING_TO_CRITICAL | |
| [ 428] 428 X Code 0xffffff8000394220 0x0000000000000090 0x000f0000 VM_PRESSURE_WARNING_TO_NORMAL | |
| [ 429] 429 X Code 0xffffff8000548d50 0x0000000000000100 0x000f0000 VNOP_ACCESS | |
| [ 430] 430 X Code 0xffffff800054b930 0x0000000000000110 0x000f0000 VNOP_ADVLOCK | |
| [ 431] 431 X Code 0xffffff800054ba40 0x00000000000000b0 0x000f0000 VNOP_ALLOCATE | |
| [ 432] 432 X Code 0xffffff800054c0f0 0x0000000000000070 0x000f0000 VNOP_BLKTOOFF | |
| [ 433] 433 X Code 0xffffff800054c1d0 0x0000000000000150 0x000f0000 VNOP_BLOCKMAP | |
| [ 434] 434 X Code 0xffffff800054c390 0x0000000000000070 0x000f0000 VNOP_BWRITE | |
| [ 435] 435 X Code 0xffffff800054bda0 0x00000000000000e0 0x000f0000 VNOP_CLONEFILE | |
| [ 436] 436 X Code 0xffffff8000548c50 0x0000000000000100 0x000f0000 VNOP_CLOSE | |
| [ 437] 437 X Code 0xffffff800054ae10 0x0000000000000160 0x000f0000 VNOP_COMPOUND_MKDIR | |
| [ 438] 438 X Code 0xffffff8000548270 0x0000000000000230 0x000f0000 VNOP_COMPOUND_OPEN | |
| [ 439] 439 X Code 0xffffff8000549550 0x0000000000000210 0x000f0000 VNOP_COMPOUND_REMOVE | |
| [ 440] 440 X Code 0xffffff800054a670 0x0000000000000360 0x000f0000 VNOP_COMPOUND_RENAME | |
| [ 441] 441 X Code 0xffffff800054b110 0x0000000000000190 0x000f0000 VNOP_COMPOUND_RMDIR | |
| [ 442] 442 X Code 0xffffff800054bd20 0x0000000000000080 0x000f0000 VNOP_COPYFILE | |
| [ 443] 443 X Code 0xffffff8000548980 0x0000000000000100 0x000f0000 VNOP_CREATE | |
| [ 444] 444 X Code 0xffffff80005492a0 0x00000000000000f0 0x000f0000 VNOP_EXCHANGE | |
| [ 445] 445 X Code 0xffffff80005494e0 0x0000000000000070 0x000f0000 VNOP_FSYNC | |
| [ 446] 446 X Code 0xffffff80005473a0 0x0000000000000070 0x000f0000 VNOP_GETATTR | |
| [ 447] 447 X Code 0xffffff800054b640 0x00000000000000d0 0x000f0000 VNOP_GETATTRLISTBULK | |
| [ 448] 448 X Code 0xffffff800054c5c0 0x0000000000000080 0x000f0000 VNOP_GETNAMEDSTREAM | |
| [ 449] 449 X Code 0xffffff800054be80 0x0000000000000080 0x000f0000 VNOP_GETXATTR | |
| [ 450] 450 X Code 0xffffff800054b7b0 0x00000000000000a0 0x000f0000 VNOP_INACTIVE | |
| [ 451] 451 X Code 0xffffff8000548ff0 0x00000000000001a0 0x000f0000 VNOP_IOCTL | |
| [ 452] 452 X Code 0xffffff800054c400 0x0000000000000070 0x000f0000 VNOP_KQFILT_ADD | |
| [ 453] 453 X Code 0xffffff800054c470 0x0000000000000070 0x000f0000 VNOP_KQFILT_REMOVE | |
| [ 454] 454 X Code 0xffffff8000549760 0x0000000000000150 0x000f0000 VNOP_LINK | |
| [ 455] 455 X Code 0xffffff800054c070 0x0000000000000080 0x000f0000 VNOP_LISTXATTR | |
| [ 456] 456 X Code 0xffffff80005481f0 0x0000000000000080 0x000f0000 VNOP_LOOKUP | |
| [ 457] 457 X Code 0xffffff800054c640 0x0000000000000080 0x000f0000 VNOP_MAKENAMEDSTREAM | |
| [ 458] 458 X Code 0xffffff800054af70 0x0000000000000100 0x000f0000 VNOP_MKDIR | |
| [ 459] 459 X Code 0xffffff8000548a90 0x00000000000000c0 0x000f0000 VNOP_MKNOD | |
| [ 460] 460 X Code 0xffffff8000549400 0x0000000000000070 0x000f0000 VNOP_MMAP | |
| [ 461] 461 X Code 0xffffff8000549470 0x0000000000000070 0x000f0000 VNOP_MNOMAP | |
| [ 462] 462 X Code 0xffffff800054c4e0 0x0000000000000070 0x000f0000 VNOP_MONITOR | |
| [ 463] 463 X Code 0xffffff800054c160 0x0000000000000070 0x000f0000 VNOP_OFFTOBLK | |
| [ 464] 464 X Code 0xffffff8000548b50 0x0000000000000100 0x000f0000 VNOP_OPEN | |
| [ 465] 465 X Code 0xffffff800054baf0 0x0000000000000080 0x000f0000 VNOP_PAGEIN | |
| [ 466] 466 X Code 0xffffff800054bb70 0x00000000000000c0 0x000f0000 VNOP_PAGEOUT | |
| [ 467] 467 X Code 0xffffff800054b8c0 0x0000000000000070 0x000f0000 VNOP_PATHCONF | |
| [ 468] 468 X Code 0xffffff8000548e50 0x00000000000000b0 0x000f0000 VNOP_READ | |
| [ 469] 469 X Code 0xffffff800054b4d0 0x00000000000000b0 0x000f0000 VNOP_READDIR | |
| [ 470] 470 X Code 0xffffff800054b580 0x00000000000000c0 0x000f0000 VNOP_READDIRATTR | |
| [ 471] 471 X Code 0xffffff800054b710 0x00000000000000a0 0x000f0000 VNOP_READLINK | |
| [ 472] 472 X Code 0xffffff800054b850 0x0000000000000070 0x000f0000 VNOP_RECLAIM | |
| [ 473] 473 X Code 0xffffff8000548840 0x0000000000000140 0x000f0000 VNOP_REMOVE | |
| [ 474] 474 X Code 0xffffff800054c6c0 0x0000000000000080 0x000f0000 VNOP_REMOVENAMEDSTREAM | |
| [ 475] 475 X Code 0xffffff800054bfc0 0x00000000000000b0 0x000f0000 VNOP_REMOVEXATTR | |
| [ 476] 476 X Code 0xffffff800054ac00 0x00000000000000b0 0x000f0000 VNOP_RENAME | |
| [ 477] 477 X Code 0xffffff800054ab40 0x00000000000000c0 0x000f0000 VNOP_RENAMEX | |
| [ 478] 478 X Code 0xffffff8000549390 0x0000000000000070 0x000f0000 VNOP_REVOKE | |
| [ 479] 479 X Code 0xffffff800054b2a0 0x0000000000000140 0x000f0000 VNOP_RMDIR | |
| [ 480] 480 X Code 0xffffff800054bc60 0x00000000000000c0 0x000f0000 VNOP_SEARCHFS | |
| [ 481] 481 X Code 0xffffff8000549190 0x0000000000000110 0x000f0000 VNOP_SELECT | |
| [ 482] 482 X Code 0xffffff8000547600 0x0000000000000470 0x000f0000 VNOP_SETATTR | |
| [ 483] 483 X Code 0xffffff800054c550 0x0000000000000070 0x000f0000 VNOP_SETLABEL | |
| [ 484] 484 X Code 0xffffff800054bf00 0x00000000000000c0 0x000f0000 VNOP_SETXATTR | |
| [ 485] 485 X Code 0xffffff800054c320 0x0000000000000070 0x000f0000 VNOP_STRATEGY | |
| [ 486] 486 X Code 0xffffff800054b3e0 0x00000000000000f0 0x000f0000 VNOP_SYMLINK | |
| [ 487] 487 X Code 0xffffff8000548a80 0x0000000000000010 0x000f0000 VNOP_WHITEOUT | |
| [ 488] 488 X Code 0xffffff8000548f00 0x00000000000000f0 0x000f0000 VNOP_WRITE | |
| [ 489] 489 X Code 0xffffff8000295cd0 0x000000000000032d 0x000f0000 WKdm_compress_new | |
| [ 490] 490 X Code 0xffffff800010e160 0x00000000000002e0 0x000f0000 WKdm_decompress_new | |
| [ 491] 491 X Code 0xffffff8000772cc0 0x0000000000000040 0x000f0000 _FREE | |
| [ 492] 492 X Code 0xffffff8000772ef0 0x00000000000000b0 0x000f0000 _FREE_ZONE | |
| [ 493] 493 X Code 0xffffff8000772df0 0x0000000000000010 0x000f0000 _MALLOC_ZONE_external | |
| [ 494] 494 X Code 0xffffff8000772bf0 0x0000000000000020 0x000f0000 _MALLOC_external | |
| [ 495] 495 X Data 0xffffff8000a27010 0x0000000000000050 0x000f0000 _MachineStateCount | |
| [ 496] 496 X Code 0xffffff800085acf0 0x0000000000000100 0x000f0000 OSUnserialize(char const*, OSString**) | |
| [ 497] 497 X Code 0xffffff8000848fa0 0x0000000000000140 0x000f0000 kern_allocate(unsigned long, kxld_allocate_flags*, void*) | |
| [ 498] 498 X Code 0xffffff80008da310 0x0000000000000120 0x000f0000 IOCPUInitialize() | |
| [ 499] 499 X Code 0xffffff80008ee940 0x0000000000000020 0x000f0000 IOTrackingDebug(unsigned int, unsigned int, unsigned long long, char const*, unsigned long, unsigned long, OSObject**) | |
| [ 500] 500 X Code 0xffffff80008dad20 0x0000000000000450 0x000f0000 IOCPUSleepKernel() | |
| [ 501] 501 X Code 0xffffff8000887e10 0x00000000000001d0 0x000f0000 IODTFindSlotName(IORegistryEntry*, unsigned int) | |
| [ 502] 502 X Code 0xffffff80008871f0 0x0000000000000060 0x000f0000 IODTSetResolving(IORegistryEntry*, int (*)(unsigned int, unsigned int*, unsigned int*), void (*)(IORegistryEntry*, unsigned char*, unsigned char*, unsigned char*)) | |
| [ 503] 503 X Code 0xffffff80008b89e0 0x00000000000006d0 0x000f0000 IOPolledFileOpen(char const*, unsigned long long, unsigned long long, void*, unsigned long, IOPolledFileIOVars**, OSData**, unsigned char*, unsigned long) | |
| [ 504] 504 X Code 0xffffff800085d030 0x00000000000001a0 0x000f0000 OSUnserializeXML(char const*, OSString**) | |
| [ 505] 505 X Code 0xffffff800085d1d0 0x0000000000000040 0x000f0000 OSUnserializeXML(char const*, unsigned long, OSString**) | |
| [ 506] 506 X Code 0xffffff8000887250 0x0000000000000130 0x000f0000 IODTGetCellCounts(IORegistryEntry*, unsigned int*, unsigned int*) | |
| [ 507] 507 X Code 0xffffff8000886d00 0x0000000000000010 0x000f0000 IODTMapInterrupts(IORegistryEntry*) | |
| [ 508] 508 X Code 0xffffff8000884f20 0x00000000000006d0 0x000f0000 IODeviceTreeAlloc(void*) | |
| [ 509] 509 X Code 0xffffff80008b91f0 0x0000000000000090 0x000f0000 IOPolledFileClose(IOPolledFileIOVars**, long long, void*, unsigned long, long long, long long) | |
| [ 510] 510 X Code 0xffffff8000897240 0x0000000000000050 0x000f0000 IOServiceOrdering(OSMetaClassBase const*, OSMetaClassBase const*, void*) | |
| [ 511] 511 X Code 0xffffff8000886d10 0x0000000000000090 0x000f0000 IODTCompareNubName(IORegistryEntry const*, OSString*, OSString**) | |
| [ 512] 512 X Code 0xffffff8000859bb0 0x0000000000001140 0x000f0000 OSUnserializeparse() | |
| [ 513] 513 X Code 0xffffff800085d9c0 0x0000000000000a00 0x000f0000 OSUnserializeBinary(char const*, unsigned long, OSString**) | |
| [ 514] 514 X Code 0xffffff80008d78b0 0x00000000000005e0 0x000f0000 printDictionaryKeys(OSDictionary*, char*) | |
| [ 515] 515 X Code 0xffffff8000887c10 0x0000000000000200 0x000f0000 IODTMakeNVDescriptor(IORegistryEntry*, IONVRAMDescriptor*) | |
| [ 516] 516 X Code 0xffffff8000887020 0x0000000000000050 0x000f0000 IODTMatchNubWithKeys(IORegistryEntry*, char const*) | |
| [ 517] 517 X Code 0xffffff8000887a50 0x00000000000001c0 0x000f0000 IODTResolveAddressing(IORegistryEntry*, char const*, IODeviceMemory*) | |
| [ 518] 518 X Code 0xffffff800085adf0 0x0000000000001ad0 0x000f0000 OSUnserializeXMLparse(void*) | |
| [ 519] 519 X Code 0xffffff8000887380 0x00000000000006c0 0x000f0000 IODTResolveAddressCell(IORegistryEntry*, unsigned int*, unsigned long long*, unsigned long long*) | |
| [ 520] 520 X Code 0xffffff800084e5e0 0x00000000000002b0 0x000f0000 _OSKextConsiderUnloads(void*, void*) | |
| [ 521] 521 X Code 0xffffff8000887070 0x0000000000000180 0x000f0000 IODTFindMatchingEntries(IORegistryEntry*, unsigned int, char const*) | |
| [ 522] 522 X Code 0xffffff8000886b70 0x0000000000000190 0x000f0000 IODTGetInterruptOptions(IORegistryEntry*, int, unsigned int*) | |
| [ 523] 523 X Code 0xffffff80008b89d0 0x0000000000000010 0x000f0000 IOPolledFileGetIOBuffer(IOPolledFileIOVars*) | |
| [ 524] 524 X Code 0xffffff80008f5fe0 0x00000000000000a0 0x000f0000 interruptAccountingInit() | |
| [ 525] 525 X Code 0xffffff80008b9280 0x0000000000000150 0x000f0000 IOPolledFilePollersSetup(IOPolledFileIOVars*, unsigned int) | |
| [ 526] 526 X Code 0xffffff8000886860 0x00000000000000e0 0x000f0000 IODTInterruptControllerName(IORegistryEntry*) | |
| [ 527] 527 X Code 0xffffff80008da680 0x00000000000001b0 0x000f0000 IORemoveServicePlatformActions(IOService*) | |
| [ 528] 528 X Code 0xffffff80008da430 0x0000000000000030 0x000f0000 IOInstallServicePlatformActions(IOService*) | |
| [ 529] 529 X Code 0xffffff80008f6080 0x0000000000000060 0x000f0000 interruptAccountingDataAddToList(IOInterruptAccountingData*) | |
| [ 530] 530 X Code 0xffffff80008f60e0 0x0000000000000070 0x000f0000 interruptAccountingDataRemoveFromList(IOInterruptAccountingData*) | |
| [ 531] 531 X Code 0xffffff80008f6150 0x0000000000000090 0x000f0000 interruptAccountingDataUpdateChannels(IOInterruptAccountingData*, IOSimpleReporter*) | |
| [ 532] 532 X Code 0xffffff80008f61e0 0x0000000000000090 0x000f0000 interruptAccountingDataInheritChannels(IOInterruptAccountingData*, IOSimpleReporter*) | |
| [ 533] 533 X Data 0xffffff8000ac3530 0x0000000000000028 0x000f0000 IOMachPort::gMetaClass | |
| [ 534] 534 X Invalid 0xffffff8000b2ce10 0x0000000000000008 0x000f0000 IOMachPort::superClass | |
| [ 535] 535 X Code 0xffffff80008e5e60 0x0000000000000040 0x000f0000 IOMachPort::dictForType(unsigned int) | |
| [ 536] 536 X Code 0xffffff80008e2160 0x0000000000000150 0x000f0000 IOMachPort::portForObject(OSObject*, unsigned int) | |
| [ 537] 537 X Code 0xffffff80008e6190 0x0000000000000080 0x000f0000 IOMachPort::setHoldDestroy(OSObject*, unsigned int) | |
| [ 538] 538 X Code 0xffffff80008e6360 0x0000000000000010 0x000f0000 IOMachPort::makeSendRightForTask(task*, OSObject*, unsigned int) | |
| [ 539] 539 X Code 0xffffff80008e60e0 0x00000000000000b0 0x000f0000 IOMachPort::releasePortForObject(OSObject*, unsigned int) | |
| [ 540] 540 X Code 0xffffff80008e5ea0 0x0000000000000120 0x000f0000 IOMachPort::noMoreSendersForObject(OSObject*, unsigned int, unsigned int*) | |
| [ 541] 541 X Code 0xffffff80008e11a0 0x0000000000000040 0x000f0000 IOMachPort::free() | |
| [ 542] 542 X Code 0xffffff80008e5d10 0x0000000000000040 0x000f0000 IOMachPort::MetaClass::MetaClass() | |
| [ 543] 543 X Code 0xffffff80008e5da0 0x0000000000000040 0x000f0000 IOMachPort::MetaClass::MetaClass() | |
| [ 544] 544 X Invalid 0xffffff8000b2ce08 0x0000000000000008 0x000f0000 IOMachPort::metaClass | |
| [ 545] 545 X Code 0xffffff80008e5d70 0x0000000000000020 0x000f0000 IOMachPort::IOMachPort(OSMetaClass const*) | |
| [ 546] 546 X Code 0xffffff80008e5de0 0x0000000000000040 0x000f0000 IOMachPort::IOMachPort() | |
| [ 547] 547 X Code 0xffffff80008e5d50 0x0000000000000020 0x000f0000 IOMachPort::IOMachPort(OSMetaClass const*) | |
| [ 548] 548 X Code 0xffffff80008e5e20 0x0000000000000040 0x000f0000 IOMachPort::IOMachPort() | |
| [ 549] 549 X Code 0xffffff80008e1150 0x0000000000000040 0x000f0000 IOMachPort::~IOMachPort() | |
| [ 550] 550 X Code 0xffffff80008e1140 0x0000000000000010 0x000f0000 IOMachPort::~IOMachPort() | |
| [ 551] 551 X Code 0xffffff80008e5d90 0x0000000000000010 0x000f0000 IOMachPort::~IOMachPort() | |
| [ 552] 552 X Data 0xffffff8000ac2be8 0x0000000000000028 0x000f0000 IONotifier::gMetaClass | |
| [ 553] 553 X Invalid 0xffffff8000b1d0c0 0x0000000000000008 0x000f0000 IONotifier::superClass | |
| [ 554] 554 X Code 0xffffff800089c250 0x0000000000000040 0x000f0000 IONotifier::MetaClass::MetaClass() | |
| [ 555] 555 X Code 0xffffff800089c290 0x0000000000000040 0x000f0000 IONotifier::MetaClass::MetaClass() | |
| [ 556] 556 X Invalid 0xffffff8000b1d0c8 0x0000000000000008 0x000f0000 IONotifier::metaClass | |
| [ 557] 557 X Code 0xffffff800089b950 0x0000000000000020 0x000f0000 IONotifier::IONotifier(OSMetaClass const*) | |
| [ 558] 558 X Code 0xffffff800089a8a0 0x0000000000000040 0x000f0000 IONotifier::~IONotifier() | |
| [ 559] 559 X Code 0xffffff800089a890 0x0000000000000010 0x000f0000 IONotifier::~IONotifier() | |
| [ 560] 560 X Code 0xffffff800089b9a0 0x0000000000000010 0x000f0000 IONotifier::~IONotifier() | |
| [ 561] 561 X Code 0xffffff80008f7de0 0x00000000000001b0 0x000f0000 IOReporter::addChannel(unsigned long long, char const*) | |
| [ 562] 562 X Data 0xffffff8000ac3770 0x0000000000000028 0x000f0000 IOReporter::gMetaClass | |
| [ 563] 563 X Code 0xffffff80008f7080 0x0000000000000280 0x000f0000 IOReporter::legendWith(OSArray*, OSArray*, IOReportChannelType, unsigned long long) | |
| [ 564] 564 X Invalid 0xffffff8000b2f5f8 0x0000000000000008 0x000f0000 IOReporter::superClass | |
| [ 565] 565 X Code 0xffffff80008f8080 0x0000000000000040 0x000f0000 IOReporter::createLegend() | |
| [ 566] 566 X Code 0xffffff80008f7fb0 0x0000000000000040 0x000f0000 IOReporter::lockReporter() | |
| [ 567] 567 X Code 0xffffff80008f7d00 0x00000000000000e0 0x000f0000 IOReporter::updateReport(IOReportChannelList*, unsigned int, void*, void*) | |
| [ 568] 568 X Code 0xffffff80008f6fe0 0x00000000000000a0 0x000f0000 IOReporter::copyChannelIDs() | |
| [ 569] 569 X Code 0xffffff80008f7ff0 0x0000000000000070 0x000f0000 IOReporter::unlockReporter() | |
| [ 570] 570 X Code 0xffffff80008f7af0 0x0000000000000070 0x000f0000 IOReporter::configureReport(IOReportChannelList*, unsigned int, void*, void*) | |
| [ 571] 571 X Code 0xffffff80008f6ea0 0x0000000000000050 0x000f0000 IOReporter::getChannelIndex(unsigned long long, int*) | |
| [ 572] 572 X Code 0xffffff80008f6e00 0x0000000000000050 0x000f0000 IOReporter::getElementValues(int) | |
| [ 573] 573 X Code 0xffffff80008f6d60 0x00000000000000a0 0x000f0000 IOReporter::setElementValues(int, IOReportElementValues*, unsigned long long) | |
| [ 574] 574 X Code 0xffffff80008f7b60 0x00000000000001a0 0x000f0000 IOReporter::updateAllReports(OSSet*, IOReportChannelList*, unsigned int, void*, void*) | |
| [ 575] 575 X Code 0xffffff80008f6f70 0x0000000000000070 0x000f0000 IOReporter::copyElementValues(int, IOReportElementValues*) | |
| [ 576] 576 X Code 0xffffff80008f6ef0 0x0000000000000080 0x000f0000 IOReporter::getChannelIndices(unsigned long long, int*, int*) | |
| [ 577] 577 X Code 0xffffff80008f69b0 0x0000000000000150 0x000f0000 IOReporter::handleSwapCleanup(int) | |
| [ 578] 578 X Code 0xffffff80008f6590 0x00000000000001f0 0x000f0000 IOReporter::handleSwapPrepare(int) | |
| [ 579] 579 X Code 0xffffff80008f6d00 0x0000000000000050 0x000f0000 IOReporter::handleCreateLegend() | |
| [ 580] 580 X Code 0xffffff80008f6bd0 0x0000000000000130 0x000f0000 IOReporter::handleUpdateReport(IOReportChannelList*, unsigned int, void*, void*) | |
| [ 581] 581 X Code 0xffffff80008f7f90 0x0000000000000020 0x000f0000 IOReporter::lockReporterConfig() | |
| [ 582] 582 X Code 0xffffff80008f79c0 0x0000000000000130 0x000f0000 IOReporter::configureAllReports(OSSet*, IOReportChannelList*, unsigned int, void*, void*) | |
| [ 583] 583 X Code 0xffffff80008f6d50 0x0000000000000010 0x000f0000 IOReporter::updateChannelValues(int) | |
| [ 584] 584 X Code 0xffffff80008f7300 0x0000000000000130 0x000f0000 IOReporter::updateReportChannel(int, int*, IOBufferMemoryDescriptor*) | |
| [ 585] 585 X Code 0xffffff80008f6e50 0x0000000000000050 0x000f0000 IOReporter::getFirstElementIndex(unsigned long long, int*) | |
| [ 586] 586 X Code 0xffffff80008f6780 0x0000000000000230 0x000f0000 IOReporter::handleAddChannelSwap(unsigned long long, OSSymbol const*) | |
| [ 587] 587 X Code 0xffffff80008f8060 0x0000000000000020 0x000f0000 IOReporter::unlockReporterConfig() | |
| [ 588] 588 X Code 0xffffff80008f6b00 0x00000000000000d0 0x000f0000 IOReporter::handleConfigureReport(IOReportChannelList*, unsigned int, void*, void*) | |
| [ 589] 589 X Code 0xffffff80008f62d0 0x0000000000000140 0x000f0000 IOReporter::free() | |
| [ 590] 590 X Code 0xffffff80008f6410 0x0000000000000180 0x000f0000 IOReporter::init(IOService*, IOReportChannelType, unsigned long long) | |
| [ 591] 591 X Code 0xffffff80008f7870 0x0000000000000040 0x000f0000 IOReporter::MetaClass::MetaClass() | |
| [ 592] 592 X Code 0xffffff80008f7900 0x0000000000000040 0x000f0000 IOReporter::MetaClass::MetaClass() | |
| [ 593] 593 X Invalid 0xffffff8000b2f5f0 0x0000000000000008 0x000f0000 IOReporter::metaClass | |
| [ 594] 594 X Code 0xffffff80008f78d0 0x0000000000000020 0x000f0000 IOReporter::IOReporter(OSMetaClass const*) | |
| [ 595] 595 X Code 0xffffff80008f7940 0x0000000000000040 0x000f0000 IOReporter::IOReporter() | |
| [ 596] 596 X Code 0xffffff80008f78b0 0x0000000000000020 0x000f0000 IOReporter::IOReporter(OSMetaClass const*) | |
| [ 597] 597 X Code 0xffffff80008f7980 0x0000000000000040 0x000f0000 IOReporter::IOReporter() | |
| [ 598] 598 X Code 0xffffff80008f6280 0x0000000000000040 0x000f0000 IOReporter::~IOReporter() | |
| [ 599] 599 X Code 0xffffff80008f6270 0x0000000000000010 0x000f0000 IOReporter::~IOReporter() | |
| [ 600] 600 X Code 0xffffff80008f78f0 0x0000000000000010 0x000f0000 IOReporter::~IOReporter() | |
| [ 601] 601 X Data 0xffffff8000ac2f88 0x0000000000000028 0x000f0000 IOWorkLoop::gMetaClass | |
| [ 602] 602 X Invalid 0xffffff8000b21250 0x0000000000000008 0x000f0000 IOWorkLoop::superClass | |
| [ 603] 603 X Code 0xffffff80008ba2a0 0x00000000000001d0 0x000f0000 IOWorkLoop::threadMain() | |
| [ 604] 604 X Code 0xffffff80008baaa0 0x0000000000000020 0x000f0000 IOWorkLoop::wakeupGate(void*, bool) | |
| [ 605] 605 X Code 0xffffff80008ba910 0x00000000000000a0 0x000f0000 IOWorkLoop::tryCloseGate() | |
| [ 606] 606 X Code 0xffffff80008ba030 0x0000000000000270 0x000f0000 IOWorkLoop::_maintRequest(void*, void*, void*, void*) | |
| [ 607] 607 X Code 0xffffff80008ba4c0 0x00000000000000d0 0x000f0000 IOWorkLoop::addEventSource(IOEventSource*) | |
| [ 608] 608 X Code 0xffffff80008bab20 0x0000000000000270 0x000f0000 IOWorkLoop::runEventSources() | |
| [ 609] 609 X Code 0xffffff80008ba590 0x0000000000000030 0x000f0000 IOWorkLoop::removeEventSource(IOEventSource*) | |
| [ 610] 610 X Code 0xffffff80008bb740 0x00000000000000a0 0x000f0000 IOWorkLoop::setMaximumLockTime(unsigned long long, unsigned int) | |
| [ 611] 611 X Code 0xffffff80008ba780 0x00000000000000a0 0x000f0000 IOWorkLoop::signalWorkAvailable() | |
| [ 612] 612 X Code 0xffffff80008bb670 0x00000000000000a0 0x000f0000 IOWorkLoop::workLoopWithOptions(unsigned int) | |
| [ 613] 613 X Code 0xffffff80008bae80 0x0000000000000030 0x000f0000 IOWorkLoop::_RESERVEDIOWorkLoop0() | |
| [ 614] 614 X Code 0xffffff80008baeb0 0x0000000000000030 0x000f0000 IOWorkLoop::_RESERVEDIOWorkLoop1() | |
| [ 615] 615 X Code 0xffffff80008baee0 0x0000000000000030 0x000f0000 IOWorkLoop::_RESERVEDIOWorkLoop2() | |
| [ 616] 616 X Code 0xffffff80008baf10 0x0000000000000030 0x000f0000 IOWorkLoop::_RESERVEDIOWorkLoop3() | |
| [ 617] 617 X Code 0xffffff80008baf40 0x0000000000000030 0x000f0000 IOWorkLoop::_RESERVEDIOWorkLoop4() | |
| [ 618] 618 X Code 0xffffff80008baf70 0x0000000000000030 0x000f0000 IOWorkLoop::_RESERVEDIOWorkLoop5() | |
| [ 619] 619 X Code 0xffffff80008bafa0 0x0000000000000030 0x000f0000 IOWorkLoop::_RESERVEDIOWorkLoop6() | |
| [ 620] 620 X Code 0xffffff80008bafd0 0x0000000000000030 0x000f0000 IOWorkLoop::_RESERVEDIOWorkLoop7() | |
| [ 621] 621 X Code 0xffffff80008bb710 0x0000000000000030 0x000f0000 IOWorkLoop::eventSourcePerformsWork(IOEventSource*) | |
| [ 622] 622 X Code 0xffffff80008b9de0 0x0000000000000250 0x000f0000 IOWorkLoop::free() | |
| [ 623] 623 X Code 0xffffff80008b9c30 0x00000000000001b0 0x000f0000 IOWorkLoop::init() | |
| [ 624] 624 X Code 0xffffff80008bb000 0x0000000000000070 0x000f0000 IOWorkLoop::lockTime() | |
| [ 625] 625 X Code 0xffffff80008ba820 0x0000000000000060 0x000f0000 IOWorkLoop::openGate() | |
| [ 626] 626 X Code 0xffffff80008bb5f0 0x0000000000000080 0x000f0000 IOWorkLoop::workLoop() | |
| [ 627] 627 X Code 0xffffff80008bb4a0 0x0000000000000040 0x000f0000 IOWorkLoop::MetaClass::MetaClass() | |
| [ 628] 628 X Code 0xffffff80008bb530 0x0000000000000040 0x000f0000 IOWorkLoop::MetaClass::MetaClass() | |
| [ 629] 629 X Code 0xffffff80008ba880 0x0000000000000090 0x000f0000 IOWorkLoop::closeGate() | |
| [ 630] 630 X Invalid 0xffffff8000b21248 0x0000000000000008 0x000f0000 IOWorkLoop::metaClass | |
| [ 631] 631 X Code 0xffffff80008baac0 0x0000000000000060 0x000f0000 IOWorkLoop::runAction(int (*)(OSObject*, void*, void*, void*, void*), OSObject*, void*, void*, void*, void*) | |
| [ 632] 632 X Code 0xffffff80008ba9b0 0x00000000000000f0 0x000f0000 IOWorkLoop::sleepGate(void*, unsigned int) | |
| [ 633] 633 X Code 0xffffff80008bad90 0x00000000000000f0 0x000f0000 IOWorkLoop::sleepGate(void*, unsigned long long, unsigned int) | |
| [ 634] 634 X Code 0xffffff80008bb500 0x0000000000000020 0x000f0000 IOWorkLoop::IOWorkLoop(OSMetaClass const*) | |
| [ 635] 635 X Code 0xffffff80008bb570 0x0000000000000040 0x000f0000 IOWorkLoop::IOWorkLoop() | |
| [ 636] 636 X Code 0xffffff80008bb4e0 0x0000000000000020 0x000f0000 IOWorkLoop::IOWorkLoop(OSMetaClass const*) | |
| [ 637] 637 X Code 0xffffff80008bb5b0 0x0000000000000040 0x000f0000 IOWorkLoop::IOWorkLoop() | |
| [ 638] 638 X Code 0xffffff80008b9be0 0x0000000000000040 0x000f0000 IOWorkLoop::~IOWorkLoop() | |
| [ 639] 639 X Code 0xffffff80008b9bd0 0x0000000000000010 0x000f0000 IOWorkLoop::~IOWorkLoop() | |
| [ 640] 640 X Code 0xffffff80008bb520 0x0000000000000010 0x000f0000 IOWorkLoop::~IOWorkLoop() | |
| [ 641] 641 X Data 0xffffff8000ac2610 0x0000000000000028 0x000f0000 OSIterator::gMetaClass | |
| [ 642] 642 X Invalid 0xffffff8000b19bc8 0x0000000000000008 0x000f0000 OSIterator::superClass | |
| [ 643] 643 X Code 0xffffff800083c1e0 0x0000000000000030 0x000f0000 OSIterator::_RESERVEDOSIterator0() | |
| [ 644] 644 X Code 0xffffff800083c210 0x0000000000000030 0x000f0000 OSIterator::_RESERVEDOSIterator1() | |
| [ 645] 645 X Code 0xffffff800083c240 0x0000000000000030 0x000f0000 OSIterator::_RESERVEDOSIterator2() | |
| [ 646] 646 X Code 0xffffff800083c270 0x0000000000000030 0x000f0000 OSIterator::_RESERVEDOSIterator3() | |
| [ 647] 647 X Code 0xffffff800083c690 0x0000000000000040 0x000f0000 OSIterator::MetaClass::MetaClass() | |
| [ 648] 648 X Code 0xffffff800083c700 0x0000000000000040 0x000f0000 OSIterator::MetaClass::MetaClass() | |
| [ 649] 649 X Invalid 0xffffff8000b19bc0 0x0000000000000008 0x000f0000 OSIterator::metaClass | |
| [ 650] 650 X Code 0xffffff800083c6d0 0x0000000000000020 0x000f0000 OSIterator::OSIterator(OSMetaClass const*) | |
| [ 651] 651 X Code 0xffffff800083c190 0x0000000000000040 0x000f0000 OSIterator::~OSIterator() | |
| [ 652] 652 X Code 0xffffff800083c180 0x0000000000000010 0x000f0000 OSIterator::~OSIterator() | |
| [ 653] 653 X Code 0xffffff800083c6f0 0x0000000000000010 0x000f0000 OSIterator::~OSIterator() | |
| [ 654] 654 X Code 0xffffff80008b4090 0x0000000000000290 0x000f0000 IOCatalogue::addDrivers(OSArray*, bool) | |
| [ 655] 655 X Data 0xffffff8000ac2ec0 0x0000000000000028 0x000f0000 IOCatalogue::gMetaClass | |
| [ 656] 656 X Code 0xffffff80008b3a20 0x0000000000000130 0x000f0000 IOCatalogue::initialize() | |
| [ 657] 657 X Invalid 0xffffff8000b1ffa0 0x0000000000000008 0x000f0000 IOCatalogue::superClass | |
| [ 658] 658 X Code 0xffffff80008b3f20 0x0000000000000170 0x000f0000 IOCatalogue::findDrivers(OSDictionary*, int*) | |
| [ 659] 659 X Code 0xffffff80008b3e10 0x0000000000000100 0x000f0000 IOCatalogue::findDrivers(IOService*, int*) | |
| [ 660] 660 X Code 0xffffff80008b4320 0x0000000000000190 0x000f0000 IOCatalogue::removeDrivers(OSDictionary*, bool) | |
| [ 661] 661 X Code 0xffffff80008b46c0 0x0000000000000180 0x000f0000 IOCatalogue::startMatching(OSDictionary*) | |
| [ 662] 662 X Code 0xffffff80008b49c0 0x00000000000000d0 0x000f0000 IOCatalogue::_removeDrivers(OSDictionary*) | |
| [ 663] 663 X Code 0xffffff80008b3cc0 0x00000000000000e0 0x000f0000 IOCatalogue::addPersonality(OSDictionary*) | |
| [ 664] 664 X Code 0xffffff80008b4660 0x0000000000000060 0x000f0000 IOCatalogue::moduleHasLoaded(OSString*) | |
| [ 665] 665 X Code 0xffffff80008b4840 0x0000000000000080 0x000f0000 IOCatalogue::moduleHasLoaded(char const*) | |
| [ 666] 666 X Code 0xffffff80008b4a90 0x0000000000000050 0x000f0000 IOCatalogue::terminateDrivers(OSDictionary*) | |
| [ 667] 667 X Code 0xffffff80008b48e0 0x00000000000000e0 0x000f0000 IOCatalogue::_terminateDrivers(OSDictionary*) | |
| [ 668] 668 X Code 0xffffff80008b4c40 0x0000000000000490 0x000f0000 IOCatalogue::resetAndAddDrivers(OSArray*, bool) | |
| [ 669] 669 X Code 0xffffff80008b3da0 0x0000000000000070 0x000f0000 IOCatalogue::arrayForPersonality(OSDictionary*) | |
| [ 670] 670 X Code 0xffffff80008b4ae0 0x0000000000000100 0x000f0000 IOCatalogue::terminateDriversForModule(OSString*, bool) | |
| [ 671] 671 X Code 0xffffff80008b4be0 0x0000000000000050 0x000f0000 IOCatalogue::terminateDriversForModule(char const*, bool) | |
| [ 672] 672 X Code 0xffffff80008b3480 0x0000000000000020 0x000f0000 IOCatalogue::free() | |
| [ 673] 673 X Code 0xffffff80008b3b50 0x0000000000000170 0x000f0000 IOCatalogue::init(OSArray*) | |
| [ 674] 674 X Code 0xffffff80008b4c30 0x0000000000000010 0x000f0000 IOCatalogue::reset() | |
| [ 675] 675 X Code 0xffffff80008b38d0 0x0000000000000040 0x000f0000 IOCatalogue::MetaClass::MetaClass() | |
| [ 676] 676 X Code 0xffffff80008b3960 0x0000000000000040 0x000f0000 IOCatalogue::MetaClass::MetaClass() | |
| [ 677] 677 X Invalid 0xffffff8000b1ff98 0x0000000000000008 0x000f0000 IOCatalogue::metaClass | |
| [ 678] 678 X Code 0xffffff80008b3930 0x0000000000000020 0x000f0000 IOCatalogue::IOCatalogue(OSMetaClass const*) | |
| [ 679] 679 X Code 0xffffff80008b39a0 0x0000000000000040 0x000f0000 IOCatalogue::IOCatalogue() | |
| [ 680] 680 X Code 0xffffff80008b3910 0x0000000000000020 0x000f0000 IOCatalogue::IOCatalogue(OSMetaClass const*) | |
| [ 681] 681 X Code 0xffffff80008b39e0 0x0000000000000040 0x000f0000 IOCatalogue::IOCatalogue() | |
| [ 682] 682 X Code 0xffffff80008b3410 0x0000000000000040 0x000f0000 IOCatalogue::~IOCatalogue() | |
| [ 683] 683 X Code 0xffffff80008b3400 0x0000000000000010 0x000f0000 IOCatalogue::~IOCatalogue() | |
| [ 684] 684 X Code 0xffffff80008b3950 0x0000000000000010 0x000f0000 IOCatalogue::~IOCatalogue() | |
| [ 685] 685 X Data 0xffffff8000ac36a8 0x0000000000000028 0x000f0000 IODataQueue::gMetaClass | |
| [ 686] 686 X Invalid 0xffffff8000b2f0f8 0x0000000000000008 0x000f0000 IODataQueue::superClass | |
| [ 687] 687 X Code 0xffffff80008ef4b0 0x0000000000000090 0x000f0000 IODataQueue::withEntries(unsigned int, unsigned int) | |
| [ 688] 688 X Code 0xffffff80008ef430 0x0000000000000080 0x000f0000 IODataQueue::withCapacity(unsigned int) | |
| [ 689] 689 X Code 0xffffff80008eed00 0x0000000000000040 0x000f0000 IODataQueue::initWithEntries(unsigned int, unsigned int) | |
| [ 690] 690 X Code 0xffffff80008eec60 0x00000000000000a0 0x000f0000 IODataQueue::initWithCapacity(unsigned int) | |
| [ 691] 691 X Code 0xffffff80008eee80 0x0000000000000030 0x000f0000 IODataQueue::getMemoryDescriptor() | |
| [ 692] 692 X Code 0xffffff80008eee40 0x0000000000000040 0x000f0000 IODataQueue::setNotificationPort(ipc_port*) | |
| [ 693] 693 X Code 0xffffff80008eec10 0x0000000000000050 0x000f0000 IODataQueue::sendDataAvailableNotification() | |
| [ 694] 694 X Code 0xffffff80008eeb90 0x0000000000000080 0x000f0000 IODataQueue::free() | |
| [ 695] 695 X Code 0xffffff80008eed40 0x0000000000000100 0x000f0000 IODataQueue::enqueue(void*, unsigned int) | |
| [ 696] 696 X Code 0xffffff80008ef2e0 0x0000000000000040 0x000f0000 IODataQueue::MetaClass::MetaClass() | |
| [ 697] 697 X Code 0xffffff80008ef370 0x0000000000000040 0x000f0000 IODataQueue::MetaClass::MetaClass() | |
| [ 698] 698 X Invalid 0xffffff8000b2f0f0 0x0000000000000008 0x000f0000 IODataQueue::metaClass | |
| [ 699] 699 X Code 0xffffff80008ef340 0x0000000000000020 0x000f0000 IODataQueue::IODataQueue(OSMetaClass const*) | |
| [ 700] 700 X Code 0xffffff80008ef3b0 0x0000000000000040 0x000f0000 IODataQueue::IODataQueue() | |
| [ 701] 701 X Code 0xffffff80008ef320 0x0000000000000020 0x000f0000 IODataQueue::IODataQueue(OSMetaClass const*) | |
| [ 702] 702 X Code 0xffffff80008ef3f0 0x0000000000000040 0x000f0000 IODataQueue::IODataQueue() | |
| [ 703] 703 X Code 0xffffff80008eeb40 0x0000000000000040 0x000f0000 IODataQueue::~IODataQueue() | |
| [ 704] 704 X Code 0xffffff80008eeb30 0x0000000000000010 0x000f0000 IODataQueue::~IODataQueue() | |
| [ 705] 705 X Code 0xffffff80008ef360 0x0000000000000010 0x000f0000 IODataQueue::~IODataQueue() | |
| [ 706] 706 X Data 0xffffff8000ac3260 0x0000000000000028 0x000f0000 IOMemoryMap::gMetaClass | |
| [ 707] 707 X Invalid 0xffffff8000b24d78 0x0000000000000008 0x000f0000 IOMemoryMap::superClass | |
| [ 708] 708 X Code 0xffffff80008cf480 0x0000000000000010 0x000f0000 IOMemoryMap::getMapOptions() | |
| [ 709] 709 X Code 0xffffff80008caad0 0x00000000000000f0 0x000f0000 IOMemoryMap::copyCompatible(IOMemoryMap*) | |
| [ 710] 710 X Code 0xffffff80008cf450 0x0000000000000020 0x000f0000 IOMemoryMap::getAddressTask() | |
| [ 711] 711 X Code 0xffffff80008d1730 0x0000000000000010 0x000f0000 IOMemoryMap::userClientUnmap() | |
| [ 712] 712 X Code 0xffffff80008cf390 0x0000000000000010 0x000f0000 IOMemoryMap::getVirtualAddress() | |
| [ 713] 713 X Code 0xffffff80008d1600 0x0000000000000020 0x000f0000 IOMemoryMap::getPhysicalAddress() | |
| [ 714] 714 X Code 0xffffff80008cf3a0 0x00000000000000a0 0x000f0000 IOMemoryMap::getPhysicalSegment(unsigned long long, unsigned long long*, unsigned int) | |
| [ 715] 715 X Code 0xffffff80008cf470 0x0000000000000010 0x000f0000 IOMemoryMap::getMemoryDescriptor() | |
| [ 716] 716 X Code 0xffffff80008d16b0 0x0000000000000080 0x000f0000 IOMemoryMap::setMemoryDescriptor(IOMemoryDescriptor*, unsigned long long) | |
| [ 717] 717 X Code 0xffffff80008cf880 0x0000000000000030 0x000f0000 IOMemoryMap::_RESERVEDIOMemoryMap0() | |
| [ 718] 718 X Code 0xffffff80008cf8b0 0x0000000000000030 0x000f0000 IOMemoryMap::_RESERVEDIOMemoryMap1() | |
| [ 719] 719 X Code 0xffffff80008cf8e0 0x0000000000000030 0x000f0000 IOMemoryMap::_RESERVEDIOMemoryMap2() | |
| [ 720] 720 X Code 0xffffff80008cf910 0x0000000000000030 0x000f0000 IOMemoryMap::_RESERVEDIOMemoryMap3() | |
| [ 721] 721 X Code 0xffffff80008cf940 0x0000000000000030 0x000f0000 IOMemoryMap::_RESERVEDIOMemoryMap4() | |
| [ 722] 722 X Code 0xffffff80008cf970 0x0000000000000030 0x000f0000 IOMemoryMap::_RESERVEDIOMemoryMap5() | |
| [ 723] 723 X Code 0xffffff80008cf9a0 0x0000000000000030 0x000f0000 IOMemoryMap::_RESERVEDIOMemoryMap6() | |
| [ 724] 724 X Code 0xffffff80008cf9d0 0x0000000000000030 0x000f0000 IOMemoryMap::_RESERVEDIOMemoryMap7() | |
| [ 725] 725 X Code 0xffffff80008cf230 0x0000000000000160 0x000f0000 IOMemoryMap::free() | |
| [ 726] 726 X Code 0xffffff80008d1620 0x0000000000000090 0x000f0000 IOMemoryMap::init(task*, unsigned long long, unsigned int, unsigned long long, unsigned long long) | |
| [ 727] 727 X Code 0xffffff80008cf490 0x00000000000000d0 0x000f0000 IOMemoryMap::unmap() | |
| [ 728] 728 X Code 0xffffff80008cf600 0x0000000000000280 0x000f0000 IOMemoryMap::redirect(IOMemoryDescriptor*, unsigned int, unsigned long long) | |
| [ 729] 729 X Code 0xffffff80008ceec0 0x0000000000000150 0x000f0000 IOMemoryMap::redirect(task*, bool) | |
| [ 730] 730 X Code 0xffffff80008cf560 0x00000000000000a0 0x000f0000 IOMemoryMap::taskDied() | |
| [ 731] 731 X Code 0xffffff80008d14b0 0x0000000000000040 0x000f0000 IOMemoryMap::MetaClass::MetaClass() | |
| [ 732] 732 X Code 0xffffff80008d1540 0x0000000000000040 0x000f0000 IOMemoryMap::MetaClass::MetaClass() | |
| [ 733] 733 X Code 0xffffff80008cf440 0x0000000000000010 0x000f0000 IOMemoryMap::getLength() | |
| [ 734] 734 X Invalid 0xffffff8000b24d80 0x0000000000000008 0x000f0000 IOMemoryMap::metaClass | |
| [ 735] 735 X Code 0xffffff80008d1740 0x00000000000000f0 0x000f0000 IOMemoryMap::wireRange(unsigned int, unsigned long long, unsigned long long) | |
| [ 736] 736 X Code 0xffffff80008d1510 0x0000000000000020 0x000f0000 IOMemoryMap::IOMemoryMap(OSMetaClass const*) | |
| [ 737] 737 X Code 0xffffff80008d1580 0x0000000000000040 0x000f0000 IOMemoryMap::IOMemoryMap() | |
| [ 738] 738 X Code 0xffffff80008d14f0 0x0000000000000020 0x000f0000 IOMemoryMap::IOMemoryMap(OSMetaClass const*) | |
| [ 739] 739 X Code 0xffffff80008d15c0 0x0000000000000040 0x000f0000 IOMemoryMap::IOMemoryMap() | |
| [ 740] 740 X Code 0xffffff80008cf150 0x0000000000000040 0x000f0000 IOMemoryMap::~IOMemoryMap() | |
| [ 741] 741 X Code 0xffffff80008cf140 0x0000000000000010 0x000f0000 IOMemoryMap::~IOMemoryMap() | |
| [ 742] 742 X Code 0xffffff80008d1530 0x0000000000000010 0x000f0000 IOMemoryMap::~IOMemoryMap() | |
| [ 743] 743 X Data 0xffffff8000ac2d58 0x0000000000000028 0x000f0000 IOPMRequest::gMetaClass | |
| [ 744] 744 X Invalid 0xffffff8000b1ead8 0x0000000000000008 0x000f0000 IOPMRequest::superClass | |
| [ 745] 745 X Code 0xffffff80008ad690 0x0000000000000020 0x000f0000 IOPMRequest::attachNextRequest(IOPMRequest*) | |
| [ 746] 746 X Code 0xffffff80008b10a0 0x0000000000000020 0x000f0000 IOPMRequest::attachRootRequest(IOPMRequest*) | |
| [ 747] 747 X Code 0xffffff80008b14a0 0x0000000000000030 0x000f0000 IOPMRequest::detachNextRequest() | |
| [ 748] 748 X Code 0xffffff80008b14d0 0x0000000000000030 0x000f0000 IOPMRequest::detachRootRequest() | |
| [ 749] 749 X Code 0xffffff80008b1040 0x0000000000000060 0x000f0000 IOPMRequest::init(IOService*, unsigned int) | |
| [ 750] 750 X Code 0xffffff80008b10c0 0x0000000000000090 0x000f0000 IOPMRequest::reset() | |
| [ 751] 751 X Code 0xffffff80008b0fe0 0x0000000000000060 0x000f0000 IOPMRequest::create() | |
| [ 752] 752 X Code 0xffffff80008b1350 0x0000000000000040 0x000f0000 IOPMRequest::MetaClass::MetaClass() | |
| [ 753] 753 X Code 0xffffff80008b13e0 0x0000000000000040 0x000f0000 IOPMRequest::MetaClass::MetaClass() | |
| [ 754] 754 X Invalid 0xffffff8000b1ead0 0x0000000000000008 0x000f0000 IOPMRequest::metaClass | |
| [ 755] 755 X Code 0xffffff80008b13b0 0x0000000000000020 0x000f0000 IOPMRequest::IOPMRequest(OSMetaClass const*) | |
| [ 756] 756 X Code 0xffffff80008b1420 0x0000000000000040 0x000f0000 IOPMRequest::IOPMRequest() | |
| [ 757] 757 X Code 0xffffff80008b1390 0x0000000000000020 0x000f0000 IOPMRequest::IOPMRequest(OSMetaClass const*) | |
| [ 758] 758 X Code 0xffffff80008b1460 0x0000000000000040 0x000f0000 IOPMRequest::IOPMRequest() | |
| [ 759] 759 X Code 0xffffff800089e800 0x0000000000000040 0x000f0000 IOPMRequest::~IOPMRequest() | |
| [ 760] 760 X Code 0xffffff800089e7f0 0x0000000000000010 0x000f0000 IOPMRequest::~IOPMRequest() | |
| [ 761] 761 X Code 0xffffff80008b13d0 0x0000000000000010 0x000f0000 IOPMRequest::~IOPMRequest() | |
| [ 762] 762 X Data 0xffffff8000ac2c38 0x0000000000000028 0x000f0000 IOResources::gMetaClass | |
| [ 763] 763 X Invalid 0xffffff8000b1d0e0 0x0000000000000008 0x000f0000 IOResources::superClass | |
| [ 764] 764 X Code 0xffffff8000899da0 0x0000000000000010 0x000f0000 IOResources::newUserClient(task*, void*, unsigned int, OSDictionary*, IOUserClient**) | |
| [ 765] 765 X Code 0xffffff80008999c0 0x0000000000000210 0x000f0000 IOResources::setProperties(OSObject*) | |
| [ 766] 766 X Code 0xffffff8000899bd0 0x0000000000000190 0x000f0000 IOResources::matchPropertyTable(OSDictionary*) | |
| [ 767] 767 X Code 0xffffff8000899890 0x0000000000000130 0x000f0000 IOResources::init(OSDictionary*) | |
| [ 768] 768 X Code 0xffffff800089bfb0 0x0000000000000040 0x000f0000 IOResources::MetaClass::MetaClass() | |
| [ 769] 769 X Code 0xffffff800089c040 0x0000000000000040 0x000f0000 IOResources::MetaClass::MetaClass() | |
| [ 770] 770 X Invalid 0xffffff8000b1d0e8 0x0000000000000008 0x000f0000 IOResources::metaClass | |
| [ 771] 771 X Code 0xffffff800089caa0 0x0000000000000080 0x000f0000 IOResources::resources() | |
| [ 772] 772 X Code 0xffffff800089c010 0x0000000000000020 0x000f0000 IOResources::IOResources(OSMetaClass const*) | |
| [ 773] 773 X Code 0xffffff800089c080 0x0000000000000040 0x000f0000 IOResources::IOResources() | |
| [ 774] 774 X Code 0xffffff800089bff0 0x0000000000000020 0x000f0000 IOResources::IOResources(OSMetaClass const*) | |
| [ 775] 775 X Code 0xffffff800089c0c0 0x0000000000000040 0x000f0000 IOResources::IOResources() | |
| [ 776] 776 X Code 0xffffff8000899840 0x0000000000000040 0x000f0000 IOResources::~IOResources() | |
| [ 777] 777 X Code 0xffffff8000899830 0x0000000000000010 0x000f0000 IOResources::~IOResources() | |
| [ 778] 778 X Code 0xffffff800089c030 0x0000000000000010 0x000f0000 IOResources::~IOResources() | |
| [ 779] 779 X Data 0xffffff8000ac2d80 0x0000000000000028 0x000f0000 IOServicePM::gMetaClass | |
| [ 780] 780 X Invalid 0xffffff8000b1ec10 0x0000000000000008 0x000f0000 IOServicePM::superClass | |
| [ 781] 781 X Code 0xffffff80008b1950 0x0000000000000040 0x000f0000 IOServicePM::MetaClass::MetaClass() | |
| [ 782] 782 X Code 0xffffff80008b19e0 0x0000000000000040 0x000f0000 IOServicePM::MetaClass::MetaClass() | |
| [ 783] 783 X Invalid 0xffffff8000b1ec18 0x0000000000000008 0x000f0000 IOServicePM::metaClass | |
| [ 784] 784 X Code 0xffffff80008b19b0 0x0000000000000020 0x000f0000 IOServicePM::IOServicePM(OSMetaClass const*) | |
| [ 785] 785 X Code 0xffffff80008ac750 0x0000000000000040 0x000f0000 IOServicePM::IOServicePM() | |
| [ 786] 786 X Code 0xffffff80008b1990 0x0000000000000020 0x000f0000 IOServicePM::IOServicePM(OSMetaClass const*) | |
| [ 787] 787 X Code 0xffffff80008b1a20 0x0000000000000040 0x000f0000 IOServicePM::IOServicePM() | |
| [ 788] 788 X Code 0xffffff800089f990 0x0000000000000040 0x000f0000 IOServicePM::~IOServicePM() | |
| [ 789] 789 X Code 0xffffff800089f980 0x0000000000000010 0x000f0000 IOServicePM::~IOServicePM() | |
| [ 790] 790 X Code 0xffffff80008b19d0 0x0000000000000010 0x000f0000 IOServicePM::~IOServicePM() | |
| [ 791] 791 X Code 0xffffff8000834220 0x00000000000000d0 0x000f0000 OSMetaClass::preModLoad(char const*) | |
| [ 792] 792 X Code 0xffffff8000834310 0x0000000000000470 0x000f0000 OSMetaClass::postModLoad(void*) | |
| [ 793] 793 X Code 0xffffff80008342f0 0x0000000000000020 0x000f0000 OSMetaClass::checkModLoad(void*) | |
| [ 794] 794 X Code 0xffffff8000834840 0x0000000000000040 0x000f0000 OSMetaClass::modHasInstance(char const*) | |
| [ 795] 795 X Code 0xffffff8000834d30 0x0000000000000010 0x000f0000 OSMetaClass::considerUnloads() | |
| [ 796] 796 X Code 0xffffff80008349f0 0x0000000000000240 0x000f0000 OSMetaClass::applyToInstances(OSOrderedSet*, bool (*)(OSObject const*, void*), void*) | |
| [ 797] 797 X Code 0xffffff8000834e00 0x0000000000000090 0x000f0000 OSMetaClass::allocClassWithName(OSString const*) | |
| [ 798] 798 X Code 0xffffff8000834d90 0x0000000000000070 0x000f0000 OSMetaClass::allocClassWithName(OSSymbol const*) | |
| [ 799] 799 X Code 0xffffff8000834e90 0x0000000000000090 0x000f0000 OSMetaClass::allocClassWithName(char const*) | |
| [ 800] 800 X Code 0xffffff80008351e0 0x0000000000000020 0x000f0000 OSMetaClass::getClassDictionary() | |
| [ 801] 801 X Code 0xffffff8000834880 0x0000000000000010 0x000f0000 OSMetaClass::reportModInstances(char const*) | |
| [ 802] 802 X Code 0xffffff8000835110 0x00000000000000d0 0x000f0000 OSMetaClass::printInstanceCounts() | |
| [ 803] 803 X Code 0xffffff8000834d40 0x0000000000000050 0x000f0000 OSMetaClass::getMetaClassWithName(OSSymbol const*) | |
| [ 804] 804 X Code 0xffffff8000833720 0x0000000000000020 0x000f0000 OSMetaClass::_RESERVEDOSMetaClass0() | |
| [ 805] 805 X Code 0xffffff8000833740 0x0000000000000020 0x000f0000 OSMetaClass::_RESERVEDOSMetaClass1() | |
| [ 806] 806 X Code 0xffffff8000833760 0x0000000000000020 0x000f0000 OSMetaClass::_RESERVEDOSMetaClass2() | |
| [ 807] 807 X Code 0xffffff8000833780 0x0000000000000020 0x000f0000 OSMetaClass::_RESERVEDOSMetaClass3() | |
| [ 808] 808 X Code 0xffffff80008337a0 0x0000000000000020 0x000f0000 OSMetaClass::_RESERVEDOSMetaClass4() | |
| [ 809] 809 X Code 0xffffff80008337c0 0x0000000000000020 0x000f0000 OSMetaClass::_RESERVEDOSMetaClass5() | |
| [ 810] 810 X Code 0xffffff80008337e0 0x0000000000000020 0x000f0000 OSMetaClass::_RESERVEDOSMetaClass6() | |
| [ 811] 811 X Code 0xffffff8000833800 0x0000000000000020 0x000f0000 OSMetaClass::_RESERVEDOSMetaClass7() | |
| [ 812] 812 X Code 0xffffff8000834f20 0x00000000000000b0 0x000f0000 OSMetaClass::checkMetaCastWithName(OSString const*, OSMetaClassBase const*) | |
| [ 813] 813 X Code 0xffffff8000833db0 0x0000000000000090 0x000f0000 OSMetaClass::checkMetaCastWithName(OSSymbol const*, OSMetaClassBase const*) | |
| [ 814] 814 X Code 0xffffff8000834fd0 0x00000000000000b0 0x000f0000 OSMetaClass::checkMetaCastWithName(char const*, OSMetaClassBase const*) | |
| [ 815] 815 X Code 0xffffff8000835200 0x0000000000000100 0x000f0000 OSMetaClass::serializeClassDictionary(OSDictionary*) | |
| [ 816] 816 X Code 0xffffff8000834c80 0x00000000000000b0 0x000f0000 OSMetaClass::applyToInstancesOfClassName(OSSymbol const*, bool (*)(OSObject const*, void*), void*) | |
| [ 817] 817 X Code 0xffffff8000834000 0x00000000000000b0 0x000f0000 OSMetaClass::logError(int) | |
| [ 818] 818 X Invalid 0xffffff8000b18660 0x0000000000000008 0x000f0000 OSMetaClass::metaClass | |
| [ 819] 819 X Code 0xffffff8000833990 0x0000000000000130 0x000f0000 OSMetaClass::OSMetaClass(char const*, OSMetaClass const*, unsigned int) | |
| [ 820] 820 X Code 0xffffff8000833950 0x0000000000000010 0x000f0000 OSMetaClass::~OSMetaClass() | |
| [ 821] 821 X Code 0xffffff8000833820 0x0000000000000130 0x000f0000 OSMetaClass::~OSMetaClass() | |
| [ 822] 822 X Code 0xffffff80008340b0 0x0000000000000130 0x000f0000 OSMetaClass::~OSMetaClass() | |
| [ 823] 823 X Code 0xffffff8000854930 0x0000000000000010 0x000f0000 OSMetaClass::operator delete(void*, unsigned long) | |
| [ 824] 824 X Code 0xffffff8000854940 0x0000000000000010 0x000f0000 OSMetaClass::operator new(unsigned long) | |
| [ 825] 825 X Data 0xffffff8000ac26d8 0x0000000000000028 0x000f0000 OSSerialize::gMetaClass | |
| [ 826] 826 X Invalid 0xffffff8000b1a8a8 0x0000000000000008 0x000f0000 OSSerialize::superClass | |
| [ 827] 827 X Code 0xffffff8000854ce0 0x0000000000000070 0x000f0000 OSSerialize::addXMLEndTag(char const*) | |
| [ 828] 828 X Code 0xffffff8000855ba0 0x0000000000000080 0x000f0000 OSSerialize::withCapacity(unsigned int) | |
| [ 829] 829 X Code 0xffffff8000854b60 0x0000000000000180 0x000f0000 OSSerialize::addXMLStartTag(OSMetaClassBase const*, char const*) | |
| [ 830] 830 X Code 0xffffff8000854f70 0x00000000000000b0 0x000f0000 OSSerialize::ensureCapacity(unsigned int) | |
| [ 831] 831 X Code 0xffffff800085d330 0x0000000000000120 0x000f0000 OSSerialize::addBinaryObject(OSMetaClassBase const*, unsigned int, void const*, unsigned long) | |
| [ 832] 832 X Code 0xffffff800085d450 0x0000000000000570 0x000f0000 OSSerialize::binarySerialize(OSMetaClassBase const*) | |
| [ 833] 833 X Code 0xffffff8000854e10 0x0000000000000110 0x000f0000 OSSerialize::initWithCapacity(unsigned int) | |
| [ 834] 834 X Code 0xffffff800085d210 0x0000000000000060 0x000f0000 OSSerialize::binaryWithCapacity(unsigned int, OSMetaClassBase const* (*)(void*, OSSerialize*, OSCollection*, OSSymbol const*, OSMetaClassBase const*), void*) | |
| [ 835] 835 X Code 0xffffff8000854a80 0x00000000000000e0 0x000f0000 OSSerialize::previouslySerialized(OSMetaClassBase const*) | |
| [ 836] 836 X Code 0xffffff8000854f50 0x0000000000000020 0x000f0000 OSSerialize::setCapacityIncrement(unsigned int) | |
| [ 837] 837 X Code 0xffffff8000855020 0x0000000000000030 0x000f0000 OSSerialize::_RESERVEDOSSerialize0() | |
| [ 838] 838 X Code 0xffffff8000855050 0x0000000000000030 0x000f0000 OSSerialize::_RESERVEDOSSerialize1() | |
| [ 839] 839 X Code 0xffffff8000855080 0x0000000000000030 0x000f0000 OSSerialize::_RESERVEDOSSerialize2() | |
| [ 840] 840 X Code 0xffffff80008550b0 0x0000000000000030 0x000f0000 OSSerialize::_RESERVEDOSSerialize3() | |
| [ 841] 841 X Code 0xffffff80008550e0 0x0000000000000030 0x000f0000 OSSerialize::_RESERVEDOSSerialize4() | |
| [ 842] 842 X Code 0xffffff8000855110 0x0000000000000030 0x000f0000 OSSerialize::_RESERVEDOSSerialize5() | |
| [ 843] 843 X Code 0xffffff8000855140 0x0000000000000030 0x000f0000 OSSerialize::_RESERVEDOSSerialize6() | |
| [ 844] 844 X Code 0xffffff8000855170 0x0000000000000030 0x000f0000 OSSerialize::_RESERVEDOSSerialize7() | |
| [ 845] 845 X Code 0xffffff80008549b0 0x0000000000000070 0x000f0000 OSSerialize::free() | |
| [ 846] 846 X Code 0xffffff8000854d50 0x0000000000000080 0x000f0000 OSSerialize::addChar(char) | |
| [ 847] 847 X Code 0xffffff8000855a50 0x0000000000000040 0x000f0000 OSSerialize::MetaClass::MetaClass() | |
| [ 848] 848 X Code 0xffffff8000855ae0 0x0000000000000040 0x000f0000 OSSerialize::MetaClass::MetaClass() | |
| [ 849] 849 X Code 0xffffff800085d270 0x00000000000000c0 0x000f0000 OSSerialize::addBinary(void const*, unsigned long) | |
| [ 850] 850 X Code 0xffffff8000854dd0 0x0000000000000040 0x000f0000 OSSerialize::addString(char const*) | |
| [ 851] 851 X Code 0xffffff8000854a30 0x0000000000000050 0x000f0000 OSSerialize::clearText() | |
| [ 852] 852 X Invalid 0xffffff8000b1a8a0 0x0000000000000008 0x000f0000 OSSerialize::metaClass | |
| [ 853] 853 X Code 0xffffff8000855ab0 0x0000000000000020 0x000f0000 OSSerialize::OSSerialize(OSMetaClass const*) | |
| [ 854] 854 X Code 0xffffff8000855b20 0x0000000000000040 0x000f0000 OSSerialize::OSSerialize() | |
| [ 855] 855 X Code 0xffffff8000855a90 0x0000000000000020 0x000f0000 OSSerialize::OSSerialize(OSMetaClass const*) | |
| [ 856] 856 X Code 0xffffff8000855b60 0x0000000000000040 0x000f0000 OSSerialize::OSSerialize() | |
| [ 857] 857 X Code 0xffffff8000854960 0x0000000000000040 0x000f0000 OSSerialize::~OSSerialize() | |
| [ 858] 858 X Code 0xffffff8000854950 0x0000000000000010 0x000f0000 OSSerialize::~OSSerialize() | |
| [ 859] 859 X Code 0xffffff8000855ad0 0x0000000000000010 0x000f0000 OSSerialize::~OSSerialize() | |
| [ 860] 860 X Data 0xffffff8000ac3118 0x0000000000000028 0x000f0000 IODMACommand::gMetaClass | |
| [ 861] 861 X Invalid 0xffffff8000b231a0 0x0000000000000008 0x000f0000 IODMACommand::superClass | |
| [ 862] 862 X Code 0xffffff80008c55d0 0x0000000000000080 0x000f0000 IODMACommand::withRefCon(void*) | |
| [ 863] 863 X Code 0xffffff80008c5850 0x0000000000000020 0x000f0000 IODMACommand::writeBytes(unsigned long long, void const*, unsigned long long) | |
| [ 864] 864 X Code 0xffffff80008c4260 0x0000000000000030 0x000f0000 IODMACommand::OutputBig32(IODMACommand*, IODMACommand::Segment64, void*, unsigned int) | |
| [ 865] 865 X Code 0xffffff80008c58c0 0x0000000000000020 0x000f0000 IODMACommand::OutputBig64(IODMACommand*, IODMACommand::Segment64, void*, unsigned int) | |
| [ 866] 866 X Code 0xffffff80008c3ab0 0x00000000000000a0 0x000f0000 IODMACommand::synchronize(unsigned int) | |
| [ 867] 867 X Code 0xffffff80008c4240 0x0000000000000020 0x000f0000 IODMACommand::OutputHost32(IODMACommand*, IODMACommand::Segment64, void*, unsigned int) | |
| [ 868] 868 X Code 0xffffff80008c58a0 0x0000000000000020 0x000f0000 IODMACommand::OutputHost64(IODMACommand*, IODMACommand::Segment64, void*, unsigned int) | |
| [ 869] 869 X Code 0xffffff80008c3360 0x00000000000000e0 0x000f0000 IODMACommand::cloneCommand(void*) | |
| [ 870] 870 X Code 0xffffff80008c5800 0x0000000000000010 0x000f0000 IODMACommand::getAlignment() | |
| [ 871] 871 X Code 0xffffff80008c4290 0x0000000000000020 0x000f0000 IODMACommand::OutputLittle32(IODMACommand*, IODMACommand::Segment64, void*, unsigned int) | |
| [ 872] 872 X Code 0xffffff80008c58e0 0x0000000000000020 0x000f0000 IODMACommand::OutputLittle64(IODMACommand*, IODMACommand::Segment64, void*, unsigned int) | |
| [ 873] 873 X Code 0xffffff80008c3ce0 0x0000000000000060 0x000f0000 IODMACommand::initWithRefCon(void*) | |
| [ 874] 874 X Code 0xffffff80008c5870 0x0000000000000030 0x000f0000 IODMACommand::genIOVMSegments(bool (*)(IODMACommand*, IODMACommand::Segment64, void*, unsigned int), unsigned long long*, void*, unsigned int*) | |
| [ 875] 875 X Code 0xffffff80008c3b50 0x0000000000000030 0x000f0000 IODMACommand::genIOVMSegments(unsigned long long*, void*, unsigned int*) | |
| [ 876] 876 X Code 0xffffff80008c43b0 0x0000000000000540 0x000f0000 IODMACommand::genIOVMSegments(unsigned int, int (*)(void*, IODMACommand*, IODMACommand::Segment64, void*, unsigned int), void*, unsigned long long*, void*, unsigned int*) | |
| [ 877] 877 X Code 0xffffff80008c42b0 0x0000000000000100 0x000f0000 IODMACommand::transferSegment(void*, IODMACommand*, IODMACommand::Segment64, void*, unsigned int) | |
| [ 878] 878 X Code 0xffffff80008c3e20 0x0000000000000020 0x000f0000 IODMACommand::createCopyBuffer(unsigned int, unsigned long long) | |
| [ 879] 879 X Code 0xffffff80008c3ff0 0x0000000000000250 0x000f0000 IODMACommand::setSpecification(bool (*)(IODMACommand*, IODMACommand::Segment64, void*, unsigned int), IODMACommand::SegmentOptions const*, unsigned int, IOMapper*) | |
| [ 880] 880 X Code 0xffffff80008c57f0 0x0000000000000010 0x000f0000 IODMACommand::getNumAddressBits() | |
| [ 881] 881 X Code 0xffffff80008c5650 0x00000000000000b0 0x000f0000 IODMACommand::withSpecification(bool (*)(IODMACommand*, IODMACommand::Segment64, void*, unsigned int), IODMACommand::SegmentOptions const*, unsigned int, IOMapper*, void*) | |
| [ 882] 882 X Code 0xffffff80008c5700 0x00000000000000d0 0x000f0000 IODMACommand::withSpecification(bool (*)(IODMACommand*, IODMACommand::Segment64, void*, unsigned int), unsigned char, unsigned long long, IODMACommand::MappingOptions, unsigned long long, unsigned int, IOMapper*, void*) | |
| [ 883] 883 X Code 0xffffff80008c5810 0x0000000000000010 0x000f0000 IODMACommand::getAlignmentLength() | |
| [ 884] 884 X Code 0xffffff80008c48f0 0x0000000000000070 0x000f0000 IODMACommand::clientOutputSegment(void*, IODMACommand*, IODMACommand::Segment64, void*, unsigned int) | |
| [ 885] 885 X Code 0xffffff80008c3490 0x0000000000000190 0x000f0000 IODMACommand::setMemoryDescriptor(IOMemoryDescriptor const*, bool) | |
| [ 886] 886 X Code 0xffffff80008c3620 0x0000000000000070 0x000f0000 IODMACommand::clearMemoryDescriptor(bool) | |
| [ 887] 887 X Code 0xffffff80008c3d40 0x0000000000000060 0x000f0000 IODMACommand::initWithSpecification(bool (*)(IODMACommand*, IODMACommand::Segment64, void*, unsigned int), IODMACommand::SegmentOptions const*, unsigned int, IOMapper*, void*) | |
| [ 888] 888 X Code 0xffffff80008c3440 0x0000000000000050 0x000f0000 IODMACommand::initWithSpecification(bool (*)(IODMACommand*, IODMACommand::Segment64, void*, unsigned int), unsigned char, unsigned long long, IODMACommand::MappingOptions, unsigned long long, unsigned int, IOMapper*, void*) | |
| [ 889] 889 X Code 0xffffff80008c3e40 0x0000000000000030 0x000f0000 IODMACommand::_RESERVEDIODMACommand7() | |
| [ 890] 890 X Code 0xffffff80008c3e70 0x0000000000000030 0x000f0000 IODMACommand::_RESERVEDIODMACommand8() | |
| [ 891] 891 X Code 0xffffff80008c3ea0 0x0000000000000030 0x000f0000 IODMACommand::_RESERVEDIODMACommand9() | |
| [ 892] 892 X Code 0xffffff80008c3ed0 0x0000000000000030 0x000f0000 IODMACommand::_RESERVEDIODMACommand10() | |
| [ 893] 893 X Code 0xffffff80008c3f00 0x0000000000000030 0x000f0000 IODMACommand::_RESERVEDIODMACommand11() | |
| [ 894] 894 X Code 0xffffff80008c3f30 0x0000000000000030 0x000f0000 IODMACommand::_RESERVEDIODMACommand12() | |
| [ 895] 895 X Code 0xffffff80008c3f60 0x0000000000000030 0x000f0000 IODMACommand::_RESERVEDIODMACommand13() | |
| [ 896] 896 X Code 0xffffff80008c3f90 0x0000000000000030 0x000f0000 IODMACommand::_RESERVEDIODMACommand14() | |
| [ 897] 897 X Code 0xffffff80008c3fc0 0x0000000000000030 0x000f0000 IODMACommand::_RESERVEDIODMACommand15() | |
| [ 898] 898 X Code 0xffffff80008c3da0 0x0000000000000080 0x000f0000 IODMACommand::prepareWithSpecification(bool (*)(IODMACommand*, IODMACommand::Segment64, void*, unsigned int), IODMACommand::SegmentOptions const*, unsigned int, IOMapper*, unsigned long long, unsigned long long, bool, bool) | |
| [ 899] 899 X Code 0xffffff80008c3c20 0x0000000000000080 0x000f0000 IODMACommand::prepareWithSpecification(bool (*)(IODMACommand*, IODMACommand::Segment64, void*, unsigned int), unsigned char, unsigned long long, IODMACommand::MappingOptions, unsigned long long, unsigned int, IOMapper*, unsigned long long, unsigned long long, bool, bool) | |
| [ 900] 900 X Code 0xffffff80008c3ca0 0x0000000000000040 0x000f0000 IODMACommand::getPreparedOffsetAndLength(unsigned long long*, unsigned long long*) | |
| [ 901] 901 X Code 0xffffff80008c5820 0x0000000000000010 0x000f0000 IODMACommand::getAlignmentInternalSegments() | |
| [ 902] 902 X Code 0xffffff80008c3310 0x0000000000000050 0x000f0000 IODMACommand::free() | |
| [ 903] 903 X Code 0xffffff80008c36a0 0x0000000000000300 0x000f0000 IODMACommand::prepare(unsigned long long, unsigned long long, bool, bool) | |
| [ 904] 904 X Code 0xffffff80008c4960 0x0000000000000390 0x000f0000 IODMACommand::walkAll(unsigned char) | |
| [ 905] 905 X Code 0xffffff80008c39a0 0x0000000000000110 0x000f0000 IODMACommand::complete(bool, bool) | |
| [ 906] 906 X Code 0xffffff80008c3b80 0x00000000000000a0 0x000f0000 IODMACommand::transfer(unsigned int, unsigned long long, void*, unsigned long long) | |
| [ 907] 907 X Code 0xffffff80008c5480 0x0000000000000040 0x000f0000 IODMACommand::MetaClass::MetaClass() | |
| [ 908] 908 X Code 0xffffff80008c5510 0x0000000000000040 0x000f0000 IODMACommand::MetaClass::MetaClass() | |
| [ 909] 909 X Invalid 0xffffff8000b23198 0x0000000000000008 0x000f0000 IODMACommand::metaClass | |
| [ 910] 910 X Code 0xffffff80008c5830 0x0000000000000020 0x000f0000 IODMACommand::readBytes(unsigned long long, void*, unsigned long long) | |
| [ 911] 911 X Code 0xffffff80008c4cf0 0x0000000000000360 0x000f0000 IODMACommand::segmentOp(void*, IODMACommand*, IODMACommand::Segment64, void*, unsigned int) | |
| [ 912] 912 X Code 0xffffff80008c54e0 0x0000000000000020 0x000f0000 IODMACommand::IODMACommand(OSMetaClass const*) | |
| [ 913] 913 X Code 0xffffff80008c5550 0x0000000000000040 0x000f0000 IODMACommand::IODMACommand() | |
| [ 914] 914 X Code 0xffffff80008c54c0 0x0000000000000020 0x000f0000 IODMACommand::IODMACommand(OSMetaClass const*) | |
| [ 915] 915 X Code 0xffffff80008c5590 0x0000000000000040 0x000f0000 IODMACommand::IODMACommand() | |
| [ 916] 916 X Code 0xffffff80008c32c0 0x0000000000000040 0x000f0000 IODMACommand::~IODMACommand() | |
| [ 917] 917 X Code 0xffffff80008c32b0 0x0000000000000010 0x000f0000 IODMACommand::~IODMACommand() | |
| [ 918] 918 X Code 0xffffff80008c5500 0x0000000000000010 0x000f0000 IODMACommand::~IODMACommand() | |
| [ 919] 919 X Data 0xffffff8000ac2e20 0x0000000000000028 0x000f0000 IOPMinformee::gMetaClass | |
| [ 920] 920 X Code 0xffffff80008b2100 0x0000000000000020 0x000f0000 IOPMinformee::initialize(IOService*) | |
| [ 921] 921 X Invalid 0xffffff8000b1f888 0x0000000000000008 0x000f0000 IOPMinformee::superClass | |
| [ 922] 922 X Code 0xffffff80008b2080 0x0000000000000080 0x000f0000 IOPMinformee::withObject(IOService*) | |
| [ 923] 923 X Code 0xffffff80008b1ac0 0x0000000000000040 0x000f0000 IOPMinformee::free() | |
| [ 924] 924 X Code 0xffffff80008b1f30 0x0000000000000040 0x000f0000 IOPMinformee::MetaClass::MetaClass() | |
| [ 925] 925 X Code 0xffffff80008b1fc0 0x0000000000000040 0x000f0000 IOPMinformee::MetaClass::MetaClass() | |
| [ 926] 926 X Invalid 0xffffff8000b1f880 0x0000000000000008 0x000f0000 IOPMinformee::metaClass | |
| [ 927] 927 X Code 0xffffff80008b1f90 0x0000000000000020 0x000f0000 IOPMinformee::IOPMinformee(OSMetaClass const*) | |
| [ 928] 928 X Code 0xffffff80008b2000 0x0000000000000040 0x000f0000 IOPMinformee::IOPMinformee() | |
| [ 929] 929 X Code 0xffffff80008b1f70 0x0000000000000020 0x000f0000 IOPMinformee::IOPMinformee(OSMetaClass const*) | |
| [ 930] 930 X Code 0xffffff80008b2040 0x0000000000000040 0x000f0000 IOPMinformee::IOPMinformee() | |
| [ 931] 931 X Code 0xffffff80008b1a70 0x0000000000000040 0x000f0000 IOPMinformee::~IOPMinformee() | |
| [ 932] 932 X Code 0xffffff80008b1a60 0x0000000000000010 0x000f0000 IOPMinformee::~IOPMinformee() | |
| [ 933] 933 X Code 0xffffff80008b1fb0 0x0000000000000010 0x000f0000 IOPMinformee::~IOPMinformee() | |
| [ 934] 934 X Code 0xffffff8000916b70 0x0000000000000010 0x000f0000 IORootParent::dozeSystem() | |
| [ 935] 935 X Data 0xffffff8000ac39e0 0x0000000000000028 0x000f0000 IORootParent::gMetaClass | |
| [ 936] 936 X Code 0xffffff8000916b20 0x0000000000000020 0x000f0000 IORootParent::initialize() | |
| [ 937] 937 X Invalid 0xffffff8000b32af8 0x0000000000000008 0x000f0000 IORootParent::superClass | |
| [ 938] 938 X Code 0xffffff8000916b90 0x0000000000000010 0x000f0000 IORootParent::wakeSystem() | |
| [ 939] 939 X Code 0xffffff8000916b60 0x0000000000000010 0x000f0000 IORootParent::sleepSystem() | |
| [ 940] 940 X Code 0xffffff8000916b80 0x0000000000000010 0x000f0000 IORootParent::sleepToDoze() | |
| [ 941] 941 X Code 0xffffff8000916b50 0x0000000000000010 0x000f0000 IORootParent::restartSystem() | |
| [ 942] 942 X Code 0xffffff8000916b10 0x0000000000000010 0x000f0000 IORootParent::__OSFinalClass() | |
| [ 943] 943 X Code 0xffffff8000916b40 0x0000000000000010 0x000f0000 IORootParent::shutDownSystem() | |
| [ 944] 944 X Code 0xffffff800090a8f0 0x0000000000000060 0x000f0000 IORootParent::start(IOService*) | |
| [ 945] 945 X Code 0xffffff8000916a00 0x0000000000000040 0x000f0000 IORootParent::MetaClass::MetaClass() | |
| [ 946] 946 X Code 0xffffff8000916a90 0x0000000000000040 0x000f0000 IORootParent::MetaClass::MetaClass() | |
| [ 947] 947 X Invalid 0xffffff8000b32b00 0x0000000000000008 0x000f0000 IORootParent::metaClass | |
| [ 948] 948 X Code 0xffffff8000916a60 0x0000000000000020 0x000f0000 IORootParent::IORootParent(OSMetaClass const*) | |
| [ 949] 949 X Code 0xffffff8000911e30 0x0000000000000040 0x000f0000 IORootParent::IORootParent() | |
| [ 950] 950 X Code 0xffffff8000916a40 0x0000000000000020 0x000f0000 IORootParent::IORootParent(OSMetaClass const*) | |
| [ 951] 951 X Code 0xffffff8000916ad0 0x0000000000000040 0x000f0000 IORootParent::IORootParent() | |
| [ 952] 952 X Code 0xffffff800090a5e0 0x0000000000000040 0x000f0000 IORootParent::~IORootParent() | |
| [ 953] 953 X Code 0xffffff800090a5d0 0x0000000000000010 0x000f0000 IORootParent::~IORootParent() | |
| [ 954] 954 X Code 0xffffff8000916a80 0x0000000000000010 0x000f0000 IORootParent::~IORootParent() | |
| [ 955] 955 X Code 0xffffff80008f5fa0 0x0000000000000040 0x000f0000 IOStatistics::countAlloc(unsigned int, unsigned long) | |
| [ 956] 956 X Code 0xffffff80008f4cf0 0x0000000000000090 0x000f0000 IOStatistics::initialize() | |
| [ 957] 957 X Code 0xffffff80008f4d80 0x0000000000000270 0x000f0000 IOStatistics::onKextLoad(OSKext*, kmod_info*) | |
| [ 958] 958 X Data 0xffffff8000ac36fc 0x0000000000000004 0x000f0000 IOStatistics::sequenceID | |
| [ 959] 959 X Data 0xffffff8000ac3708 0x0000000000000004 0x000f0000 IOStatistics::loadedKexts | |
| [ 960] 960 X Code 0xffffff80008f5160 0x0000000000000220 0x000f0000 IOStatistics::onClassAdded(OSKext*, OSMetaClass*) | |
| [ 961] 961 X Code 0xffffff80008f4ff0 0x0000000000000170 0x000f0000 IOStatistics::onKextUnload(OSKext*) | |
| [ 962] 962 X Code 0xffffff80008f02f0 0x00000000000001a0 0x000f0000 IOStatistics::getStatistics(sysctl_req*) | |
| [ 963] 963 X Data 0xffffff8000ac3704 0x0000000000000004 0x000f0000 IOStatistics::lastKextIndex | |
| [ 964] 964 X Code 0xffffff80008f0f10 0x0000000000000100 0x000f0000 IOStatistics::copyClassNames(IOStatisticsClassName*) | |
| [ 965] 965 X Data 0xffffff8000ac3700 0x0000000000000004 0x000f0000 IOStatistics::lastClassIndex | |
| [ 966] 966 X Code 0xffffff80008f5380 0x0000000000000170 0x000f0000 IOStatistics::onClassRemoved(OSKext*, OSMetaClass*) | |
| [ 967] 967 X Data 0xffffff8000ac3740 0x0000000000000008 0x000f0000 IOStatistics::kextAddressHead | |
| [ 968] 968 X Code 0xffffff80008f1010 0x0000000000000020 0x000f0000 IOStatistics::kextNodeCompare(KextNode*, KextNode*) | |
| [ 969] 969 X Code 0xffffff80008f5880 0x0000000000000020 0x000f0000 IOStatistics::releaseKextNode(KextNode*) | |
| [ 970] 970 X Code 0xffffff80008f1e40 0x0000000000000040 0x000f0000 IOStatistics::KextTree_RB_FIND(IOStatistics::KextTree*, KextNode*) | |
| [ 971] 971 X Code 0xffffff80008f1e80 0x0000000000000080 0x000f0000 IOStatistics::KextTree_RB_NEXT(KextNode*) | |
| [ 972] 972 X Code 0xffffff80008f2eb0 0x0000000000000020 0x000f0000 IOStatistics::classNodeCompare(ClassNode*, ClassNode*) | |
| [ 973] 973 X Code 0xffffff80008f56a0 0x00000000000000c0 0x000f0000 IOStatistics::registerWorkLoop(IOWorkLoop*) | |
| [ 974] 974 X Code 0xffffff80008f3ce0 0x0000000000000040 0x000f0000 IOStatistics::ClassTree_RB_FIND(IOStatistics::ClassTree*, ClassNode*) | |
| [ 975] 975 X Code 0xffffff80008f3d20 0x0000000000000080 0x000f0000 IOStatistics::ClassTree_RB_NEXT(ClassNode*) | |
| [ 976] 976 X Data 0xffffff8000ac370c 0x0000000000000004 0x000f0000 IOStatistics::registeredClasses | |
| [ 977] 977 X Code 0xffffff80008f1d80 0x00000000000000c0 0x000f0000 IOStatistics::KextTree_RB_INSERT(IOStatistics::KextTree*, KextNode*) | |
| [ 978] 978 X Code 0xffffff80008f1f00 0x0000000000000030 0x000f0000 IOStatistics::KextTree_RB_MINMAX(IOStatistics::KextTree*, int) | |
| [ 979] 979 X Code 0xffffff80008f1be0 0x00000000000001a0 0x000f0000 IOStatistics::KextTree_RB_REMOVE(IOStatistics::KextTree*, KextNode*) | |
| [ 980] 980 X Code 0xffffff80008f0980 0x0000000000000120 0x000f0000 IOStatistics::copyKextStatistics(IOStatisticsKext*) | |
| [ 981] 981 X Code 0xffffff80008f5930 0x00000000000000f0 0x000f0000 IOStatistics::registerUserClient(IOUserClient*) | |
| [ 982] 982 X Data 0xffffff8000ac3710 0x0000000000000004 0x000f0000 IOStatistics::registeredCounters | |
| [ 983] 983 X Code 0xffffff80008f58a0 0x0000000000000090 0x000f0000 IOStatistics::unregisterWorkLoop(IOWorkLoopCounter*) | |
| [ 984] 984 X Code 0xffffff80008f3c20 0x00000000000000c0 0x000f0000 IOStatistics::ClassTree_RB_INSERT(IOStatistics::ClassTree*, ClassNode*) | |
| [ 985] 985 X Code 0xffffff80008f3da0 0x0000000000000030 0x000f0000 IOStatistics::ClassTree_RB_MINMAX(IOStatistics::ClassTree*, int) | |
| [ 986] 986 X Code 0xffffff80008f3a80 0x00000000000001a0 0x000f0000 IOStatistics::ClassTree_RB_REMOVE(IOStatistics::ClassTree*, ClassNode*) | |
| [ 987] 987 X Code 0xffffff80008f0b70 0x00000000000000e0 0x000f0000 IOStatistics::copyClassStatistics(IOStatisticsClass*) | |
| [ 988] 988 X Code 0xffffff80008f0e40 0x00000000000000d0 0x000f0000 IOStatistics::copyKextIdentifiers(IOStatisticsKextIdentifier*) | |
| [ 989] 989 X Code 0xffffff80008f5f70 0x0000000000000030 0x000f0000 IOStatistics::countUserClientCall(IOUserClient*) | |
| [ 990] 990 X Code 0xffffff80008f54f0 0x0000000000000120 0x000f0000 IOStatistics::registerEventSource(OSObject*) | |
| [ 991] 991 X Data 0xffffff8000ac3714 0x0000000000000004 0x000f0000 IOStatistics::registeredWorkloops | |
| [ 992] 992 X Code 0xffffff80008f1050 0x0000000000000010 0x000f0000 IOStatistics::KextTree_RB_GETCOLOR(KextNode*) | |
| [ 993] 993 X Code 0xffffff80008f1060 0x0000000000000030 0x000f0000 IOStatistics::KextTree_RB_SETCOLOR(KextNode*, int) | |
| [ 994] 994 X Data 0xffffff8000ac3718 0x0000000000000008 0x000f0000 IOStatistics::attachedEventSources | |
| [ 995] 995 X Code 0xffffff80008f5c90 0x0000000000000030 0x000f0000 IOStatistics::copyGlobalStatistics(IOStatisticsGlobal*) | |
| [ 996] 996 X Code 0xffffff80008f0aa0 0x00000000000000d0 0x000f0000 IOStatistics::copyMemoryStatistics(IOStatisticsMemory*) | |
| [ 997] 997 X Code 0xffffff80008f5a20 0x0000000000000080 0x000f0000 IOStatistics::unregisterUserClient(IOUserClientCounter*) | |
| [ 998] 998 X Code 0xffffff80008f2ef0 0x0000000000000010 0x000f0000 IOStatistics::ClassTree_RB_GETCOLOR(ClassNode*) | |
| [ 999] 999 X Code 0xffffff80008f2f00 0x0000000000000030 0x000f0000 IOStatistics::ClassTree_RB_SETCOLOR(ClassNode*, int) | |
| [ 1000] 1000 X Code 0xffffff80008f1030 0x0000000000000020 0x000f0000 IOStatistics::KextTree_RB_GETPARENT(KextNode*) | |
| [ 1001] 1001 X Code 0xffffff80008f1090 0x0000000000000040 0x000f0000 IOStatistics::KextTree_RB_SETPARENT(KextNode*, KextNode*) | |
| [ 1002] 1002 X Code 0xffffff80008f0c50 0x00000000000001f0 0x000f0000 IOStatistics::copyCounterStatistics(IOStatisticsCounter*) | |
| [ 1003] 1003 X Code 0xffffff80008f0490 0x00000000000000f0 0x000f0000 IOStatistics::getWorkLoopStatistics(sysctl_req*) | |
| [ 1004] 1004 X Code 0xffffff80008f5610 0x0000000000000090 0x000f0000 IOStatistics::unregisterEventSource(IOEventSourceCounter*) | |
| [ 1005] 1005 X Code 0xffffff80008f2ed0 0x0000000000000020 0x000f0000 IOStatistics::ClassTree_RB_GETPARENT(ClassNode*) | |
| [ 1006] 1006 X Code 0xffffff80008f2f30 0x0000000000000040 0x000f0000 IOStatistics::ClassTree_RB_SETPARENT(ClassNode*, ClassNode*) | |
| [ 1007] 1007 X Code 0xffffff80008f07d0 0x00000000000001b0 0x000f0000 IOStatistics::copyWorkLoopStatistics(IOStatisticsWorkLoop*) | |
| [ 1008] 1008 X Code 0xffffff80008f1f30 0x0000000000000020 0x000f0000 IOStatistics::kextAddressNodeCompare(KextNode*, KextNode*) | |
| [ 1009] 1009 X Data 0xffffff8000ac3720 0x0000000000000008 0x000f0000 IOStatistics::nextWorkLoopDependency | |
| [ 1010] 1010 X Code 0xffffff80008f2db0 0x0000000000000050 0x000f0000 IOStatistics::KextAddressTree_RB_FIND(IOStatistics::KextAddressTree*, KextNode*) | |
| [ 1011] 1011 X Code 0xffffff80008f2e00 0x0000000000000080 0x000f0000 IOStatistics::KextAddressTree_RB_NEXT(KextNode*) | |
| [ 1012] 1012 X Code 0xffffff80008f0580 0x0000000000000120 0x000f0000 IOStatistics::getUserClientStatistics(sysctl_req*) | |
| [ 1013] 1013 X Code 0xffffff80008f5cc0 0x00000000000002b0 0x000f0000 IOStatistics::storeUserClientCallInfo(IOUserClient*, IOUserClientCounter*) | |
| [ 1014] 1014 X Code 0xffffff80008f10d0 0x0000000000000420 0x000f0000 IOStatistics::KextTree_RB_INSERT_COLOR(IOStatistics::KextTree*, KextNode*) | |
| [ 1015] 1015 X Code 0xffffff80008f14f0 0x00000000000006f0 0x000f0000 IOStatistics::KextTree_RB_REMOVE_COLOR(IOStatistics::KextTree*, KextNode*, KextNode*) | |
| [ 1016] 1016 X Code 0xffffff80008f06a0 0x0000000000000130 0x000f0000 IOStatistics::copyUserClientStatistics(IOStatisticsUserClientHeader*, unsigned int) | |
| [ 1017] 1017 X Code 0xffffff80008f5760 0x0000000000000120 0x000f0000 IOStatistics::getKextNodeFromBacktrace(int) | |
| [ 1018] 1018 X Code 0xffffff80008f2f70 0x0000000000000420 0x000f0000 IOStatistics::ClassTree_RB_INSERT_COLOR(IOStatistics::ClassTree*, ClassNode*) | |
| [ 1019] 1019 X Code 0xffffff80008f3390 0x00000000000006f0 0x000f0000 IOStatistics::ClassTree_RB_REMOVE_COLOR(IOStatistics::ClassTree*, ClassNode*, ClassNode*) | |
| [ 1020] 1020 X Code 0xffffff80008f2cf0 0x00000000000000c0 0x000f0000 IOStatistics::KextAddressTree_RB_INSERT(IOStatistics::KextAddressTree*, KextNode*) | |
| [ 1021] 1021 X Code 0xffffff80008f2e80 0x0000000000000030 0x000f0000 IOStatistics::KextAddressTree_RB_MINMAX(IOStatistics::KextAddressTree*, int) | |
| [ 1022] 1022 X Code 0xffffff80008f2b40 0x00000000000001b0 0x000f0000 IOStatistics::KextAddressTree_RB_REMOVE(IOStatistics::KextAddressTree*, KextNode*) | |
| [ 1023] 1023 X Code 0xffffff80008f5aa0 0x0000000000000140 0x000f0000 IOStatistics::attachWorkLoopEventSource(IOWorkLoopCounter*, IOEventSourceCounter*) | |
| [ 1024] 1024 X Code 0xffffff80008f5be0 0x00000000000000b0 0x000f0000 IOStatistics::detachWorkLoopEventSource(IOWorkLoopCounter*, IOEventSourceCounter*) | |
| [ 1025] 1025 X Code 0xffffff80008f1f70 0x0000000000000010 0x000f0000 IOStatistics::KextAddressTree_RB_GETCOLOR(KextNode*) | |
| [ 1026] 1026 X Code 0xffffff80008f1f80 0x0000000000000030 0x000f0000 IOStatistics::KextAddressTree_RB_SETCOLOR(KextNode*, int) | |
| [ 1027] 1027 X Code 0xffffff80008f1f50 0x0000000000000020 0x000f0000 IOStatistics::KextAddressTree_RB_GETPARENT(KextNode*) | |
| [ 1028] 1028 X Code 0xffffff80008f1fb0 0x0000000000000040 0x000f0000 IOStatistics::KextAddressTree_RB_SETPARENT(KextNode*, KextNode*) | |
| [ 1029] 1029 X Code 0xffffff80008f1ff0 0x0000000000000440 0x000f0000 IOStatistics::KextAddressTree_RB_INSERT_COLOR(IOStatistics::KextAddressTree*, KextNode*) | |
| [ 1030] 1030 X Code 0xffffff80008f2430 0x0000000000000710 0x000f0000 IOStatistics::KextAddressTree_RB_REMOVE_COLOR(IOStatistics::KextAddressTree*, KextNode*, KextNode*) | |
| [ 1031] 1031 X Data 0xffffff8000ac3728 0x0000000000000008 0x000f0000 IOStatistics::lock | |
| [ 1032] 1032 X Data 0xffffff8000ac36f8 0x0000000000000004 0x000f0000 IOStatistics::enabled | |
| [ 1033] 1033 X Data 0xffffff8000ac3738 0x0000000000000008 0x000f0000 IOStatistics::kextHead | |
| [ 1034] 1034 X Data 0xffffff8000ac3730 0x0000000000000008 0x000f0000 IOStatistics::kextHint | |
| [ 1035] 1035 X Data 0xffffff8000ac3748 0x0000000000000008 0x000f0000 IOStatistics::classHead | |
| [ 1036] 1036 X Code 0xffffff80008e3700 0x0000000000000030 0x000f0000 IOUserClient::clientDied() | |
| [ 1037] 1037 X Data 0xffffff8000ac3568 0x0000000000000028 0x000f0000 IOUserClient::gMetaClass | |
| [ 1038] 1038 X Code 0xffffff80008e3730 0x0000000000000010 0x000f0000 IOUserClient::getService() | |
| [ 1039] 1039 X Code 0xffffff80008e6d40 0x00000000000000a0 0x000f0000 IOUserClient::initialize() | |
| [ 1040] 1040 X Invalid 0xffffff8000b2cf48 0x0000000000000008 0x000f0000 IOUserClient::superClass | |
| [ 1041] 1041 X Code 0xffffff80008e36f0 0x0000000000000010 0x000f0000 IOUserClient::clientClose() | |
| [ 1042] 1042 X Code 0xffffff80008e3660 0x0000000000000090 0x000f0000 IOUserClient::initWithTask(task*, void*, unsigned int) | |
| [ 1043] 1043 X Code 0xffffff80008e3610 0x0000000000000050 0x000f0000 IOUserClient::initWithTask(task*, void*, unsigned int, OSDictionary*) | |
| [ 1044] 1044 X Code 0xffffff80008e3760 0x0000000000000010 0x000f0000 IOUserClient::connectClient(IOUserClient*) | |
| [ 1045] 1045 X Code 0xffffff80008e5fc0 0x0000000000000120 0x000f0000 IOUserClient::noMoreSenders() | |
| [ 1046] 1046 X Code 0xffffff80008e7a60 0x00000000000000d0 0x000f0000 IOUserClient::registerOwner(task*) | |
| [ 1047] 1047 X Code 0xffffff80008e2f70 0x0000000000000380 0x000f0000 IOUserClient::externalMethod(unsigned int, IOExternalMethodArguments*, IOExternalMethodDispatch*, OSObject*, void*) | |
| [ 1048] 1048 X Code 0xffffff80008e7dd0 0x0000000000000140 0x000f0000 IOUserClient::sendAsyncResult(unsigned int*, int, void**, unsigned int) | |
| [ 1049] 1049 X Code 0xffffff80008e7d00 0x0000000000000090 0x000f0000 IOUserClient::mapClientMemory64(unsigned int, task*, unsigned int, unsigned long long) | |
| [ 1050] 1050 X Code 0xffffff80008e81f0 0x0000000000000010 0x000f0000 IOUserClient::sendAsyncResult64(unsigned long long*, int, unsigned long long*, unsigned int) | |
| [ 1051] 1051 X Code 0xffffff80008e6de0 0x0000000000000020 0x000f0000 IOUserClient::setAsyncReference(unsigned int*, ipc_port*, void*, void*) | |
| [ 1052] 1052 X Code 0xffffff80008e7f10 0x00000000000002e0 0x000f0000 IOUserClient::_sendAsyncResult64(unsigned long long*, int, unsigned long long*, unsigned int, unsigned int) | |
| [ 1053] 1053 X Code 0xffffff80008e6e80 0x0000000000000760 0x000f0000 IOUserClient::clientHasPrivilege(void*, char const*) | |
| [ 1054] 1054 X Code 0xffffff80008e3770 0x0000000000000010 0x000f0000 IOUserClient::clientMemoryForType(unsigned int, unsigned int*, IOMemoryDescriptor**) | |
| [ 1055] 1055 X Code 0xffffff80008e6e00 0x0000000000000020 0x000f0000 IOUserClient::setAsyncReference64(unsigned long long*, ipc_port*, unsigned long long, unsigned long long) | |
| [ 1056] 1056 X Code 0xffffff80008e6e20 0x0000000000000030 0x000f0000 IOUserClient::setAsyncReference64(unsigned long long*, ipc_port*, unsigned long long, unsigned long long, task*) | |
| [ 1057] 1057 X Code 0xffffff80008e3780 0x0000000000000030 0x000f0000 IOUserClient::exportObjectToClient(task*, OSObject*, OSObject**) | |
| [ 1058] 1058 X Code 0xffffff80008e7780 0x0000000000000270 0x000f0000 IOUserClient::copyClientEntitlement(task*, char const*) | |
| [ 1059] 1059 X Code 0xffffff80008e6210 0x0000000000000150 0x000f0000 IOUserClient::destroyUserReferences(OSObject*) | |
| [ 1060] 1060 X Code 0xffffff80008e3310 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient0() | |
| [ 1061] 1061 X Code 0xffffff80008e3340 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient1() | |
| [ 1062] 1062 X Code 0xffffff80008e3370 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient2() | |
| [ 1063] 1063 X Code 0xffffff80008e33a0 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient3() | |
| [ 1064] 1064 X Code 0xffffff80008e33d0 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient4() | |
| [ 1065] 1065 X Code 0xffffff80008e3400 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient5() | |
| [ 1066] 1066 X Code 0xffffff80008e3430 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient6() | |
| [ 1067] 1067 X Code 0xffffff80008e3460 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient7() | |
| [ 1068] 1068 X Code 0xffffff80008e3490 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient8() | |
| [ 1069] 1069 X Code 0xffffff80008e34c0 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient9() | |
| [ 1070] 1070 X Code 0xffffff80008e6e50 0x0000000000000030 0x000f0000 IOUserClient::clientHasAuthorization(task*, IOService*) | |
| [ 1071] 1071 X Code 0xffffff80008e66a0 0x0000000000000080 0x000f0000 IOUserClient::finalizeUserReferences(OSObject*) | |
| [ 1072] 1072 X Code 0xffffff80008e34f0 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient10() | |
| [ 1073] 1073 X Code 0xffffff80008e3520 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient11() | |
| [ 1074] 1074 X Code 0xffffff80008e3550 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient12() | |
| [ 1075] 1075 X Code 0xffffff80008e3580 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient13() | |
| [ 1076] 1076 X Code 0xffffff80008e35b0 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient14() | |
| [ 1077] 1077 X Code 0xffffff80008e35e0 0x0000000000000030 0x000f0000 IOUserClient::_RESERVEDIOUserClient15() | |
| [ 1078] 1078 X Code 0xffffff80008e3830 0x0000000000000010 0x000f0000 IOUserClient::getExternalTrapForIndex(unsigned int) | |
| [ 1079] 1079 X Code 0xffffff80008e7d90 0x0000000000000020 0x000f0000 IOUserClient::releaseAsyncReference64(unsigned long long*) | |
| [ 1080] 1080 X Code 0xffffff80008e7db0 0x0000000000000020 0x000f0000 IOUserClient::releaseNotificationPort(ipc_port*) | |
| [ 1081] 1081 X Code 0xffffff80008e3750 0x0000000000000010 0x000f0000 IOUserClient::getNotificationSemaphore(unsigned int, semaphore**) | |
| [ 1082] 1082 X Code 0xffffff80008e3840 0x0000000000000030 0x000f0000 IOUserClient::getTargetAndTrapForIndex(IOService**, unsigned int) | |
| [ 1083] 1083 X Code 0xffffff80008e3740 0x0000000000000010 0x000f0000 IOUserClient::registerNotificationPort(ipc_port*, unsigned int, unsigned int) | |
| [ 1084] 1084 X Code 0xffffff80008e32f0 0x0000000000000020 0x000f0000 IOUserClient::registerNotificationPort(ipc_port*, unsigned int, unsigned long long) | |
| [ 1085] 1085 X Code 0xffffff80008e37b0 0x0000000000000010 0x000f0000 IOUserClient::getExternalMethodForIndex(unsigned int) | |
| [ 1086] 1086 X Code 0xffffff80008e37d0 0x0000000000000030 0x000f0000 IOUserClient::getTargetAndMethodForIndex(IOService**, unsigned int) | |
| [ 1087] 1087 X Code 0xffffff80008eb8c0 0x0000000000000100 0x000f0000 IOUserClient::removeMappingForDescriptor(IOMemoryDescriptor*) | |
| [ 1088] 1088 X Code 0xffffff80008e8200 0x0000000000000010 0x000f0000 IOUserClient::sendAsyncResult64WithOptions(unsigned long long*, int, unsigned long long*, unsigned int, unsigned int) | |
| [ 1089] 1089 X Code 0xffffff80008e37c0 0x0000000000000010 0x000f0000 IOUserClient::getExternalAsyncMethodForIndex(unsigned int) | |
| [ 1090] 1090 X Code 0xffffff80008e3800 0x0000000000000030 0x000f0000 IOUserClient::getAsyncTargetAndMethodForIndex(IOService**, unsigned int) | |
| [ 1091] 1091 X Code 0xffffff80008e2e90 0x0000000000000060 0x000f0000 IOUserClient::free() | |
| [ 1092] 1092 X Code 0xffffff80008e2ef0 0x0000000000000080 0x000f0000 IOUserClient::init(OSDictionary*) | |
| [ 1093] 1093 X Code 0xffffff80008e2e00 0x0000000000000090 0x000f0000 IOUserClient::init() | |
| [ 1094] 1094 X Code 0xffffff80008e79f0 0x0000000000000070 0x000f0000 IOUserClient::reserve() | |
| [ 1095] 1095 X Code 0xffffff80008e6c70 0x0000000000000040 0x000f0000 IOUserClient::MetaClass::MetaClass() | |
| [ 1096] 1096 X Code 0xffffff80008e6d00 0x0000000000000040 0x000f0000 IOUserClient::MetaClass::MetaClass() | |
| [ 1097] 1097 X Invalid 0xffffff8000b2cf50 0x0000000000000008 0x000f0000 IOUserClient::metaClass | |
| [ 1098] 1098 X Code 0xffffff80008e6cd0 0x0000000000000020 0x000f0000 IOUserClient::IOUserClient(OSMetaClass const*) | |
| [ 1099] 1099 X Code 0xffffff80008e6cb0 0x0000000000000020 0x000f0000 IOUserClient::IOUserClient(OSMetaClass const*) | |
| [ 1100] 1100 X Code 0xffffff80008e2db0 0x0000000000000040 0x000f0000 IOUserClient::~IOUserClient() | |
| [ 1101] 1101 X Code 0xffffff80008e2da0 0x0000000000000010 0x000f0000 IOUserClient::~IOUserClient() | |
| [ 1102] 1102 X Code 0xffffff80008e6cf0 0x0000000000000010 0x000f0000 IOUserClient::~IOUserClient() | |
| [ 1103] 1103 X Code 0xffffff8000b38f30 0x0000000000000300 0x000f0000 KLDBootstrap::readBooterExtensions() | |
| [ 1104] 1104 X Code 0xffffff8000b38950 0x0000000000000060 0x000f0000 KLDBootstrap::readStartupExtensions() | |
| [ 1105] 1105 X Code 0xffffff8000b39980 0x00000000000001e0 0x000f0000 KLDBootstrap::loadSecurityExtensions() | |
| [ 1106] 1106 X Code 0xffffff8000b389b0 0x0000000000000580 0x000f0000 KLDBootstrap::readPrelinkedExtensions(section_64*) | |
| [ 1107] 1107 X Code 0xffffff8000b39230 0x00000000000000c0 0x000f0000 KLDBootstrap::loadKernelComponentKexts() | |
| [ 1108] 1108 X Code 0xffffff8000b394d0 0x0000000000000370 0x000f0000 KLDBootstrap::readBuiltinPersonalities() | |
| [ 1109] 1109 X Code 0xffffff8000b392f0 0x00000000000001e0 0x000f0000 KLDBootstrap::loadKernelExternalComponents() | |
| [ 1110] 1110 X Code 0xffffff8000b38000 0x0000000000000050 0x000f0000 KLDBootstrap::KLDBootstrap() | |
| [ 1111] 1111 X Code 0xffffff8000b38490 0x0000000000000050 0x000f0000 KLDBootstrap::KLDBootstrap() | |
| [ 1112] 1112 X Code 0xffffff8000b38050 0x0000000000000440 0x000f0000 KLDBootstrap::~KLDBootstrap() | |
| [ 1113] 1113 X Code 0xffffff8000b38510 0x0000000000000440 0x000f0000 KLDBootstrap::~KLDBootstrap() | |
| [ 1114] 1114 X Data 0xffffff8000ac2570 0x0000000000000028 0x000f0000 OSCollection::gMetaClass | |
| [ 1115] 1115 X Code 0xffffff8000837f20 0x0000000000000020 0x000f0000 OSCollection::setOptions(unsigned int, unsigned int, void*) | |
| [ 1116] 1116 X Invalid 0xffffff8000b19048 0x0000000000000008 0x000f0000 OSCollection::superClass | |
| [ 1117] 1117 X Code 0xffffff8000838540 0x0000000000000040 0x000f0000 OSCollection::haveUpdated() | |
| [ 1118] 1118 X Code 0xffffff8000837f40 0x0000000000000040 0x000f0000 OSCollection::copyCollection(OSDictionary*) | |
| [ 1119] 1119 X Code 0xffffff8000837f80 0x0000000000000030 0x000f0000 OSCollection::_RESERVEDOSCollection2() | |
| [ 1120] 1120 X Code 0xffffff8000837fb0 0x0000000000000030 0x000f0000 OSCollection::_RESERVEDOSCollection3() | |
| [ 1121] 1121 X Code 0xffffff8000837fe0 0x0000000000000030 0x000f0000 OSCollection::_RESERVEDOSCollection4() | |
| [ 1122] 1122 X Code 0xffffff8000838010 0x0000000000000030 0x000f0000 OSCollection::_RESERVEDOSCollection5() | |
| [ 1123] 1123 X Code 0xffffff8000838040 0x0000000000000030 0x000f0000 OSCollection::_RESERVEDOSCollection6() | |
| [ 1124] 1124 X Code 0xffffff8000838070 0x0000000000000030 0x000f0000 OSCollection::_RESERVEDOSCollection7() | |
| [ 1125] 1125 X Code 0xffffff8000837f10 0x0000000000000010 0x000f0000 OSCollection::init() | |
| [ 1126] 1126 X Code 0xffffff8000838490 0x0000000000000040 0x000f0000 OSCollection::MetaClass::MetaClass() | |
| [ 1127] 1127 X Code 0xffffff8000838500 0x0000000000000040 0x000f0000 OSCollection::MetaClass::MetaClass() | |
| [ 1128] 1128 X Invalid 0xffffff8000b19040 0x0000000000000008 0x000f0000 OSCollection::metaClass | |
| [ 1129] 1129 X Code 0xffffff80008384d0 0x0000000000000020 0x000f0000 OSCollection::OSCollection(OSMetaClass const*) | |
| [ 1130] 1130 X Code 0xffffff8000837ec0 0x0000000000000040 0x000f0000 OSCollection::~OSCollection() | |
| [ 1131] 1131 X Code 0xffffff8000837eb0 0x0000000000000010 0x000f0000 OSCollection::~OSCollection() | |
| [ 1132] 1132 X Code 0xffffff80008384f0 0x0000000000000010 0x000f0000 OSCollection::~OSCollection() | |
| [ 1133] 1133 X Data 0xffffff8000ac25e8 0x0000000000000028 0x000f0000 OSDictionary::gMetaClass | |
| [ 1134] 1134 X Code 0xffffff800083a8e0 0x00000000000000b0 0x000f0000 OSDictionary::setOptions(unsigned int, unsigned int, void*) | |
| [ 1135] 1135 X Invalid 0xffffff8000b19858 0x0000000000000008 0x000f0000 OSDictionary::superClass | |
| [ 1136] 1136 X Code 0xffffff800083bfd0 0x00000000000000a0 0x000f0000 OSDictionary::withObjects(OSObject const**, OSString const**, unsigned int, unsigned int) | |
| [ 1137] 1137 X Code 0xffffff800083bf30 0x00000000000000a0 0x000f0000 OSDictionary::withObjects(OSObject const**, OSSymbol const**, unsigned int, unsigned int) | |
| [ 1138] 1138 X Code 0xffffff800083b120 0x0000000000000040 0x000f0000 OSDictionary::removeObject(OSString const*) | |
| [ 1139] 1139 X Code 0xffffff800083afc0 0x0000000000000160 0x000f0000 OSDictionary::removeObject(OSSymbol const*) | |
| [ 1140] 1140 X Code 0xffffff800083b160 0x0000000000000040 0x000f0000 OSDictionary::removeObject(char const*) | |
| [ 1141] 1141 X Code 0xffffff800083beb0 0x0000000000000080 0x000f0000 OSDictionary::withCapacity(unsigned int) | |
| [ 1142] 1142 X Code 0xffffff800083a990 0x0000000000000250 0x000f0000 OSDictionary::copyCollection(OSDictionary*) | |
| [ 1143] 1143 X Code 0xffffff800083a760 0x00000000000000e0 0x000f0000 OSDictionary::ensureCapacity(unsigned int) | |
| [ 1144] 1144 X Code 0xffffff800083c070 0x0000000000000090 0x000f0000 OSDictionary::withDictionary(OSDictionary const*, unsigned int) | |
| [ 1145] 1145 X Code 0xffffff800083a840 0x00000000000000a0 0x000f0000 OSDictionary::flushCollection() | |
| [ 1146] 1146 X Code 0xffffff800083ad10 0x00000000000000e0 0x000f0000 OSDictionary::initWithObjects(OSObject const**, OSString const**, unsigned int, unsigned int) | |
| [ 1147] 1147 X Code 0xffffff800083ac70 0x00000000000000a0 0x000f0000 OSDictionary::initWithObjects(OSObject const**, OSSymbol const**, unsigned int, unsigned int) | |
| [ 1148] 1148 X Code 0xffffff800083abe0 0x0000000000000090 0x000f0000 OSDictionary::initWithCapacity(unsigned int) | |
| [ 1149] 1149 X Code 0xffffff800083adf0 0x0000000000000120 0x000f0000 OSDictionary::initWithDictionary(OSDictionary const*, unsigned int) | |
| [ 1150] 1150 X Code 0xffffff800083a740 0x0000000000000020 0x000f0000 OSDictionary::setCapacityIncrement(unsigned int) | |
| [ 1151] 1151 X Code 0xffffff800083b570 0x0000000000000030 0x000f0000 OSDictionary::_RESERVEDOSDictionary0() | |
| [ 1152] 1152 X Code 0xffffff800083b5a0 0x0000000000000030 0x000f0000 OSDictionary::_RESERVEDOSDictionary1() | |
| [ 1153] 1153 X Code 0xffffff800083b5d0 0x0000000000000030 0x000f0000 OSDictionary::_RESERVEDOSDictionary2() | |
| [ 1154] 1154 X Code 0xffffff800083b600 0x0000000000000030 0x000f0000 OSDictionary::_RESERVEDOSDictionary3() | |
| [ 1155] 1155 X Code 0xffffff800083b630 0x0000000000000030 0x000f0000 OSDictionary::_RESERVEDOSDictionary4() | |
| [ 1156] 1156 X Code 0xffffff800083b660 0x0000000000000030 0x000f0000 OSDictionary::_RESERVEDOSDictionary5() | |
| [ 1157] 1157 X Code 0xffffff800083b690 0x0000000000000030 0x000f0000 OSDictionary::_RESERVEDOSDictionary6() | |
| [ 1158] 1158 X Code 0xffffff800083b6c0 0x0000000000000030 0x000f0000 OSDictionary::_RESERVEDOSDictionary7() | |
| [ 1159] 1159 X Code 0xffffff800083a660 0x0000000000000060 0x000f0000 OSDictionary::free() | |
| [ 1160] 1160 X Code 0xffffff800083b1a0 0x00000000000000d0 0x000f0000 OSDictionary::merge(OSDictionary const*) | |
| [ 1161] 1161 X Code 0xffffff800083c100 0x0000000000000080 0x000f0000 OSDictionary::copyKeys() | |
| [ 1162] 1162 X Code 0xffffff800083bd60 0x0000000000000040 0x000f0000 OSDictionary::MetaClass::MetaClass() | |
| [ 1163] 1163 X Code 0xffffff800083bdf0 0x0000000000000040 0x000f0000 OSDictionary::MetaClass::MetaClass() | |
| [ 1164] 1164 X Invalid 0xffffff8000b19850 0x0000000000000008 0x000f0000 OSDictionary::metaClass | |
| [ 1165] 1165 X Code 0xffffff800083af20 0x0000000000000050 0x000f0000 OSDictionary::setObject(OSString const*, OSMetaClassBase const*) | |
| [ 1166] 1166 X Code 0xffffff800083af10 0x0000000000000010 0x000f0000 OSDictionary::setObject(OSSymbol const*, OSMetaClassBase const*) | |
| [ 1167] 1167 X Code 0xffffff800083b6f0 0x0000000000000240 0x000f0000 OSDictionary::setObject(OSSymbol const*, OSMetaClassBase const*, bool) | |
| [ 1168] 1168 X Code 0xffffff800083af70 0x0000000000000050 0x000f0000 OSDictionary::setObject(char const*, OSMetaClassBase const*) | |
| [ 1169] 1169 X Code 0xffffff800083bdc0 0x0000000000000020 0x000f0000 OSDictionary::OSDictionary(OSMetaClass const*) | |
| [ 1170] 1170 X Code 0xffffff800083be30 0x0000000000000040 0x000f0000 OSDictionary::OSDictionary() | |
| [ 1171] 1171 X Code 0xffffff800083bda0 0x0000000000000020 0x000f0000 OSDictionary::OSDictionary(OSMetaClass const*) | |
| [ 1172] 1172 X Code 0xffffff800083be70 0x0000000000000040 0x000f0000 OSDictionary::OSDictionary() | |
| [ 1173] 1173 X Code 0xffffff800083a3b0 0x0000000000000040 0x000f0000 OSDictionary::~OSDictionary() | |
| [ 1174] 1174 X Code 0xffffff800083a3a0 0x0000000000000010 0x000f0000 OSDictionary::~OSDictionary() | |
| [ 1175] 1175 X Code 0xffffff800083bde0 0x0000000000000010 0x000f0000 OSDictionary::~OSDictionary() | |
| [ 1176] 1176 X Data 0xffffff8000ac26b0 0x0000000000000028 0x000f0000 OSOrderedSet::gMetaClass | |
| [ 1177] 1177 X Code 0xffffff8000852bd0 0x00000000000000b0 0x000f0000 OSOrderedSet::setOptions(unsigned int, unsigned int, void*) | |
| [ 1178] 1178 X Invalid 0xffffff8000b1a548 0x0000000000000008 0x000f0000 OSOrderedSet::superClass | |
| [ 1179] 1179 X Code 0xffffff8000853150 0x0000000000000020 0x000f0000 OSOrderedSet::orderObject(OSMetaClassBase const*) | |
| [ 1180] 1180 X Code 0xffffff8000852fd0 0x00000000000000e0 0x000f0000 OSOrderedSet::removeObject(OSMetaClassBase const*) | |
| [ 1181] 1181 X Code 0xffffff8000853ad0 0x0000000000000090 0x000f0000 OSOrderedSet::withCapacity(unsigned int, int (*)(OSMetaClassBase const*, OSMetaClassBase const*, void*), void*) | |
| [ 1182] 1182 X Code 0xffffff8000852fb0 0x0000000000000020 0x000f0000 OSOrderedSet::setLastObject(OSMetaClassBase const*) | |
| [ 1183] 1183 X Code 0xffffff8000852c80 0x00000000000001f0 0x000f0000 OSOrderedSet::copyCollection(OSDictionary*) | |
| [ 1184] 1184 X Code 0xffffff8000852a80 0x00000000000000d0 0x000f0000 OSOrderedSet::ensureCapacity(unsigned int) | |
| [ 1185] 1185 X Code 0xffffff8000853330 0x0000000000000010 0x000f0000 OSOrderedSet::getOrderingRef() | |
| [ 1186] 1186 X Code 0xffffff8000852f90 0x0000000000000020 0x000f0000 OSOrderedSet::setFirstObject(OSMetaClassBase const*) | |
| [ 1187] 1187 X Code 0xffffff8000852b50 0x0000000000000080 0x000f0000 OSOrderedSet::flushCollection() | |
| [ 1188] 1188 X Code 0xffffff8000852e70 0x00000000000000b0 0x000f0000 OSOrderedSet::initWithCapacity(unsigned int, int (*)(OSMetaClassBase const*, OSMetaClassBase const*, void*), void*) | |
| [ 1189] 1189 X Code 0xffffff8000852a60 0x0000000000000020 0x000f0000 OSOrderedSet::setCapacityIncrement(unsigned int) | |
| [ 1190] 1190 X Code 0xffffff80008533d0 0x0000000000000030 0x000f0000 OSOrderedSet::_RESERVEDOSOrderedSet0() | |
| [ 1191] 1191 X Code 0xffffff8000853400 0x0000000000000030 0x000f0000 OSOrderedSet::_RESERVEDOSOrderedSet1() | |
| [ 1192] 1192 X Code 0xffffff8000853430 0x0000000000000030 0x000f0000 OSOrderedSet::_RESERVEDOSOrderedSet2() | |
| [ 1193] 1193 X Code 0xffffff8000853460 0x0000000000000030 0x000f0000 OSOrderedSet::_RESERVEDOSOrderedSet3() | |
| [ 1194] 1194 X Code 0xffffff8000853490 0x0000000000000030 0x000f0000 OSOrderedSet::_RESERVEDOSOrderedSet4() | |
| [ 1195] 1195 X Code 0xffffff80008534c0 0x0000000000000030 0x000f0000 OSOrderedSet::_RESERVEDOSOrderedSet5() | |
| [ 1196] 1196 X Code 0xffffff80008534f0 0x0000000000000030 0x000f0000 OSOrderedSet::_RESERVEDOSOrderedSet6() | |
| [ 1197] 1197 X Code 0xffffff8000853520 0x0000000000000030 0x000f0000 OSOrderedSet::_RESERVEDOSOrderedSet7() | |
| [ 1198] 1198 X Code 0xffffff8000852980 0x0000000000000060 0x000f0000 OSOrderedSet::free() | |
| [ 1199] 1199 X Code 0xffffff8000853980 0x0000000000000040 0x000f0000 OSOrderedSet::MetaClass::MetaClass() | |
| [ 1200] 1200 X Code 0xffffff8000853a10 0x0000000000000040 0x000f0000 OSOrderedSet::MetaClass::MetaClass() | |
| [ 1201] 1201 X Invalid 0xffffff8000b1a540 0x0000000000000008 0x000f0000 OSOrderedSet::metaClass | |
| [ 1202] 1202 X Code 0xffffff8000852f20 0x0000000000000070 0x000f0000 OSOrderedSet::setObject(OSMetaClassBase const*) | |
| [ 1203] 1203 X Code 0xffffff8000853170 0x00000000000001a0 0x000f0000 OSOrderedSet::setObject(unsigned int, OSMetaClassBase const*) | |
| [ 1204] 1204 X Code 0xffffff80008539e0 0x0000000000000020 0x000f0000 OSOrderedSet::OSOrderedSet(OSMetaClass const*) | |
| [ 1205] 1205 X Code 0xffffff8000853a50 0x0000000000000040 0x000f0000 OSOrderedSet::OSOrderedSet() | |
| [ 1206] 1206 X Code 0xffffff80008539c0 0x0000000000000020 0x000f0000 OSOrderedSet::OSOrderedSet(OSMetaClass const*) | |
| [ 1207] 1207 X Code 0xffffff8000853a90 0x0000000000000040 0x000f0000 OSOrderedSet::OSOrderedSet() | |
| [ 1208] 1208 X Code 0xffffff80008528d0 0x0000000000000040 0x000f0000 OSOrderedSet::~OSOrderedSet() | |
| [ 1209] 1209 X Code 0xffffff80008528c0 0x0000000000000010 0x000f0000 OSOrderedSet::~OSOrderedSet() | |
| [ 1210] 1210 X Code 0xffffff8000853a00 0x0000000000000010 0x000f0000 OSOrderedSet::~OSOrderedSet() | |
| [ 1211] 1211 X Data 0xffffff8000ac2700 0x0000000000000028 0x000f0000 OSSerializer::gMetaClass | |
| [ 1212] 1212 X Invalid 0xffffff8000b1aa88 0x0000000000000008 0x000f0000 OSSerializer::superClass | |
| [ 1213] 1213 X Code 0xffffff8000855c20 0x0000000000000040 0x000f0000 OSSerializer::MetaClass::MetaClass() | |
| [ 1214] 1214 X Code 0xffffff8000855cb0 0x0000000000000040 0x000f0000 OSSerializer::MetaClass::MetaClass() | |
| [ 1215] 1215 X Code 0xffffff8000855d70 0x00000000000000a0 0x000f0000 OSSerializer::forTarget(void*, bool (*)(void*, void*, OSSerialize*), void*) | |
| [ 1216] 1216 X Invalid 0xffffff8000b1aa90 0x0000000000000008 0x000f0000 OSSerializer::metaClass | |
| [ 1217] 1217 X Code 0xffffff8000855c80 0x0000000000000020 0x000f0000 OSSerializer::OSSerializer(OSMetaClass const*) | |
| [ 1218] 1218 X Code 0xffffff8000855cf0 0x0000000000000040 0x000f0000 OSSerializer::OSSerializer() | |
| [ 1219] 1219 X Code 0xffffff8000855c60 0x0000000000000020 0x000f0000 OSSerializer::OSSerializer(OSMetaClass const*) | |
| [ 1220] 1220 X Code 0xffffff8000855d30 0x0000000000000040 0x000f0000 OSSerializer::OSSerializer() | |
| [ 1221] 1221 X Code 0xffffff8000855460 0x0000000000000040 0x000f0000 OSSerializer::~OSSerializer() | |
| [ 1222] 1222 X Code 0xffffff8000855450 0x0000000000000010 0x000f0000 OSSerializer::~OSSerializer() | |
| [ 1223] 1223 X Code 0xffffff8000855ca0 0x0000000000000010 0x000f0000 OSSerializer::~OSSerializer() | |
| [ 1224] 1224 X Code 0xffffff8000858a90 0x0000000000000290 0x000f0000 OSSymbolPool::insertSymbol(OSSymbol*) | |
| [ 1225] 1225 X Code 0xffffff80008585c0 0x0000000000000370 0x000f0000 OSSymbolPool::removeSymbol(OSSymbol*) | |
| [ 1226] 1226 X Code 0xffffff80008594d0 0x0000000000000010 0x000f0000 OSSymbolPool::initHashState() | |
| [ 1227] 1227 X Code 0xffffff80008594e0 0x0000000000000070 0x000f0000 OSSymbolPool::nextHashState(OSSymbolPoolState*) | |
| [ 1228] 1228 X Code 0xffffff8000858930 0x0000000000000160 0x000f0000 OSSymbolPool::reconstructSymbols(bool) | |
| [ 1229] 1229 X Code 0xffffff8000859550 0x0000000000000010 0x000f0000 OSSymbolPool::reconstructSymbols() | |
| [ 1230] 1230 X Code 0xffffff80008590d0 0x00000000000000e0 0x000f0000 OSSymbolPool::init() | |
| [ 1231] 1231 X Code 0xffffff80008593a0 0x0000000000000020 0x000f0000 OSSymbolPool::log2(unsigned int) | |
| [ 1232] 1232 X Code 0xffffff8000859380 0x0000000000000020 0x000f0000 OSSymbolPool::exp2ml(unsigned int) | |
| [ 1233] 1233 X Code 0xffffff80008593f0 0x0000000000000030 0x000f0000 OSSymbolPool::OSSymbolPool(OSSymbolPool const*) | |
| [ 1234] 1234 X Code 0xffffff80008593c0 0x0000000000000030 0x000f0000 OSSymbolPool::OSSymbolPool(OSSymbolPool const*) | |
| [ 1235] 1235 X Code 0xffffff80008581e0 0x0000000000000040 0x000f0000 OSSymbolPool::~OSSymbolPool() | |
| [ 1236] 1236 X Code 0xffffff8000858130 0x00000000000000b0 0x000f0000 OSSymbolPool::~OSSymbolPool() | |
| [ 1237] 1237 X Code 0xffffff8000859420 0x00000000000000b0 0x000f0000 OSSymbolPool::~OSSymbolPool() | |
| [ 1238] 1238 X Code 0xffffff8000859360 0x0000000000000020 0x000f0000 OSSymbolPool::operator delete(void*, unsigned long) | |
| [ 1239] 1239 X Code 0xffffff80008592f0 0x0000000000000070 0x000f0000 OSSymbolPool::operator new(unsigned long) | |
| [ 1240] 1240 X Data 0xffffff8000ac3ad0 0x0000000000000028 0x000f0000 PMHaltWorker::gMetaClass | |
| [ 1241] 1241 X Invalid 0xffffff8000b32bb0 0x0000000000000008 0x000f0000 PMHaltWorker::superClass | |
| [ 1242] 1242 X Code 0xffffff8000911640 0x00000000000000e0 0x000f0000 PMHaltWorker::checkTimeout(PMHaltWorker*, unsigned long long*) | |
| [ 1243] 1243 X Code 0xffffff80009107b0 0x0000000000000010 0x000f0000 PMHaltWorker::__OSFinalClass() | |
| [ 1244] 1244 X Code 0xffffff80009025f0 0x0000000000000090 0x000f0000 PMHaltWorker::free() | |
| [ 1245] 1245 X Code 0xffffff8000911760 0x0000000000000190 0x000f0000 PMHaltWorker::main(void*, int) | |
| [ 1246] 1246 X Code 0xffffff80009118f0 0x0000000000000280 0x000f0000 PMHaltWorker::work(PMHaltWorker*) | |
| [ 1247] 1247 X Code 0xffffff8000911520 0x0000000000000120 0x000f0000 PMHaltWorker::worker() | |
| [ 1248] 1248 X Code 0xffffff8000910660 0x0000000000000040 0x000f0000 PMHaltWorker::MetaClass::MetaClass() | |
| [ 1249] 1249 X Code 0xffffff80009106f0 0x0000000000000040 0x000f0000 PMHaltWorker::MetaClass::MetaClass() | |
| [ 1250] 1250 X Invalid 0xffffff8000b32bb8 0x0000000000000008 0x000f0000 PMHaltWorker::metaClass | |
| [ 1251] 1251 X Code 0xffffff80009106c0 0x0000000000000020 0x000f0000 PMHaltWorker::PMHaltWorker(OSMetaClass const*) | |
| [ 1252] 1252 X Code 0xffffff8000910730 0x0000000000000040 0x000f0000 PMHaltWorker::PMHaltWorker() | |
| [ 1253] 1253 X Code 0xffffff80009106a0 0x0000000000000020 0x000f0000 PMHaltWorker::PMHaltWorker(OSMetaClass const*) | |
| [ 1254] 1254 X Code 0xffffff8000910770 0x0000000000000040 0x000f0000 PMHaltWorker::PMHaltWorker() | |
| [ 1255] 1255 X Code 0xffffff80009025a0 0x0000000000000040 0x000f0000 PMHaltWorker::~PMHaltWorker() | |
| [ 1256] 1256 X Code 0xffffff8000902590 0x0000000000000010 0x000f0000 PMHaltWorker::~PMHaltWorker() | |
| [ 1257] 1257 X Code 0xffffff80009106e0 0x0000000000000010 0x000f0000 PMHaltWorker::~PMHaltWorker() | |
| [ 1258] 1258 X Data 0xffffff8000ac3000 0x0000000000000028 0x000f0000 IOCommandGate::gMetaClass | |
| [ 1259] 1259 X Code 0xffffff80008bd600 0x0000000000000030 0x000f0000 IOCommandGate::runCommand(void*, void*, void*, void*) | |
| [ 1260] 1260 X Invalid 0xffffff8000b21b60 0x0000000000000008 0x000f0000 IOCommandGate::superClass | |
| [ 1261] 1261 X Code 0xffffff80008be280 0x0000000000000090 0x000f0000 IOCommandGate::commandGate(OSObject*, int (*)(OSObject*, void*, void*, void*, void*)) | |
| [ 1262] 1262 X Code 0xffffff80008bd410 0x00000000000000d0 0x000f0000 IOCommandGate::setWorkLoop(IOWorkLoop*) | |
| [ 1263] 1263 X Code 0xffffff80008bdac0 0x0000000000000050 0x000f0000 IOCommandGate::commandSleep(void*, unsigned int) | |
| [ 1264] 1264 X Code 0xffffff80008bdb30 0x0000000000000050 0x000f0000 IOCommandGate::commandSleep(void*, unsigned long long, unsigned int) | |
| [ 1265] 1265 X Code 0xffffff80008bd8f0 0x00000000000001d0 0x000f0000 IOCommandGate::attemptAction(int (*)(OSObject*, void*, void*, void*, void*), void*, void*, void*, void*) | |
| [ 1266] 1266 X Code 0xffffff80008bdb10 0x0000000000000020 0x000f0000 IOCommandGate::commandWakeup(void*, bool) | |
| [ 1267] 1267 X Code 0xffffff80008bd8c0 0x0000000000000030 0x000f0000 IOCommandGate::attemptCommand(void*, void*, void*, void*) | |
| [ 1268] 1268 X Code 0xffffff80008bdb80 0x0000000000000030 0x000f0000 IOCommandGate::_RESERVEDIOCommandGate0() | |
| [ 1269] 1269 X Code 0xffffff80008bdbb0 0x0000000000000030 0x000f0000 IOCommandGate::_RESERVEDIOCommandGate1() | |
| [ 1270] 1270 X Code 0xffffff80008bdbe0 0x0000000000000030 0x000f0000 IOCommandGate::_RESERVEDIOCommandGate2() | |
| [ 1271] 1271 X Code 0xffffff80008bdc10 0x0000000000000030 0x000f0000 IOCommandGate::_RESERVEDIOCommandGate3() | |
| [ 1272] 1272 X Code 0xffffff80008bdc40 0x0000000000000030 0x000f0000 IOCommandGate::_RESERVEDIOCommandGate4() | |
| [ 1273] 1273 X Code 0xffffff80008bdc70 0x0000000000000030 0x000f0000 IOCommandGate::_RESERVEDIOCommandGate5() | |
| [ 1274] 1274 X Code 0xffffff80008bdca0 0x0000000000000030 0x000f0000 IOCommandGate::_RESERVEDIOCommandGate6() | |
| [ 1275] 1275 X Code 0xffffff80008bdcd0 0x0000000000000030 0x000f0000 IOCommandGate::_RESERVEDIOCommandGate7() | |
| [ 1276] 1276 X Code 0xffffff80008bd3e0 0x0000000000000030 0x000f0000 IOCommandGate::free() | |
| [ 1277] 1277 X Code 0xffffff80008bd5d0 0x0000000000000030 0x000f0000 IOCommandGate::init(OSObject*, int (*)(OSObject*, void*, void*, void*, void*)) | |
| [ 1278] 1278 X Code 0xffffff80008bd4e0 0x00000000000000b0 0x000f0000 IOCommandGate::enable() | |
| [ 1279] 1279 X Code 0xffffff80008bd590 0x0000000000000040 0x000f0000 IOCommandGate::disable() | |
| [ 1280] 1280 X Code 0xffffff80008be130 0x0000000000000040 0x000f0000 IOCommandGate::MetaClass::MetaClass() | |
| [ 1281] 1281 X Code 0xffffff80008be1c0 0x0000000000000040 0x000f0000 IOCommandGate::MetaClass::MetaClass() | |
| [ 1282] 1282 X Invalid 0xffffff8000b21b58 0x0000000000000008 0x000f0000 IOCommandGate::metaClass | |
| [ 1283] 1283 X Code 0xffffff80008bd630 0x0000000000000290 0x000f0000 IOCommandGate::runAction(int (*)(OSObject*, void*, void*, void*, void*), void*, void*, void*, void*) | |
| [ 1284] 1284 X Code 0xffffff80008be190 0x0000000000000020 0x000f0000 IOCommandGate::IOCommandGate(OSMetaClass const*) | |
| [ 1285] 1285 X Code 0xffffff80008be200 0x0000000000000040 0x000f0000 IOCommandGate::IOCommandGate() | |
| [ 1286] 1286 X Code 0xffffff80008be170 0x0000000000000020 0x000f0000 IOCommandGate::IOCommandGate(OSMetaClass const*) | |
| [ 1287] 1287 X Code 0xffffff80008be240 0x0000000000000040 0x000f0000 IOCommandGate::IOCommandGate() | |
| [ 1288] 1288 X Code 0xffffff80008bd390 0x0000000000000040 0x000f0000 IOCommandGate::~IOCommandGate() | |
| [ 1289] 1289 X Code 0xffffff80008bd380 0x0000000000000010 0x000f0000 IOCommandGate::~IOCommandGate() | |
| [ 1290] 1290 X Code 0xffffff80008be1b0 0x0000000000000010 0x000f0000 IOCommandGate::~IOCommandGate() | |
| [ 1291] 1291 X Data 0xffffff8000ac3050 0x0000000000000028 0x000f0000 IOCommandPool::gMetaClass | |
| [ 1292] 1292 X Code 0xffffff80008bea60 0x0000000000000050 0x000f0000 IOCommandPool::getCommand(bool) | |
| [ 1293] 1293 X Invalid 0xffffff8000b220d0 0x0000000000000008 0x000f0000 IOCommandPool::superClass | |
| [ 1294] 1294 X Code 0xffffff80008bf350 0x0000000000000090 0x000f0000 IOCommandPool::commandPool(IOService*, IOWorkLoop*, unsigned int) | |
| [ 1295] 1295 X Code 0xffffff80008bf2d0 0x0000000000000080 0x000f0000 IOCommandPool::withWorkLoop(IOWorkLoop*) | |
| [ 1296] 1296 X Code 0xffffff80008beab0 0x0000000000000030 0x000f0000 IOCommandPool::returnCommand(IOCommand*) | |
| [ 1297] 1297 X Code 0xffffff80008beae0 0x0000000000000090 0x000f0000 IOCommandPool::gatedGetCommand(IOCommand**, bool) | |
| [ 1298] 1298 X Code 0xffffff80008be9e0 0x0000000000000060 0x000f0000 IOCommandPool::initWithWorkLoop(IOWorkLoop*) | |
| [ 1299] 1299 X Code 0xffffff80008beb70 0x0000000000000060 0x000f0000 IOCommandPool::gatedReturnCommand(IOCommand*) | |
| [ 1300] 1300 X Code 0xffffff80008bebd0 0x0000000000000030 0x000f0000 IOCommandPool::_RESERVEDIOCommandPool0() | |
| [ 1301] 1301 X Code 0xffffff80008bec00 0x0000000000000030 0x000f0000 IOCommandPool::_RESERVEDIOCommandPool1() | |
| [ 1302] 1302 X Code 0xffffff80008bec30 0x0000000000000030 0x000f0000 IOCommandPool::_RESERVEDIOCommandPool2() | |
| [ 1303] 1303 X Code 0xffffff80008bec60 0x0000000000000030 0x000f0000 IOCommandPool::_RESERVEDIOCommandPool3() | |
| [ 1304] 1304 X Code 0xffffff80008bec90 0x0000000000000030 0x000f0000 IOCommandPool::_RESERVEDIOCommandPool4() | |
| [ 1305] 1305 X Code 0xffffff80008becc0 0x0000000000000030 0x000f0000 IOCommandPool::_RESERVEDIOCommandPool5() | |
| [ 1306] 1306 X Code 0xffffff80008becf0 0x0000000000000030 0x000f0000 IOCommandPool::_RESERVEDIOCommandPool6() | |
| [ 1307] 1307 X Code 0xffffff80008bed20 0x0000000000000030 0x000f0000 IOCommandPool::_RESERVEDIOCommandPool7() | |
| [ 1308] 1308 X Code 0xffffff80008be970 0x0000000000000070 0x000f0000 IOCommandPool::free() | |
| [ 1309] 1309 X Code 0xffffff80008bea40 0x0000000000000020 0x000f0000 IOCommandPool::init(IOService*, IOWorkLoop*, unsigned int) | |
| [ 1310] 1310 X Code 0xffffff80008bf180 0x0000000000000040 0x000f0000 IOCommandPool::MetaClass::MetaClass() | |
| [ 1311] 1311 X Code 0xffffff80008bf210 0x0000000000000040 0x000f0000 IOCommandPool::MetaClass::MetaClass() | |
| [ 1312] 1312 X Invalid 0xffffff8000b220c8 0x0000000000000008 0x000f0000 IOCommandPool::metaClass | |
| [ 1313] 1313 X Code 0xffffff80008bf1e0 0x0000000000000020 0x000f0000 IOCommandPool::IOCommandPool(OSMetaClass const*) | |
| [ 1314] 1314 X Code 0xffffff80008bf250 0x0000000000000040 0x000f0000 IOCommandPool::IOCommandPool() | |
| [ 1315] 1315 X Code 0xffffff80008bf1c0 0x0000000000000020 0x000f0000 IOCommandPool::IOCommandPool(OSMetaClass const*) | |
| [ 1316] 1316 X Code 0xffffff80008bf290 0x0000000000000040 0x000f0000 IOCommandPool::IOCommandPool() | |
| [ 1317] 1317 X Code 0xffffff80008be920 0x0000000000000040 0x000f0000 IOCommandPool::~IOCommandPool() | |
| [ 1318] 1318 X Code 0xffffff80008be910 0x0000000000000010 0x000f0000 IOCommandPool::~IOCommandPool() | |
| [ 1319] 1319 X Code 0xffffff80008bf200 0x0000000000000010 0x000f0000 IOCommandPool::~IOCommandPool() | |
| [ 1320] 1320 X Data 0xffffff8000ac2fb0 0x0000000000000028 0x000f0000 IOEventSource::gMetaClass | |
| [ 1321] 1321 X Invalid 0xffffff8000b21558 0x0000000000000008 0x000f0000 IOEventSource::superClass | |
| [ 1322] 1322 X Code 0xffffff80008bc240 0x0000000000000020 0x000f0000 IOEventSource::wakeupGate(void*, bool) | |
| [ 1323] 1323 X Code 0xffffff80008bb920 0x0000000000000030 0x000f0000 IOEventSource::setWorkLoop(IOWorkLoop*) | |
| [ 1324] 1324 X Code 0xffffff80008bb910 0x0000000000000010 0x000f0000 IOEventSource::checkForWork() | |
| [ 1325] 1325 X Code 0xffffff80008bc0e0 0x0000000000000050 0x000f0000 IOEventSource::tryCloseGate() | |
| [ 1326] 1326 X Code 0xffffff80008bc040 0x0000000000000020 0x000f0000 IOEventSource::signalWorkAvailable() | |
| [ 1327] 1327 X Code 0xffffff80008bba00 0x0000000000000030 0x000f0000 IOEventSource::_RESERVEDIOEventSource0() | |
| [ 1328] 1328 X Code 0xffffff80008bba30 0x0000000000000030 0x000f0000 IOEventSource::_RESERVEDIOEventSource1() | |
| [ 1329] 1329 X Code 0xffffff80008bba60 0x0000000000000030 0x000f0000 IOEventSource::_RESERVEDIOEventSource2() | |
| [ 1330] 1330 X Code 0xffffff80008bba90 0x0000000000000030 0x000f0000 IOEventSource::_RESERVEDIOEventSource3() | |
| [ 1331] 1331 X Code 0xffffff80008bbac0 0x0000000000000030 0x000f0000 IOEventSource::_RESERVEDIOEventSource4() | |
| [ 1332] 1332 X Code 0xffffff80008bbaf0 0x0000000000000030 0x000f0000 IOEventSource::_RESERVEDIOEventSource5() | |
| [ 1333] 1333 X Code 0xffffff80008bbb20 0x0000000000000030 0x000f0000 IOEventSource::_RESERVEDIOEventSource6() | |
| [ 1334] 1334 X Code 0xffffff80008bbb50 0x0000000000000030 0x000f0000 IOEventSource::_RESERVEDIOEventSource7() | |
| [ 1335] 1335 X Code 0xffffff80008bb840 0x0000000000000060 0x000f0000 IOEventSource::free() | |
| [ 1336] 1336 X Code 0xffffff80008bb8a0 0x0000000000000070 0x000f0000 IOEventSource::init(OSObject*, void (*)(OSObject*, ...)) | |
| [ 1337] 1337 X Code 0xffffff80008bb990 0x0000000000000020 0x000f0000 IOEventSource::enable() | |
| [ 1338] 1338 X Code 0xffffff80008bb9b0 0x0000000000000010 0x000f0000 IOEventSource::disable() | |
| [ 1339] 1339 X Code 0xffffff80008bb950 0x0000000000000010 0x000f0000 IOEventSource::setNext(IOEventSource*) | |
| [ 1340] 1340 X Code 0xffffff80008bc060 0x0000000000000040 0x000f0000 IOEventSource::openGate() | |
| [ 1341] 1341 X Code 0xffffff80008bbf70 0x0000000000000040 0x000f0000 IOEventSource::MetaClass::MetaClass() | |
| [ 1342] 1342 X Code 0xffffff80008bc000 0x0000000000000040 0x000f0000 IOEventSource::MetaClass::MetaClass() | |
| [ 1343] 1343 X Code 0xffffff80008bc0a0 0x0000000000000040 0x000f0000 IOEventSource::closeGate() | |
| [ 1344] 1344 X Invalid 0xffffff8000b21550 0x0000000000000008 0x000f0000 IOEventSource::metaClass | |
| [ 1345] 1345 X Code 0xffffff80008bb970 0x0000000000000010 0x000f0000 IOEventSource::setAction(void (*)(OSObject*, ...)) | |
| [ 1346] 1346 X Code 0xffffff80008bc130 0x0000000000000080 0x000f0000 IOEventSource::sleepGate(void*, unsigned int) | |
| [ 1347] 1347 X Code 0xffffff80008bc1b0 0x0000000000000090 0x000f0000 IOEventSource::sleepGate(void*, unsigned long long, unsigned int) | |
| [ 1348] 1348 X Code 0xffffff80008bbfd0 0x0000000000000020 0x000f0000 IOEventSource::IOEventSource(OSMetaClass const*) | |
| [ 1349] 1349 X Code 0xffffff80008bbfb0 0x0000000000000020 0x000f0000 IOEventSource::IOEventSource(OSMetaClass const*) | |
| [ 1350] 1350 X Code 0xffffff80008bb7f0 0x0000000000000040 0x000f0000 IOEventSource::~IOEventSource() | |
| [ 1351] 1351 X Code 0xffffff80008bb7e0 0x0000000000000010 0x000f0000 IOEventSource::~IOEventSource() | |
| [ 1352] 1352 X Code 0xffffff80008bbff0 0x0000000000000010 0x000f0000 IOEventSource::~IOEventSource() | |
| [ 1353] 1353 X Data 0xffffff8000ac2dd0 0x0000000000000028 0x000f0000 IOPMWorkQueue::gMetaClass | |
| [ 1354] 1354 X Invalid 0xffffff8000b1ec30 0x0000000000000008 0x000f0000 IOPMWorkQueue::superClass | |
| [ 1355] 1355 X Code 0xffffff800089f010 0x0000000000000140 0x000f0000 IOPMWorkQueue::checkForWork() | |
| [ 1356] 1356 X Code 0xffffff80008ac4c0 0x0000000000000170 0x000f0000 IOPMWorkQueue::queuePMRequest(IOPMRequest*, IOServicePM*) | |
| [ 1357] 1357 X Code 0xffffff800089f1c0 0x0000000000000120 0x000f0000 IOPMWorkQueue::checkRequestQueue(queue_entry*, bool*) | |
| [ 1358] 1358 X Code 0xffffff80008af9a0 0x0000000000000020 0x000f0000 IOPMWorkQueue::signalWorkAvailable() | |
| [ 1359] 1359 X Code 0xffffff80008b17a0 0x0000000000000060 0x000f0000 IOPMWorkQueue::attachQuiesceRequest(IOPMRequest*) | |
| [ 1360] 1360 X Code 0xffffff80008b1300 0x0000000000000050 0x000f0000 IOPMWorkQueue::finishQuiesceRequest(IOPMRequest*) | |
| [ 1361] 1361 X Code 0xffffff80008ada00 0x0000000000000010 0x000f0000 IOPMWorkQueue::incrementProducerCount() | |
| [ 1362] 1362 X Code 0xffffff800089f150 0x0000000000000070 0x000f0000 IOPMWorkQueue::init(IOService*, bool (*)(IOService*, IOPMRequest*, IOPMWorkQueue*), bool (*)(IOService*, IOPMRequest*, IOPMWorkQueue*)) | |
| [ 1363] 1363 X Code 0xffffff80008ac690 0x0000000000000060 0x000f0000 IOPMWorkQueue::create(IOService*, bool (*)(IOService*, IOPMRequest*, IOPMWorkQueue*), bool (*)(IOService*, IOPMRequest*, IOPMWorkQueue*)) | |
| [ 1364] 1364 X Code 0xffffff80008b1650 0x0000000000000040 0x000f0000 IOPMWorkQueue::MetaClass::MetaClass() | |
| [ 1365] 1365 X Code 0xffffff80008b16e0 0x0000000000000040 0x000f0000 IOPMWorkQueue::MetaClass::MetaClass() | |
| [ 1366] 1366 X Invalid 0xffffff8000b1ec38 0x0000000000000008 0x000f0000 IOPMWorkQueue::metaClass | |
| [ 1367] 1367 X Code 0xffffff80008b16b0 0x0000000000000020 0x000f0000 IOPMWorkQueue::IOPMWorkQueue(OSMetaClass const*) | |
| [ 1368] 1368 X Code 0xffffff80008b1720 0x0000000000000040 0x000f0000 IOPMWorkQueue::IOPMWorkQueue() | |
| [ 1369] 1369 X Code 0xffffff80008b1690 0x0000000000000020 0x000f0000 IOPMWorkQueue::IOPMWorkQueue(OSMetaClass const*) | |
| [ 1370] 1370 X Code 0xffffff80008b1760 0x0000000000000040 0x000f0000 IOPMWorkQueue::IOPMWorkQueue() | |
| [ 1371] 1371 X Code 0xffffff800089efc0 0x0000000000000040 0x000f0000 IOPMWorkQueue::~IOPMWorkQueue() | |
| [ 1372] 1372 X Code 0xffffff800089efb0 0x0000000000000010 0x000f0000 IOPMWorkQueue::~IOPMWorkQueue() | |
| [ 1373] 1373 X Code 0xffffff80008b16d0 0x0000000000000010 0x000f0000 IOPMWorkQueue::~IOPMWorkQueue() | |
| [ 1374] 1374 X Data 0xffffff8000ac3a58 0x0000000000000028 0x000f0000 PMTraceWorker::gMetaClass | |
| [ 1375] 1375 X Invalid 0xffffff8000b32b28 0x0000000000000008 0x000f0000 PMTraceWorker::superClass | |
| [ 1376] 1376 X Code 0xffffff8000908f80 0x00000000000000a0 0x000f0000 PMTraceWorker::tracePoint(unsigned char) | |
| [ 1377] 1377 X Code 0xffffff8000915b70 0x0000000000000090 0x000f0000 PMTraceWorker::traceDetail(unsigned int) | |
| [ 1378] 1378 X Code 0xffffff8000915df0 0x0000000000000010 0x000f0000 PMTraceWorker::getTraceData() | |
| [ 1379] 1379 X Code 0xffffff8000915c00 0x0000000000000010 0x000f0000 PMTraceWorker::getTracePhase() | |
| [ 1380] 1380 X Code 0xffffff8000915dd0 0x0000000000000020 0x000f0000 PMTraceWorker::getPMStatusCode() | |
| [ 1381] 1381 X Code 0xffffff8000914b20 0x00000000000001c0 0x000f0000 PMTraceWorker::tracePCIPowerChange(PMTraceWorker::change_t, IOService*, unsigned int, unsigned int) | |
| [ 1382] 1382 X Code 0xffffff80009149c0 0x0000000000000100 0x000f0000 PMTraceWorker::recordTopLevelPCIDevice(IOService*) | |
| [ 1383] 1383 X Code 0xffffff800090d8e0 0x00000000000000b0 0x000f0000 PMTraceWorker::traceComponentWakeProgress(unsigned int, unsigned int) | |
| [ 1384] 1384 X Code 0xffffff8000911ca0 0x00000000000000f0 0x000f0000 PMTraceWorker::tracer(IOPMrootDomain*) | |
| [ 1385] 1385 X Code 0xffffff8000915c10 0x0000000000000040 0x000f0000 PMTraceWorker::MetaClass::MetaClass() | |
| [ 1386] 1386 X Code 0xffffff8000915ca0 0x0000000000000040 0x000f0000 PMTraceWorker::MetaClass::MetaClass() | |
| [ 1387] 1387 X Code 0xffffff8000915d60 0x0000000000000070 0x000f0000 PMTraceWorker::RTC_TRACE() | |
| [ 1388] 1388 X Invalid 0xffffff8000b32b30 0x0000000000000008 0x000f0000 PMTraceWorker::metaClass | |
| [ 1389] 1389 X Code 0xffffff8000915c70 0x0000000000000020 0x000f0000 PMTraceWorker::PMTraceWorker(OSMetaClass const*) | |
| [ 1390] 1390 X Code 0xffffff8000915ce0 0x0000000000000040 0x000f0000 PMTraceWorker::PMTraceWorker() | |
| [ 1391] 1391 X Code 0xffffff8000915c50 0x0000000000000020 0x000f0000 PMTraceWorker::PMTraceWorker(OSMetaClass const*) | |
| [ 1392] 1392 X Code 0xffffff8000915d20 0x0000000000000040 0x000f0000 PMTraceWorker::PMTraceWorker() | |
| [ 1393] 1393 X Code 0xffffff800090e770 0x0000000000000040 0x000f0000 PMTraceWorker::~PMTraceWorker() | |
| [ 1394] 1394 X Code 0xffffff800090e760 0x0000000000000010 0x000f0000 PMTraceWorker::~PMTraceWorker() | |
| [ 1395] 1395 X Code 0xffffff8000915c90 0x0000000000000010 0x000f0000 PMTraceWorker::~PMTraceWorker() | |
| [ 1396] 1396 X Data 0xffffff8000ac2c60 0x0000000000000028 0x000f0000 _IOServiceJob::gMetaClass | |
| [ 1397] 1397 X Code 0xffffff8000897d50 0x00000000000000f0 0x000f0000 _IOServiceJob::pingConfig(_IOServiceJob*) | |
| [ 1398] 1398 X Invalid 0xffffff8000b1d0f0 0x0000000000000008 0x000f0000 _IOServiceJob::superClass | |
| [ 1399] 1399 X Code 0xffffff8000896320 0x00000000000000b0 0x000f0000 _IOServiceJob::startJob(IOService*, int, unsigned int) | |
| [ 1400] 1400 X Code 0xffffff800089be60 0x0000000000000040 0x000f0000 _IOServiceJob::MetaClass::MetaClass() | |
| [ 1401] 1401 X Code 0xffffff800089bef0 0x0000000000000040 0x000f0000 _IOServiceJob::MetaClass::MetaClass() | |
| [ 1402] 1402 X Invalid 0xffffff8000b1d0f8 0x0000000000000008 0x000f0000 _IOServiceJob::metaClass | |
| [ 1403] 1403 X Code 0xffffff800089bec0 0x0000000000000020 0x000f0000 _IOServiceJob::_IOServiceJob(OSMetaClass const*) | |
| [ 1404] 1404 X Code 0xffffff800089bf30 0x0000000000000040 0x000f0000 _IOServiceJob::_IOServiceJob() | |
| [ 1405] 1405 X Code 0xffffff800089bea0 0x0000000000000020 0x000f0000 _IOServiceJob::_IOServiceJob(OSMetaClass const*) | |
| [ 1406] 1406 X Code 0xffffff800089bf70 0x0000000000000040 0x000f0000 _IOServiceJob::_IOServiceJob() | |
| [ 1407] 1407 X Code 0xffffff80008981e0 0x0000000000000040 0x000f0000 _IOServiceJob::~_IOServiceJob() | |
| [ 1408] 1408 X Code 0xffffff80008981d0 0x0000000000000010 0x000f0000 _IOServiceJob::~_IOServiceJob() | |
| [ 1409] 1409 X Code 0xffffff800089bee0 0x0000000000000010 0x000f0000 _IOServiceJob::~_IOServiceJob() | |
| [ 1410] 1410 X Code 0xffffff80008c5920 0x0000000000000010 0x000f0000 IODeviceMemory::withSubRange(IODeviceMemory*, unsigned long long, unsigned long long) | |
| [ 1411] 1411 X Code 0xffffff80008c5930 0x00000000000000c0 0x000f0000 IODeviceMemory::arrayFromList(IODeviceMemory::InitElement*, unsigned int) | |
| [ 1412] 1412 X Code 0xffffff80008c5900 0x0000000000000020 0x000f0000 IODeviceMemory::withRange(unsigned long long, unsigned long long) | |
| [ 1413] 1413 X Data 0xffffff8000ac3190 0x0000000000000028 0x000f0000 IOMemoryCursor::gMetaClass | |
| [ 1414] 1414 X Invalid 0xffffff8000b24208 0x0000000000000008 0x000f0000 IOMemoryCursor::superClass | |
| [ 1415] 1415 X Code 0xffffff80008c90e0 0x00000000000000a0 0x000f0000 IOMemoryCursor::withSpecification(void (*)(IOMemoryCursor::PhysicalSegment, void*, unsigned int), unsigned long long, unsigned long long, unsigned long long) | |
| [ 1416] 1416 X Code 0xffffff80008c79c0 0x00000000000001f0 0x000f0000 IOMemoryCursor::genPhysicalSegments(IOMemoryDescriptor*, unsigned long long, void*, unsigned int, unsigned int, unsigned long long*) | |
| [ 1417] 1417 X Code 0xffffff80008c7910 0x00000000000000b0 0x000f0000 IOMemoryCursor::initWithSpecification(void (*)(IOMemoryCursor::PhysicalSegment, void*, unsigned int), unsigned long long, unsigned long long, unsigned long long) | |
| [ 1418] 1418 X Code 0xffffff80008c8f90 0x0000000000000040 0x000f0000 IOMemoryCursor::MetaClass::MetaClass() | |
| [ 1419] 1419 X Code 0xffffff80008c9020 0x0000000000000040 0x000f0000 IOMemoryCursor::MetaClass::MetaClass() | |
| [ 1420] 1420 X Invalid 0xffffff8000b24200 0x0000000000000008 0x000f0000 IOMemoryCursor::metaClass | |
| [ 1421] 1421 X Code 0xffffff80008c8ff0 0x0000000000000020 0x000f0000 IOMemoryCursor::IOMemoryCursor(OSMetaClass const*) | |
| [ 1422] 1422 X Code 0xffffff80008c9060 0x0000000000000040 0x000f0000 IOMemoryCursor::IOMemoryCursor() | |
| [ 1423] 1423 X Code 0xffffff80008c8fd0 0x0000000000000020 0x000f0000 IOMemoryCursor::IOMemoryCursor(OSMetaClass const*) | |
| [ 1424] 1424 X Code 0xffffff80008c90a0 0x0000000000000040 0x000f0000 IOMemoryCursor::IOMemoryCursor() | |
| [ 1425] 1425 X Code 0xffffff80008c78c0 0x0000000000000040 0x000f0000 IOMemoryCursor::~IOMemoryCursor() | |
| [ 1426] 1426 X Code 0xffffff80008c78b0 0x0000000000000010 0x000f0000 IOMemoryCursor::~IOMemoryCursor() | |
| [ 1427] 1427 X Code 0xffffff80008c9010 0x0000000000000010 0x000f0000 IOMemoryCursor::~IOMemoryCursor() | |
| [ 1428] 1428 X Data 0xffffff8000ac3aa8 0x0000000000000028 0x000f0000 IOPMrootDomain::gMetaClass | |
| [ 1429] 1429 X Invalid 0xffffff8000b32ba0 0x0000000000000008 0x000f0000 IOPMrootDomain::superClass | |
| [ 1430] 1430 X Code 0xffffff8000912760 0x00000000000000b0 0x000f0000 IOPMrootDomain::tracePoint(unsigned char) | |
| [ 1431] 1431 X Code 0xffffff8000911e90 0x0000000000000060 0x000f0000 IOPMrootDomain::kdebugTrace(unsigned int, unsigned long long, unsigned long, unsigned long, unsigned long) | |
| [ 1432] 1432 X Code 0xffffff8000906090 0x0000000000000090 0x000f0000 IOPMrootDomain::sleepSystem() | |
| [ 1433] 1433 X Code 0xffffff8000915ac0 0x00000000000000b0 0x000f0000 IOPMrootDomain::traceDetail(unsigned int, unsigned int, unsigned long) | |
| [ 1434] 1434 X Code 0xffffff800090d990 0x00000000000002f0 0x000f0000 IOPMrootDomain::setPMSetting(OSSymbol const*, OSObject*) | |
| [ 1435] 1435 X Code 0xffffff8000905490 0x0000000000000140 0x000f0000 IOPMrootDomain::tellChangeUp(unsigned long) | |
| [ 1436] 1436 X Code 0xffffff8000903c90 0x0000000000000230 0x000f0000 IOPMrootDomain::updateReport(IOReportChannelList*, unsigned int, void*, void*) | |
| [ 1437] 1437 X Code 0xffffff8000912e50 0x0000000000000010 0x000f0000 IOPMrootDomain::wakeFromDoze() | |
| [ 1438] 1438 X Code 0xffffff8000905160 0x00000000000000c0 0x000f0000 IOPMrootDomain::askChangeDown(unsigned long) | |
| [ 1439] 1439 X Code 0xffffff8000912ef0 0x0000000000000070 0x000f0000 IOPMrootDomain::copyPMSetting(OSSymbol*) | |
| [ 1440] 1440 X Code 0xffffff8000915500 0x0000000000000030 0x000f0000 IOPMrootDomain::mustHibernate() | |
| [ 1441] 1441 X Code 0xffffff80009109d0 0x0000000000000010 0x000f0000 IOPMrootDomain::restartSystem() | |
| [ 1442] 1442 X Code 0xffffff8000902e50 0x0000000000000d30 0x000f0000 IOPMrootDomain::setProperties(OSObject*) | |
| [ 1443] 1443 X Code 0xffffff800090d410 0x00000000000000f0 0x000f0000 IOPMrootDomain::swdDebugSetup() | |
| [ 1444] 1444 X Code 0xffffff8000916bd0 0x0000000000000610 0x000f0000 IOPMrootDomain::takeStackshot(bool, bool, bool) | |
| [ 1445] 1445 X Code 0xffffff8000910910 0x0000000000000010 0x000f0000 IOPMrootDomain::__OSFinalClass() | |
| [ 1446] 1446 X Code 0xffffff8000906bb0 0x0000000000000b70 0x000f0000 IOPMrootDomain::evaluatePolicy(int, unsigned int) | |
| [ 1447] 1447 X Code 0xffffff8000908cc0 0x0000000000000150 0x000f0000 IOPMrootDomain::getSleepOption(char const*, unsigned int*) | |
| [ 1448] 1448 X Code 0xffffff8000911e70 0x0000000000000020 0x000f0000 IOPMrootDomain::publishFeature(char const*) | |
| [ 1449] 1449 X Code 0xffffff8000909d20 0x0000000000000250 0x000f0000 IOPMrootDomain::publishFeature(char const*, unsigned int, unsigned int*) | |
| [ 1450] 1450 X Code 0xffffff80009109f0 0x0000000000000010 0x000f0000 IOPMrootDomain::shutdownSystem() | |
| [ 1451] 1451 X Code 0xffffff8000905220 0x00000000000001b0 0x000f0000 IOPMrootDomain::tellChangeDown(unsigned long) | |
| [ 1452] 1452 X Code 0xffffff8000903b80 0x0000000000000110 0x000f0000 IOPMrootDomain::configureReport(IOReportChannelList*, unsigned int, void*, void*) | |
| [ 1453] 1453 X Code 0xffffff80009055d0 0x0000000000000ac0 0x000f0000 IOPMrootDomain::powerChangeDone(unsigned long) | |
| [ 1454] 1454 X Code 0xffffff8000906760 0x00000000000000e0 0x000f0000 IOPMrootDomain::reportUserInput() | |
| [ 1455] 1455 X Code 0xffffff8000906920 0x0000000000000140 0x000f0000 IOPMrootDomain::requestFullWake(IOPMrootDomain::FullWakeReason) | |
| [ 1456] 1456 X Code 0xffffff8000908420 0x0000000000000100 0x000f0000 IOPMrootDomain::setThermalState(OSObject*) | |
| [ 1457] 1457 X Code 0xffffff8000912a10 0x00000000000000d0 0x000f0000 IOPMrootDomain::abortHibernation() | |
| [ 1458] 1458 X Code 0xffffff8000907a70 0x00000000000000f0 0x000f0000 IOPMrootDomain::adjustPowerState(bool) | |
| [ 1459] 1459 X Code 0xffffff80009154d0 0x0000000000000030 0x000f0000 IOPMrootDomain::batteryPublished(void*, void*, IOService*, IONotifier*) | |
| [ 1460] 1460 X Code 0xffffff8000912e60 0x0000000000000070 0x000f0000 IOPMrootDomain::publishPMSetting(OSSymbol const*, unsigned int, unsigned int*) | |
| [ 1461] 1461 X Code 0xffffff8000904e10 0x00000000000001a0 0x000f0000 IOPMrootDomain::registerInterest(OSSymbol const*, int (*)(void*, void*, unsigned int, IOService*, void*, unsigned long), void*, void*) | |
| [ 1462] 1462 X Code 0xffffff8000911c50 0x0000000000000050 0x000f0000 IOPMrootDomain::swdDebugTeardown() | |
| [ 1463] 1463 X Code 0xffffff80009053d0 0x00000000000000c0 0x000f0000 IOPMrootDomain::tellNoChangeDown(unsigned long) | |
| [ 1464] 1464 X Code 0xffffff8000912810 0x00000000000000d0 0x000f0000 IOPMrootDomain::askChangeDownDone(unsigned int*, bool*) | |
| [ 1465] 1465 X Code 0xffffff8000915ea0 0x0000000000000030 0x000f0000 IOPMrootDomain::createPMAssertion(unsigned long long, unsigned int, IOService*, char const*) | |
| [ 1466] 1466 X Code 0xffffff8000904fd0 0x0000000000000190 0x000f0000 IOPMrootDomain::getAggressiveness(unsigned long, unsigned long*) | |
| [ 1467] 1467 X Code 0xffffff8000906180 0x0000000000000010 0x000f0000 IOPMrootDomain::getSleepSupported() | |
| [ 1468] 1468 X Code 0xffffff8000904fc0 0x0000000000000010 0x000f0000 IOPMrootDomain::setAggressiveness(unsigned long, unsigned long) | |
| [ 1469] 1469 X Code 0xffffff8000907720 0x0000000000000170 0x000f0000 IOPMrootDomain::setAggressiveness(unsigned long, unsigned long, unsigned int) | |
| [ 1470] 1470 X Code 0xffffff80009154b0 0x0000000000000020 0x000f0000 IOPMrootDomain::setDisplayPowerOn(unsigned int) | |
| [ 1471] 1471 X Code 0xffffff8000906140 0x0000000000000040 0x000f0000 IOPMrootDomain::setSleepSupported(unsigned int) | |
| [ 1472] 1472 X Code 0xffffff8000908e10 0x0000000000000170 0x000f0000 IOPMrootDomain::systemDidNotSleep() | |
| [ 1473] 1473 X Code 0xffffff800090d5f0 0x00000000000000f0 0x000f0000 IOPMrootDomain::updateReportGated(unsigned long long, void*, IOBufferMemoryDescriptor*) | |
| [ 1474] 1474 X Code 0xffffff8000906a60 0x0000000000000150 0x000f0000 IOPMrootDomain::willEnterFullWake() | |
| [ 1475] 1475 X Code 0xffffff80009129f0 0x0000000000000020 0x000f0000 IOPMrootDomain::activitySinceSleep() | |
| [ 1476] 1476 X Code 0xffffff8000906190 0x0000000000000050 0x000f0000 IOPMrootDomain::changePowerStateTo(unsigned long) | |
| [ 1477] 1477 X Code 0xffffff8000909480 0x00000000000004a0 0x000f0000 IOPMrootDomain::dispatchPowerEvent(unsigned int, void*, unsigned long long) | |
| [ 1478] 1478 X Code 0xffffff800090c140 0x00000000000001b0 0x000f0000 IOPMrootDomain::evaluateAssertions(unsigned long long, unsigned long long) | |
| [ 1479] 1479 X Code 0xffffff8000913470 0x00000000000000c0 0x000f0000 IOPMrootDomain::getSystemSleepType(unsigned int*) | |
| [ 1480] 1480 X Code 0xffffff8000907b60 0x0000000000000090 0x000f0000 IOPMrootDomain::getTimeToIdleSleep() | |
| [ 1481] 1481 X Code 0xffffff8000911ef0 0x0000000000000120 0x000f0000 IOPMrootDomain::joinAggressiveness(IOService*) | |
| [ 1482] 1482 X Code 0xffffff8000915530 0x0000000000000140 0x000f0000 IOPMrootDomain::pmStatsRecordEvent(int, unsigned long long) | |
| [ 1483] 1483 X Code 0xffffff80009122b0 0x0000000000000090 0x000f0000 IOPMrootDomain::privateSleepSystem(unsigned int) | |
| [ 1484] 1484 X Code 0xffffff8000915fc0 0x0000000000000050 0x000f0000 IOPMrootDomain::releasePMAssertion(unsigned long long) | |
| [ 1485] 1485 X Code 0xffffff80009120b0 0x0000000000000200 0x000f0000 IOPMrootDomain::sleepSystemOptions(OSDictionary*) | |
| [ 1486] 1486 X Code 0xffffff80009173b0 0x0000000000000020 0x000f0000 IOPMrootDomain::sleepWakeDebugTrig(bool) | |
| [ 1487] 1487 X Code 0xffffff8000911be0 0x0000000000000040 0x000f0000 IOPMrootDomain::updateConsoleUsers() | |
| [ 1488] 1488 X Code 0xffffff80009128e0 0x0000000000000050 0x000f0000 IOPMrootDomain::checkSystemCanSleep(unsigned int) | |
| [ 1489] 1489 X Code 0xffffff8000909340 0x0000000000000030 0x000f0000 IOPMrootDomain::fullWakeDelayedWork() | |
| [ 1490] 1490 X Code 0xffffff80009133a0 0x0000000000000030 0x000f0000 IOPMrootDomain::getPMAssertionLevel(unsigned long long) | |
| [ 1491] 1491 X Code 0xffffff8000916040 0x0000000000000040 0x000f0000 IOPMrootDomain::setPMAssertionLevel(unsigned long long, unsigned int) | |
| [ 1492] 1492 X Code 0xffffff8000907bf0 0x00000000000000e0 0x000f0000 IOPMrootDomain::startIdleSleepTimer(unsigned int) | |
| [ 1493] 1493 X Code 0xffffff8000909920 0x00000000000002c0 0x000f0000 IOPMrootDomain::sysPowerDownHandler(void*, void*, unsigned int, IOService*, void*, unsigned long) | |
| [ 1494] 1494 X Code 0xffffff8000914ea0 0x00000000000003b0 0x000f0000 IOPMrootDomain::systemMessageFilter(void*, void*, void*, void*) | |
| [ 1495] 1495 X Code 0xffffff8000908260 0x00000000000001c0 0x000f0000 IOPMrootDomain::broadcastAggressives(AggressivesRecord const*, int) | |
| [ 1496] 1496 X Code 0xffffff8000904c30 0x00000000000001e0 0x000f0000 IOPMrootDomain::callPlatformFunction(OSSymbol const*, bool, void*, void*, void*, void*) | |
| [ 1497] 1497 X Code 0xffffff8000906230 0x0000000000000140 0x000f0000 IOPMrootDomain::cancelIdleSleepTimer() | |
| [ 1498] 1498 X Code 0xffffff8000916270 0x00000000000003a0 0x000f0000 IOPMrootDomain::claimSystemWakeEvent(IOService*, unsigned int, char const*, OSObject*) | |
| [ 1499] 1499 X Code 0xffffff800090d6e0 0x0000000000000200 0x000f0000 IOPMrootDomain::configureReportGated(unsigned long long, unsigned long long, void*) | |
| [ 1500] 1500 X Code 0xffffff80009161e0 0x0000000000000090 0x000f0000 IOPMrootDomain::copyWakeReasonString(char*, unsigned long) | |
| [ 1501] 1501 X Code 0xffffff80009133d0 0x00000000000000a0 0x000f0000 IOPMrootDomain::getHibernateSettings(unsigned int*, unsigned int*, unsigned int*) | |
| [ 1502] 1502 X Code 0xffffff8000906840 0x00000000000000e0 0x000f0000 IOPMrootDomain::handleDisplayPowerOn() | |
| [ 1503] 1503 X Code 0xffffff800090d040 0x00000000000001d0 0x000f0000 IOPMrootDomain::informCPUStateChange(unsigned int, unsigned int) | |
| [ 1504] 1504 X Code 0xffffff8000916ba0 0x0000000000000030 0x000f0000 IOPMrootDomain::restartWithStackshot() | |
| [ 1505] 1505 X Code 0xffffff8000913530 0x0000000000000340 0x000f0000 IOPMrootDomain::tagPowerPlaneService(IOService*, IOPMActions*) | |
| [ 1506] 1506 X Code 0xffffff8000909c10 0x0000000000000110 0x000f0000 IOPMrootDomain::IONVRAMMatchPublished(void*, void*, IOService*, IONotifier*) | |
| [ 1507] 1507 X Code 0xffffff80009123b0 0x0000000000000080 0x000f0000 IOPMrootDomain::acceptSystemWakeEvents(bool) | |
| [ 1508] 1508 X Code 0xffffff80009061e0 0x0000000000000050 0x000f0000 IOPMrootDomain::changePowerStateToPriv(unsigned long) | |
| [ 1509] 1509 X Code 0xffffff800090c560 0x0000000000000250 0x000f0000 IOPMrootDomain::checkForValidDebugData(char const*, vfs_context**, void*, vnode**) | |
| [ 1510] 1510 X Code 0xffffff80009143f0 0x0000000000000080 0x000f0000 IOPMrootDomain::overrideOurPowerChange(IOService*, IOPMActions*, unsigned long*, unsigned int*, unsigned int) | |
| [ 1511] 1511 X Code 0xffffff800090f0f0 0x0000000000000420 0x000f0000 IOPMrootDomain::removePublishedFeature(unsigned int) | |
| [ 1512] 1512 X Code 0xffffff800090c7b0 0x0000000000000570 0x000f0000 IOPMrootDomain::sleepWakeDebugCopyFile(vnode*, vfs_context*, char*, unsigned long long, unsigned long long, char const*, unsigned long long, unsigned int) | |
| [ 1513] 1513 X Code 0xffffff8000917290 0x0000000000000120 0x000f0000 IOPMrootDomain::sleepWakeDebugMemAlloc() | |
| [ 1514] 1514 X Code 0xffffff8000909f70 0x00000000000003a0 0x000f0000 IOPMrootDomain::sleepWakeDebugRetrieve() | |
| [ 1515] 1515 X Code 0xffffff800090cd20 0x0000000000000320 0x000f0000 IOPMrootDomain::sleepWakeDebugSaveFile(char const*, char*, int) | |
| [ 1516] 1516 X Code 0xffffff8000908130 0x0000000000000130 0x000f0000 IOPMrootDomain::synchronizeAggressives(queue_entry*, AggressivesRecord const*, int) | |
| [ 1517] 1517 X Code 0xffffff8000907890 0x00000000000001e0 0x000f0000 IOPMrootDomain::checkSystemSleepAllowed(unsigned int, unsigned int) | |
| [ 1518] 1518 X Code 0xffffff8000912340 0x0000000000000070 0x000f0000 IOPMrootDomain::checkSystemSleepEnabled() | |
| [ 1519] 1519 X Code 0xffffff800090dfd0 0x0000000000000230 0x000f0000 IOPMrootDomain::copySleepPreventersList(OSArray**, OSArray**) | |
| [ 1520] 1520 X Code 0xffffff800090a950 0x0000000000000770 0x000f0000 IOPMrootDomain::handlePowerNotification(unsigned int) | |
| [ 1521] 1521 X Code 0xffffff8000904fb0 0x0000000000000010 0x000f0000 IOPMrootDomain::requestPowerDomainState(unsigned long, IOPowerConnection*, unsigned long) | |
| [ 1522] 1522 X Code 0xffffff8000912010 0x0000000000000050 0x000f0000 IOPMrootDomain::setQuickSpinDownTimeout() | |
| [ 1523] 1523 X Code 0xffffff8000912bb0 0x0000000000000100 0x000f0000 IOPMrootDomain::willNotifyPowerChildren(unsigned long) | |
| [ 1524] 1524 X Code 0xffffff8000913f20 0x00000000000004d0 0x000f0000 IOPMrootDomain::handleOurPowerChangeDone(IOService*, IOPMActions*, unsigned long, unsigned int, unsigned int) | |
| [ 1525] 1525 X Code 0xffffff800090bd90 0x0000000000000140 0x000f0000 IOPMrootDomain::handleQueueSleepWakeUUID(OSObject*) | |
| [ 1526] 1526 X Code 0xffffff8000906120 0x0000000000000020 0x000f0000 IOPMrootDomain::receivePowerNotification(unsigned int) | |
| [ 1527] 1527 X Code 0xffffff8000912d60 0x00000000000000f0 0x000f0000 IOPMrootDomain::setDisableClamShellSleep(bool) | |
| [ 1528] 1528 X Code 0xffffff80009160c0 0x0000000000000060 0x000f0000 IOPMrootDomain::setPMAssertionUserLevels(unsigned long long) | |
| [ 1529] 1529 X Code 0xffffff80009173d0 0x0000000000000020 0x000f0000 IOPMrootDomain::sleepWakeDebugEnableWdog() | |
| [ 1530] 1530 X Code 0xffffff8000906540 0x0000000000000220 0x000f0000 IOPMrootDomain::systemPowerEventOccurred(OSSymbol const*, OSObject*) | |
| [ 1531] 1531 X Code 0xffffff8000912430 0x0000000000000060 0x000f0000 IOPMrootDomain::systemPowerEventOccurred(OSSymbol const*, unsigned int) | |
| [ 1532] 1532 X Code 0xffffff800090eb80 0x00000000000001e0 0x000f0000 IOPMrootDomain::deregisterPMSettingObject(PMSettingObject*) | |
| [ 1533] 1533 X Code 0xffffff8000908520 0x00000000000007a0 0x000f0000 IOPMrootDomain::evaluateSystemSleepPolicy(IOPMSystemSleepParameters*, int, unsigned int*) | |
| [ 1534] 1534 X Code 0xffffff8000907cd0 0x0000000000000460 0x000f0000 IOPMrootDomain::handleAggressivesRequests() | |
| [ 1535] 1535 X Code 0xffffff8000913870 0x00000000000006b0 0x000f0000 IOPMrootDomain::handleOurPowerChangeStart(IOService*, IOPMActions*, unsigned long, unsigned int*, unsigned int) | |
| [ 1536] 1536 X Code 0xffffff8000910a80 0x0000000000000970 0x000f0000 IOPMrootDomain::handlePlatformHaltRestart(unsigned int) | |
| [ 1537] 1537 X Code 0xffffff8000911d90 0x00000000000000a0 0x000f0000 IOPMrootDomain::initializeBootSessionUUID() | |
| [ 1538] 1538 X Code 0xffffff800090b0c0 0x0000000000000260 0x000f0000 IOPMrootDomain::sleepWakeDebugDumpFromMem(IOMemoryMap*) | |
| [ 1539] 1539 X Code 0xffffff800090bed0 0x0000000000000110 0x000f0000 IOPMrootDomain::handlePublishSleepWakeUUID(bool) | |
| [ 1540] 1540 X Code 0xffffff800090d500 0x00000000000000f0 0x000f0000 IOPMrootDomain::handleSleepTimerExpiration() | |
| [ 1541] 1541 X Code 0xffffff8000915330 0x0000000000000180 0x000f0000 IOPMrootDomain::latchDisplayWranglerTickle(bool) | |
| [ 1542] 1542 X Code 0xffffff8000912060 0x0000000000000050 0x000f0000 IOPMrootDomain::restoreUserSpinDownTimeout() | |
| [ 1543] 1543 X Code 0xffffff8000915250 0x00000000000000e0 0x000f0000 IOPMrootDomain::setMaintenanceWakeCalendar(IOPMCalendarStruct const*) | |
| [ 1544] 1544 X Code 0xffffff800090b320 0x0000000000000720 0x000f0000 IOPMrootDomain::sleepWakeDebugDumpFromFile() | |
| [ 1545] 1545 X Code 0xffffff800090c2f0 0x0000000000000270 0x000f0000 IOPMrootDomain::updatePreventIdleSleepList(IOService*, bool) | |
| [ 1546] 1546 X Code 0xffffff800090a310 0x0000000000000160 0x000f0000 IOPMrootDomain::displayWranglerNotification(void*, void*, unsigned int, IOService*, void*, unsigned long) | |
| [ 1547] 1547 X Code 0xffffff8000912f60 0x0000000000000030 0x000f0000 IOPMrootDomain::registerPMSettingController(OSSymbol const**, int (*)(OSObject*, OSSymbol const*, OSObject*, unsigned long), OSObject*, unsigned long, OSObject**) | |
| [ 1548] 1548 X Code 0xffffff8000912f90 0x0000000000000190 0x000f0000 IOPMrootDomain::registerPMSettingController(OSSymbol const**, unsigned int, int (*)(OSObject*, OSSymbol const*, OSObject*, unsigned long), OSObject*, unsigned long, OSObject**) | |
| [ 1549] 1549 X Code 0xffffff8000911c20 0x0000000000000030 0x000f0000 IOPMrootDomain::sleepWakeDebugIsWdogEnabled() | |
| [ 1550] 1550 X Code 0xffffff8000914ce0 0x0000000000000070 0x000f0000 IOPMrootDomain::shouldDelayChildNotification(IOService*) | |
| [ 1551] 1551 X Code 0xffffff8000912cb0 0x00000000000000b0 0x000f0000 IOPMrootDomain::shouldSleepOnClamshellClosed() | |
| [ 1552] 1552 X Code 0xffffff8000912500 0x0000000000000260 0x000f0000 IOPMrootDomain::updatePreventSystemSleepList(IOService*, bool) | |
| [ 1553] 1553 X Code 0xffffff8000915e00 0x00000000000000a0 0x000f0000 IOPMrootDomain::acknowledgeSystemWillShutdown(IOService*) | |
| [ 1554] 1554 X Code 0xffffff8000912490 0x0000000000000070 0x000f0000 IOPMrootDomain::checkSystemCanSustainFullWake() | |
| [ 1555] 1555 X Code 0xffffff8000909be0 0x0000000000000030 0x000f0000 IOPMrootDomain::displayWranglerMatchPublished(void*, void*, IOService*, IONotifier*) | |
| [ 1556] 1556 X Code 0xffffff8000912930 0x00000000000000c0 0x000f0000 IOPMrootDomain::preventTransitionToUserActive(bool) | |
| [ 1557] 1557 X Code 0xffffff800090a470 0x0000000000000160 0x000f0000 IOPMrootDomain::evaluateSystemSleepPolicyEarly() | |
| [ 1558] 1558 X Code 0xffffff8000906370 0x00000000000001d0 0x000f0000 IOPMrootDomain::evaluateSystemSleepPolicyFinal() | |
| [ 1559] 1559 X Code 0xffffff80009173f0 0x0000000000000070 0x000f0000 IOPMrootDomain::sleepWakeDebugSaveSpinDumpFile() | |
| [ 1560] 1560 X Code 0xffffff80009171e0 0x00000000000000b0 0x000f0000 IOPMrootDomain::sleepWakeDebugSpinDumpMemAlloc() | |
| [ 1561] 1561 X Code 0xffffff8000914470 0x0000000000000380 0x000f0000 IOPMrootDomain::overridePowerChangeForUIService(IOService*, IOPMActions*, unsigned long*, unsigned int*) | |
| [ 1562] 1562 X Code 0xffffff800090d210 0x0000000000000200 0x000f0000 IOPMrootDomain::sendClientClamshellNotification() | |
| [ 1563] 1563 X Code 0xffffff8000915670 0x0000000000000450 0x000f0000 IOPMrootDomain::pmStatsRecordApplicationResponse(OSSymbol const*, char const*, int, unsigned int, unsigned long long, OSObject*, unsigned long) | |
| [ 1564] 1564 X Code 0xffffff8000914af0 0x0000000000000030 0x000f0000 IOPMrootDomain::handlePowerChangeDoneForPCIDevice(IOService*, IOPMActions*, unsigned long, unsigned int) | |
| [ 1565] 1565 X Code 0xffffff8000914ac0 0x0000000000000030 0x000f0000 IOPMrootDomain::handlePowerChangeStartForPCIDevice(IOService*, IOPMActions*, unsigned long, unsigned int*) | |
| [ 1566] 1566 X Code 0xffffff80009147f0 0x00000000000000e0 0x000f0000 IOPMrootDomain::handleActivityTickleForDisplayWrangler(IOService*, IOPMActions*) | |
| [ 1567] 1567 X Code 0xffffff80009148d0 0x00000000000000f0 0x000f0000 IOPMrootDomain::handleUpdatePowerClientForDisplayWrangler(IOService*, IOPMActions*, OSSymbol const*, unsigned long, unsigned long) | |
| [ 1568] 1568 X Code 0xffffff8000903ec0 0x0000000000000d70 0x000f0000 IOPMrootDomain::start(IOService*) | |
| [ 1569] 1569 X Code 0xffffff80009107c0 0x0000000000000040 0x000f0000 IOPMrootDomain::MetaClass::MetaClass() | |
| [ 1570] 1570 X Code 0xffffff8000910850 0x0000000000000040 0x000f0000 IOPMrootDomain::MetaClass::MetaClass() | |
| [ 1571] 1571 X Code 0xffffff8000911b70 0x0000000000000070 0x000f0000 IOPMrootDomain::construct() | |
| [ 1572] 1572 X Invalid 0xffffff8000b32ba8 0x0000000000000008 0x000f0000 IOPMrootDomain::metaClass | |
| [ 1573] 1573 X Code 0xffffff8000910820 0x0000000000000020 0x000f0000 IOPMrootDomain::IOPMrootDomain(OSMetaClass const*) | |
| [ 1574] 1574 X Code 0xffffff8000910890 0x0000000000000040 0x000f0000 IOPMrootDomain::IOPMrootDomain() | |
| [ 1575] 1575 X Code 0xffffff8000910800 0x0000000000000020 0x000f0000 IOPMrootDomain::IOPMrootDomain(OSMetaClass const*) | |
| [ 1576] 1576 X Code 0xffffff80009108d0 0x0000000000000040 0x000f0000 IOPMrootDomain::IOPMrootDomain() | |
| [ 1577] 1577 X Code 0xffffff8000902940 0x0000000000000040 0x000f0000 IOPMrootDomain::~IOPMrootDomain() | |
| [ 1578] 1578 X Code 0xffffff8000902930 0x0000000000000010 0x000f0000 IOPMrootDomain::~IOPMrootDomain() | |
| [ 1579] 1579 X Code 0xffffff8000910840 0x0000000000000010 0x000f0000 IOPMrootDomain::~IOPMrootDomain() | |
| [ 1580] 1580 X Data 0xffffff8000ac3810 0x0000000000000028 0x000f0000 IOReportLegend::gMetaClass | |
| [ 1581] 1581 X Invalid 0xffffff8000b30090 0x0000000000000008 0x000f0000 IOReportLegend::superClass | |
| [ 1582] 1582 X Code 0xffffff80008fbc80 0x0000000000000120 0x000f0000 IOReportLegend::addLegendEntry(OSDictionary*, char const*, char const*) | |
| [ 1583] 1583 X Code 0xffffff80008fbe30 0x00000000000000a0 0x000f0000 IOReportLegend::organizeLegend(OSDictionary*, OSSymbol const*, OSSymbol const*) | |
| [ 1584] 1584 X Code 0xffffff80008fbda0 0x0000000000000090 0x000f0000 IOReportLegend::addReporterLegend(IOReporter*, char const*, char const*) | |
| [ 1585] 1585 X Code 0xffffff80008fbad0 0x00000000000001b0 0x000f0000 IOReportLegend::addReporterLegend(IOService*, IOReporter*, char const*, char const*) | |
| [ 1586] 1586 X Code 0xffffff80008fb440 0x0000000000000040 0x000f0000 IOReportLegend::free() | |
| [ 1587] 1587 X Code 0xffffff80008fba00 0x0000000000000080 0x000f0000 IOReportLegend::with(OSArray*) | |
| [ 1588] 1588 X Code 0xffffff80008fba80 0x0000000000000040 0x000f0000 IOReportLegend::initWith(OSArray*) | |
| [ 1589] 1589 X Code 0xffffff80008fb8b0 0x0000000000000040 0x000f0000 IOReportLegend::MetaClass::MetaClass() | |
| [ 1590] 1590 X Code 0xffffff80008fb940 0x0000000000000040 0x000f0000 IOReportLegend::MetaClass::MetaClass() | |
| [ 1591] 1591 X Code 0xffffff80008fbac0 0x0000000000000010 0x000f0000 IOReportLegend::getLegend() | |
| [ 1592] 1592 X Invalid 0xffffff8000b30088 0x0000000000000008 0x000f0000 IOReportLegend::metaClass | |
| [ 1593] 1593 X Code 0xffffff80008fb910 0x0000000000000020 0x000f0000 IOReportLegend::IOReportLegend(OSMetaClass const*) | |
| [ 1594] 1594 X Code 0xffffff80008fb980 0x0000000000000040 0x000f0000 IOReportLegend::IOReportLegend() | |
| [ 1595] 1595 X Code 0xffffff80008fb8f0 0x0000000000000020 0x000f0000 IOReportLegend::IOReportLegend(OSMetaClass const*) | |
| [ 1596] 1596 X Code 0xffffff80008fb9c0 0x0000000000000040 0x000f0000 IOReportLegend::IOReportLegend() | |
| [ 1597] 1597 X Code 0xffffff80008fb3f0 0x0000000000000040 0x000f0000 IOReportLegend::~IOReportLegend() | |
| [ 1598] 1598 X Code 0xffffff80008fb3e0 0x0000000000000010 0x000f0000 IOReportLegend::~IOReportLegend() | |
| [ 1599] 1599 X Code 0xffffff80008fb930 0x0000000000000010 0x000f0000 IOReportLegend::~IOReportLegend() | |
| [ 1600] 1600 X Data 0xffffff8000ac3608 0x0000000000000028 0x000f0000 IOUserIterator::gMetaClass | |
| [ 1601] 1601 X Invalid 0xffffff8000b2cf88 0x0000000000000008 0x000f0000 IOUserIterator::superClass | |
| [ 1602] 1602 X Code 0xffffff80008e64c0 0x0000000000000090 0x000f0000 IOUserIterator::withIterator(OSIterator*) | |
| [ 1603] 1603 X Code 0xffffff80008e1620 0x0000000000000040 0x000f0000 IOUserIterator::getNextObject() | |
| [ 1604] 1604 X Code 0xffffff80008e1550 0x0000000000000060 0x000f0000 IOUserIterator::free() | |
| [ 1605] 1605 X Code 0xffffff80008e14f0 0x0000000000000060 0x000f0000 IOUserIterator::init() | |
| [ 1606] 1606 X Code 0xffffff80008e15b0 0x0000000000000030 0x000f0000 IOUserIterator::reset() | |
| [ 1607] 1607 X Code 0xffffff80008e15e0 0x0000000000000040 0x000f0000 IOUserIterator::isValid() | |
| [ 1608] 1608 X Code 0xffffff80008e6370 0x0000000000000040 0x000f0000 IOUserIterator::MetaClass::MetaClass() | |
| [ 1609] 1609 X Code 0xffffff80008e6400 0x0000000000000040 0x000f0000 IOUserIterator::MetaClass::MetaClass() | |
| [ 1610] 1610 X Invalid 0xffffff8000b2cf90 0x0000000000000008 0x000f0000 IOUserIterator::metaClass | |
| [ 1611] 1611 X Code 0xffffff80008e63d0 0x0000000000000020 0x000f0000 IOUserIterator::IOUserIterator(OSMetaClass const*) | |
| [ 1612] 1612 X Code 0xffffff80008e6440 0x0000000000000040 0x000f0000 IOUserIterator::IOUserIterator() | |
| [ 1613] 1613 X Code 0xffffff80008e63b0 0x0000000000000020 0x000f0000 IOUserIterator::IOUserIterator(OSMetaClass const*) | |
| [ 1614] 1614 X Code 0xffffff80008e6480 0x0000000000000040 0x000f0000 IOUserIterator::IOUserIterator() | |
| [ 1615] 1615 X Code 0xffffff80008e14a0 0x0000000000000040 0x000f0000 IOUserIterator::~IOUserIterator() | |
| [ 1616] 1616 X Code 0xffffff80008e1490 0x0000000000000010 0x000f0000 IOUserIterator::~IOUserIterator() | |
| [ 1617] 1617 X Code 0xffffff80008e63f0 0x0000000000000010 0x000f0000 IOUserIterator::~IOUserIterator() | |
| [ 1618] 1618 X Data 0xffffff8000ac2878 0x0000000000000028 0x000f0000 IOConditionLock::gMetaClass | |
| [ 1619] 1619 X Invalid 0xffffff8000b1b898 0x0000000000000008 0x000f0000 IOConditionLock::superClass | |
| [ 1620] 1620 X Code 0xffffff80008844e0 0x0000000000000050 0x000f0000 IOConditionLock::unlockWith(int) | |
| [ 1621] 1621 X Code 0xffffff8000884430 0x0000000000000030 0x000f0000 IOConditionLock::setCondition(int) | |
| [ 1622] 1622 X Code 0xffffff8000884ab0 0x0000000000000090 0x000f0000 IOConditionLock::withCondition(int, bool) | |
| [ 1623] 1623 X Code 0xffffff8000884240 0x00000000000000d0 0x000f0000 IOConditionLock::initWithCondition(int, bool) | |
| [ 1624] 1624 X Code 0xffffff80008841e0 0x0000000000000060 0x000f0000 IOConditionLock::free() | |
| [ 1625] 1625 X Code 0xffffff8000884350 0x0000000000000070 0x000f0000 IOConditionLock::lock() | |
| [ 1626] 1626 X Code 0xffffff80008843c0 0x0000000000000050 0x000f0000 IOConditionLock::unlock() | |
| [ 1627] 1627 X Code 0xffffff8000884310 0x0000000000000040 0x000f0000 IOConditionLock::tryLock() | |
| [ 1628] 1628 X Code 0xffffff8000884460 0x0000000000000080 0x000f0000 IOConditionLock::lockWhen(int) | |
| [ 1629] 1629 X Code 0xffffff8000884960 0x0000000000000040 0x000f0000 IOConditionLock::MetaClass::MetaClass() | |
| [ 1630] 1630 X Code 0xffffff80008849f0 0x0000000000000040 0x000f0000 IOConditionLock::MetaClass::MetaClass() | |
| [ 1631] 1631 X Invalid 0xffffff8000b1b890 0x0000000000000008 0x000f0000 IOConditionLock::metaClass | |
| [ 1632] 1632 X Code 0xffffff80008849c0 0x0000000000000020 0x000f0000 IOConditionLock::IOConditionLock(OSMetaClass const*) | |
| [ 1633] 1633 X Code 0xffffff8000884a30 0x0000000000000040 0x000f0000 IOConditionLock::IOConditionLock() | |
| [ 1634] 1634 X Code 0xffffff80008849a0 0x0000000000000020 0x000f0000 IOConditionLock::IOConditionLock(OSMetaClass const*) | |
| [ 1635] 1635 X Code 0xffffff8000884a70 0x0000000000000040 0x000f0000 IOConditionLock::IOConditionLock() | |
| [ 1636] 1636 X Code 0xffffff8000884190 0x0000000000000040 0x000f0000 IOConditionLock::~IOConditionLock() | |
| [ 1637] 1637 X Code 0xffffff8000884180 0x0000000000000010 0x000f0000 IOConditionLock::~IOConditionLock() | |
| [ 1638] 1638 X Code 0xffffff80008849e0 0x0000000000000010 0x000f0000 IOConditionLock::~IOConditionLock() | |
| [ 1639] 1639 X Data 0xffffff8000ac34b8 0x0000000000000028 0x000f0000 IODMAController::gMetaClass | |
| [ 1640] 1640 X Invalid 0xffffff8000b2b020 0x0000000000000008 0x000f0000 IODMAController::superClass | |
| [ 1641] 1641 X Code 0xffffff80008df0a0 0x00000000000001b0 0x000f0000 IODMAController::getController(IOService*, unsigned int) | |
| [ 1642] 1642 X Code 0xffffff80008deb80 0x0000000000000020 0x000f0000 IODMAController::notifyDMACommand(IODMAEventSource*, IODMACommand*, int, unsigned long long, unsigned long long) | |
| [ 1643] 1643 X Code 0xffffff80008deb60 0x0000000000000020 0x000f0000 IODMAController::completeDMACommand(IODMAEventSource*, IODMACommand*) | |
| [ 1644] 1644 X Code 0xffffff80008df040 0x0000000000000060 0x000f0000 IODMAController::createControllerName(unsigned int) | |
| [ 1645] 1645 X Code 0xffffff80008dea70 0x00000000000000f0 0x000f0000 IODMAController::registerDMAController(unsigned int) | |
| [ 1646] 1646 X Code 0xffffff80008dea60 0x0000000000000010 0x000f0000 IODMAController::start(IOService*) | |
| [ 1647] 1647 X Code 0xffffff80008def90 0x0000000000000040 0x000f0000 IODMAController::MetaClass::MetaClass() | |
| [ 1648] 1648 X Code 0xffffff80008df000 0x0000000000000040 0x000f0000 IODMAController::MetaClass::MetaClass() | |
| [ 1649] 1649 X Invalid 0xffffff8000b2b018 0x0000000000000008 0x000f0000 IODMAController::metaClass | |
| [ 1650] 1650 X Code 0xffffff80008defd0 0x0000000000000020 0x000f0000 IODMAController::IODMAController(OSMetaClass const*) | |
| [ 1651] 1651 X Code 0xffffff80008dea10 0x0000000000000040 0x000f0000 IODMAController::~IODMAController() | |
| [ 1652] 1652 X Code 0xffffff80008dea00 0x0000000000000010 0x000f0000 IODMAController::~IODMAController() | |
| [ 1653] 1653 X Code 0xffffff80008deff0 0x0000000000000010 0x000f0000 IODMAController::~IODMAController() | |
| [ 1654] 1654 X Code 0xffffff80008b6b80 0x0000000000000070 0x000f0000 IOPMPowerSource::cycleCount() | |
| [ 1655] 1655 X Data 0xffffff8000ac2ee8 0x0000000000000028 0x000f0000 IOPMPowerSource::gMetaClass | |
| [ 1656] 1656 X Code 0xffffff80008b67a0 0x0000000000000040 0x000f0000 IOPMPowerSource::isCharging() | |
| [ 1657] 1657 X Code 0xffffff80008b61f0 0x0000000000000090 0x000f0000 IOPMPowerSource::setVoltage(unsigned int) | |
| [ 1658] 1658 X Invalid 0xffffff8000b201c8 0x0000000000000008 0x000f0000 IOPMPowerSource::superClass | |
| [ 1659] 1659 X Code 0xffffff80008b6bf0 0x0000000000000070 0x000f0000 IOPMPowerSource::adapterInfo() | |
| [ 1660] 1660 X Code 0xffffff80008b67e0 0x0000000000000040 0x000f0000 IOPMPowerSource::atWarnLevel() | |
| [ 1661] 1661 X Code 0xffffff80008b68d0 0x0000000000000070 0x000f0000 IOPMPowerSource::maxCapacity() | |
| [ 1662] 1662 X Code 0xffffff80008b5b00 0x0000000000000070 0x000f0000 IOPMPowerSource::powerSource() | |
| [ 1663] 1663 X Code 0xffffff80008b6160 0x0000000000000090 0x000f0000 IOPMPowerSource::setAmperage(int) | |
| [ 1664] 1664 X Code 0xffffff80008b63a0 0x0000000000000090 0x000f0000 IOPMPowerSource::setLocation(int) | |
| [ 1665] 1665 X Code 0xffffff80008b6d30 0x0000000000000060 0x000f0000 IOPMPowerSource::manufacturer() | |
| [ 1666] 1666 X Code 0xffffff80008b5490 0x00000000000000f0 0x000f0000 IOPMPowerSource::updateStatus() | |
| [ 1667] 1667 X Code 0xffffff80008b66b0 0x0000000000000030 0x000f0000 IOPMPowerSource::getPSProperty(OSSymbol const*) | |
| [ 1668] 1668 X Code 0xffffff80008b6280 0x0000000000000090 0x000f0000 IOPMPowerSource::setCycleCount(unsigned int) | |
| [ 1669] 1669 X Code 0xffffff80008b5dd0 0x00000000000000a0 0x000f0000 IOPMPowerSource::setIsCharging(bool) | |
| [ 1670] 1670 X Code 0xffffff80008b5b70 0x0000000000000080 0x000f0000 IOPMPowerSource::setPSProperty(OSSymbol const*, OSObject*) | |
| [ 1671] 1671 X Code 0xffffff80008b6a30 0x0000000000000070 0x000f0000 IOPMPowerSource::timeRemaining() | |
| [ 1672] 1672 X Code 0xffffff80008b6cd0 0x0000000000000060 0x000f0000 IOPMPowerSource::errorCondition() | |
| [ 1673] 1673 X Code 0xffffff80008b6310 0x0000000000000090 0x000f0000 IOPMPowerSource::setAdapterInfo(int) | |
| [ 1674] 1674 X Code 0xffffff80008b5e70 0x00000000000000a0 0x000f0000 IOPMPowerSource::setAtWarnLevel(bool) | |
| [ 1675] 1675 X Code 0xffffff80008b6040 0x0000000000000090 0x000f0000 IOPMPowerSource::setMaxCapacity(unsigned int) | |
| [ 1676] 1676 X Code 0xffffff80008b6820 0x0000000000000040 0x000f0000 IOPMPowerSource::atCriticalLevel() | |
| [ 1677] 1677 X Code 0xffffff80008b6860 0x0000000000000070 0x000f0000 IOPMPowerSource::currentCapacity() | |
| [ 1678] 1678 X Code 0xffffff80008b64b0 0x0000000000000080 0x000f0000 IOPMPowerSource::setManufacturer(OSSymbol*) | |
| [ 1679] 1679 X Code 0xffffff80008b6760 0x0000000000000040 0x000f0000 IOPMPowerSource::batteryInstalled() | |
| [ 1680] 1680 X Code 0xffffff80008b60d0 0x0000000000000090 0x000f0000 IOPMPowerSource::setTimeRemaining(int) | |
| [ 1681] 1681 X Code 0xffffff80008b66e0 0x0000000000000040 0x000f0000 IOPMPowerSource::externalConnected() | |
| [ 1682] 1682 X Code 0xffffff80008b6430 0x0000000000000080 0x000f0000 IOPMPowerSource::setErrorCondition(OSSymbol*) | |
| [ 1683] 1683 X Code 0xffffff80008b5f10 0x00000000000000a0 0x000f0000 IOPMPowerSource::setAtCriticalLevel(bool) | |
| [ 1684] 1684 X Code 0xffffff80008b5fb0 0x0000000000000090 0x000f0000 IOPMPowerSource::setCurrentCapacity(unsigned int) | |
| [ 1685] 1685 X Code 0xffffff80008b6e50 0x0000000000000060 0x000f0000 IOPMPowerSource::legacyIOBatteryInfo() | |
| [ 1686] 1686 X Code 0xffffff80008b5d30 0x00000000000000a0 0x000f0000 IOPMPowerSource::setBatteryInstalled(bool) | |
| [ 1687] 1687 X Code 0xffffff80008b5bf0 0x00000000000000a0 0x000f0000 IOPMPowerSource::setExternalConnected(bool) | |
| [ 1688] 1688 X Code 0xffffff80008b6720 0x0000000000000040 0x000f0000 IOPMPowerSource::externalChargeCapable() | |
| [ 1689] 1689 X Code 0xffffff80008b6630 0x0000000000000080 0x000f0000 IOPMPowerSource::setLegacyIOBatteryInfo(OSDictionary*) | |
| [ 1690] 1690 X Code 0xffffff80008b6940 0x00000000000000f0 0x000f0000 IOPMPowerSource::capacityPercentRemaining() | |
| [ 1691] 1691 X Code 0xffffff80008b5c90 0x00000000000000a0 0x000f0000 IOPMPowerSource::setExternalChargeCapable(bool) | |
| [ 1692] 1692 X Code 0xffffff80008b5310 0x0000000000000180 0x000f0000 IOPMPowerSource::free() | |
| [ 1693] 1693 X Code 0xffffff80008b5140 0x00000000000001d0 0x000f0000 IOPMPowerSource::init() | |
| [ 1694] 1694 X Code 0xffffff80008b6d90 0x0000000000000060 0x000f0000 IOPMPowerSource::model() | |
| [ 1695] 1695 X Code 0xffffff80008b6df0 0x0000000000000060 0x000f0000 IOPMPowerSource::serial() | |
| [ 1696] 1696 X Code 0xffffff80008b6b10 0x0000000000000070 0x000f0000 IOPMPowerSource::voltage() | |
| [ 1697] 1697 X Code 0xffffff80008b6aa0 0x0000000000000070 0x000f0000 IOPMPowerSource::amperage() | |
| [ 1698] 1698 X Code 0xffffff80008b6c60 0x0000000000000070 0x000f0000 IOPMPowerSource::location() | |
| [ 1699] 1699 X Code 0xffffff80008b6530 0x0000000000000080 0x000f0000 IOPMPowerSource::setModel(OSSymbol*) | |
| [ 1700] 1700 X Code 0xffffff80008b59b0 0x0000000000000040 0x000f0000 IOPMPowerSource::MetaClass::MetaClass() | |
| [ 1701] 1701 X Code 0xffffff80008b5a40 0x0000000000000040 0x000f0000 IOPMPowerSource::MetaClass::MetaClass() | |
| [ 1702] 1702 X Invalid 0xffffff8000b201c0 0x0000000000000008 0x000f0000 IOPMPowerSource::metaClass | |
| [ 1703] 1703 X Code 0xffffff80008b65b0 0x0000000000000080 0x000f0000 IOPMPowerSource::setSerial(OSSymbol*) | |
| [ 1704] 1704 X Code 0xffffff80008b5a10 0x0000000000000020 0x000f0000 IOPMPowerSource::IOPMPowerSource(OSMetaClass const*) | |
| [ 1705] 1705 X Code 0xffffff80008b5a80 0x0000000000000040 0x000f0000 IOPMPowerSource::IOPMPowerSource() | |
| [ 1706] 1706 X Code 0xffffff80008b59f0 0x0000000000000020 0x000f0000 IOPMPowerSource::IOPMPowerSource(OSMetaClass const*) | |
| [ 1707] 1707 X Code 0xffffff80008b5ac0 0x0000000000000040 0x000f0000 IOPMPowerSource::IOPMPowerSource() | |
| [ 1708] 1708 X Code 0xffffff80008b50f0 0x0000000000000040 0x000f0000 IOPMPowerSource::~IOPMPowerSource() | |
| [ 1709] 1709 X Code 0xffffff80008b50e0 0x0000000000000010 0x000f0000 IOPMPowerSource::~IOPMPowerSource() | |
| [ 1710] 1710 X Code 0xffffff80008b5a30 0x0000000000000010 0x000f0000 IOPMPowerSource::~IOPMPowerSource() | |
| [ 1711] 1711 X Data 0xffffff8000ac3360 0x0000000000000028 0x000f0000 IOPanicPlatform::gMetaClass | |
| [ 1712] 1712 X Invalid 0xffffff8000b26768 0x0000000000000008 0x000f0000 IOPanicPlatform::superClass | |
| [ 1713] 1713 X Code 0xffffff80008d6d80 0x0000000000000040 0x000f0000 IOPanicPlatform::start(IOService*) | |
| [ 1714] 1714 X Code 0xffffff80008d8ac0 0x0000000000000040 0x000f0000 IOPanicPlatform::MetaClass::MetaClass() | |
| [ 1715] 1715 X Code 0xffffff80008d8b50 0x0000000000000040 0x000f0000 IOPanicPlatform::MetaClass::MetaClass() | |
| [ 1716] 1716 X Invalid 0xffffff8000b26770 0x0000000000000008 0x000f0000 IOPanicPlatform::metaClass | |
| [ 1717] 1717 X Code 0xffffff80008d8b20 0x0000000000000020 0x000f0000 IOPanicPlatform::IOPanicPlatform(OSMetaClass const*) | |
| [ 1718] 1718 X Code 0xffffff80008d8b90 0x0000000000000040 0x000f0000 IOPanicPlatform::IOPanicPlatform() | |
| [ 1719] 1719 X Code 0xffffff80008d8b00 0x0000000000000020 0x000f0000 IOPanicPlatform::IOPanicPlatform(OSMetaClass const*) | |
| [ 1720] 1720 X Code 0xffffff80008d8bd0 0x0000000000000040 0x000f0000 IOPanicPlatform::IOPanicPlatform() | |
| [ 1721] 1721 X Code 0xffffff80008d6d30 0x0000000000000040 0x000f0000 IOPanicPlatform::~IOPanicPlatform() | |
| [ 1722] 1722 X Code 0xffffff80008d6d20 0x0000000000000010 0x000f0000 IOPanicPlatform::~IOPanicPlatform() | |
| [ 1723] 1723 X Code 0xffffff80008d8b40 0x0000000000000010 0x000f0000 IOPanicPlatform::~IOPanicPlatform() | |
| [ 1724] 1724 X Data 0xffffff8000ac2948 0x0000000000000028 0x000f0000 IORegistryEntry::gMetaClass | |
| [ 1725] 1725 X Code 0xffffff800088d570 0x00000000000002d0 0x000f0000 IORegistryEntry::initialize() | |
| [ 1726] 1726 X Invalid 0xffffff8000b1bb08 0x0000000000000008 0x000f0000 IORegistryEntry::superClass | |
| [ 1727] 1727 X Code 0xffffff800088bb80 0x0000000000000150 0x000f0000 IORegistryEntry::dealiasPath(char const**, IORegistryPlane const*) | |
| [ 1728] 1728 X Code 0xffffff800088a670 0x0000000000000070 0x000f0000 IORegistryEntry::detachAbove(IORegistryPlane const*) | |
| [ 1729] 1729 X Code 0xffffff800088ad20 0x0000000000000070 0x000f0000 IORegistryEntry::setLocation(OSSymbol const*, IORegistryPlane const*) | |
| [ 1730] 1730 X Code 0xffffff800088ad90 0x0000000000000050 0x000f0000 IORegistryEntry::setLocation(char const*, IORegistryPlane const*) | |
| [ 1731] 1731 X Code 0xffffff8000888e20 0x0000000000000050 0x000f0000 IORegistryEntry::setProperty(OSString const*, OSObject*) | |
| [ 1732] 1732 X Code 0xffffff8000888ce0 0x0000000000000140 0x000f0000 IORegistryEntry::setProperty(OSSymbol const*, OSObject*) | |
| [ 1733] 1733 X Code 0xffffff8000888e70 0x0000000000000050 0x000f0000 IORegistryEntry::setProperty(char const*, OSObject*) | |
| [ 1734] 1734 X Code 0xffffff8000889010 0x0000000000000070 0x000f0000 IORegistryEntry::setProperty(char const*, void*, unsigned int) | |
| [ 1735] 1735 X Code 0xffffff8000888ec0 0x0000000000000070 0x000f0000 IORegistryEntry::setProperty(char const*, char const*) | |
| [ 1736] 1736 X Code 0xffffff8000888f30 0x0000000000000070 0x000f0000 IORegistryEntry::setProperty(char const*, bool) | |
| [ 1737] 1737 X Code 0xffffff8000888fa0 0x0000000000000070 0x000f0000 IORegistryEntry::setProperty(char const*, unsigned long long, unsigned int) | |
| [ 1738] 1738 X Code 0xffffff800088a410 0x0000000000000110 0x000f0000 IORegistryEntry::attachToChild(IORegistryEntry*, IORegistryPlane const*) | |
| [ 1739] 1739 X Code 0xffffff800088b350 0x0000000000000020 0x000f0000 IORegistryEntry::childFromPath(char const*, IORegistryPlane const*, char*, int*) | |
| [ 1740] 1740 X Code 0xffffff8000889770 0x0000000000000010 0x000f0000 IORegistryEntry::setProperties(OSObject*) | |
| [ 1741] 1741 X Code 0xffffff800088a000 0x00000000000002c0 0x000f0000 IORegistryEntry::attachToParent(IORegistryEntry*, IORegistryPlane const*) | |
| [ 1742] 1742 X Code 0xffffff8000889110 0x0000000000000040 0x000f0000 IORegistryEntry::removeProperty(OSString const*) | |
| [ 1743] 1743 X Code 0xffffff8000889080 0x0000000000000090 0x000f0000 IORegistryEntry::removeProperty(OSSymbol const*) | |
| [ 1744] 1744 X Code 0xffffff8000889150 0x0000000000000040 0x000f0000 IORegistryEntry::removeProperty(char const*) | |
| [ 1745] 1745 X Code 0xffffff800088a520 0x0000000000000150 0x000f0000 IORegistryEntry::detachFromChild(IORegistryEntry*, IORegistryPlane const*) | |
| [ 1746] 1746 X Code 0xffffff800088d840 0x0000000000000010 0x000f0000 IORegistryEntry::getRegistryRoot() | |
| [ 1747] 1747 X Code 0xffffff800088a2c0 0x0000000000000150 0x000f0000 IORegistryEntry::detachFromParent(IORegistryEntry*, IORegistryPlane const*) | |
| [ 1748] 1748 X Code 0xffffff8000888ca0 0x0000000000000040 0x000f0000 IORegistryEntry::setPropertyTable(OSDictionary*) | |
| [ 1749] 1749 X Code 0xffffff800088be60 0x0000000000000110 0x000f0000 IORegistryEntry::matchPathLocation(char const*, IORegistryPlane const*) | |
| [ 1750] 1750 X Code 0xffffff8000888400 0x00000000000000b0 0x000f0000 IORegistryEntry::runPropertyAction(int (*)(OSObject*, void*, void*, void*, void*), OSObject*, void*, void*, void*, void*) | |
| [ 1751] 1751 X Code 0xffffff800088d850 0x0000000000000010 0x000f0000 IORegistryEntry::getGenerationCount() | |
| [ 1752] 1752 X Code 0xffffff800088dcc0 0x0000000000000020 0x000f0000 IORegistryEntry::getRegistryEntryID() | |
| [ 1753] 1753 X Code 0xffffff800088bcd0 0x0000000000000190 0x000f0000 IORegistryEntry::getChildFromComponent(char const**, IORegistryPlane const*) | |
| [ 1754] 1754 X Code 0xffffff80008884b0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry0() | |
| [ 1755] 1755 X Code 0xffffff80008884e0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry1() | |
| [ 1756] 1756 X Code 0xffffff8000888510 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry2() | |
| [ 1757] 1757 X Code 0xffffff8000888540 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry3() | |
| [ 1758] 1758 X Code 0xffffff8000888570 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry4() | |
| [ 1759] 1759 X Code 0xffffff80008885a0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry5() | |
| [ 1760] 1760 X Code 0xffffff80008885d0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry6() | |
| [ 1761] 1761 X Code 0xffffff8000888600 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry7() | |
| [ 1762] 1762 X Code 0xffffff8000888630 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry8() | |
| [ 1763] 1763 X Code 0xffffff8000888660 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry9() | |
| [ 1764] 1764 X Code 0xffffff8000888690 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry10() | |
| [ 1765] 1765 X Code 0xffffff80008886c0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry11() | |
| [ 1766] 1766 X Code 0xffffff80008886f0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry12() | |
| [ 1767] 1767 X Code 0xffffff8000888720 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry13() | |
| [ 1768] 1768 X Code 0xffffff8000888750 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry14() | |
| [ 1769] 1769 X Code 0xffffff8000888780 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry15() | |
| [ 1770] 1770 X Code 0xffffff80008887b0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry16() | |
| [ 1771] 1771 X Code 0xffffff80008887e0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry17() | |
| [ 1772] 1772 X Code 0xffffff8000888810 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry18() | |
| [ 1773] 1773 X Code 0xffffff8000888840 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry19() | |
| [ 1774] 1774 X Code 0xffffff8000888870 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry20() | |
| [ 1775] 1775 X Code 0xffffff80008888a0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry21() | |
| [ 1776] 1776 X Code 0xffffff80008888d0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry22() | |
| [ 1777] 1777 X Code 0xffffff8000888900 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry23() | |
| [ 1778] 1778 X Code 0xffffff8000888930 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry24() | |
| [ 1779] 1779 X Code 0xffffff8000888960 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry25() | |
| [ 1780] 1780 X Code 0xffffff8000888990 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry26() | |
| [ 1781] 1781 X Code 0xffffff80008889c0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry27() | |
| [ 1782] 1782 X Code 0xffffff80008889f0 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry28() | |
| [ 1783] 1783 X Code 0xffffff8000888a20 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry29() | |
| [ 1784] 1784 X Code 0xffffff8000888a50 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry30() | |
| [ 1785] 1785 X Code 0xffffff8000888a80 0x0000000000000030 0x000f0000 IORegistryEntry::_RESERVEDIORegistryEntry31() | |
| [ 1786] 1786 X Code 0xffffff8000888050 0x00000000000000f0 0x000f0000 IORegistryEntry::free() | |
| [ 1787] 1787 X Code 0xffffff8000888ab0 0x00000000000001f0 0x000f0000 IORegistryEntry::init(OSDictionary*) | |
| [ 1788] 1788 X Code 0xffffff800088b370 0x0000000000000360 0x000f0000 IORegistryEntry::init(IORegistryEntry*, IORegistryPlane const*) | |
| [ 1789] 1789 X Code 0xffffff800088ab10 0x0000000000000100 0x000f0000 IORegistryEntry::setName(OSSymbol const*, IORegistryPlane const*) | |
| [ 1790] 1790 X Code 0xffffff800088ac10 0x0000000000000050 0x000f0000 IORegistryEntry::setName(char const*, IORegistryPlane const*) | |
| [ 1791] 1791 X Code 0xffffff800088b7d0 0x00000000000003b0 0x000f0000 IORegistryEntry::fromPath(char const*, IORegistryPlane const*, char*, int*, IORegistryEntry*) | |
| [ 1792] 1792 X Code 0xffffff800088daf0 0x0000000000000040 0x000f0000 IORegistryEntry::getPlane(char const*) | |
| [ 1793] 1793 X Code 0xffffff800088d2d0 0x0000000000000040 0x000f0000 IORegistryEntry::MetaClass::MetaClass() | |
| [ 1794] 1794 X Code 0xffffff800088d360 0x0000000000000040 0x000f0000 IORegistryEntry::MetaClass::MetaClass() | |
| [ 1795] 1795 X Code 0xffffff800088a6e0 0x0000000000000160 0x000f0000 IORegistryEntry::detachAll(IORegistryPlane const*) | |
| [ 1796] 1796 X Code 0xffffff800088d870 0x0000000000000280 0x000f0000 IORegistryEntry::makePlane(char const*) | |
| [ 1797] 1797 X Invalid 0xffffff8000b1bb00 0x0000000000000008 0x000f0000 IORegistryEntry::metaClass | |
| [ 1798] 1798 X Code 0xffffff800088d330 0x0000000000000020 0x000f0000 IORegistryEntry::IORegistryEntry(OSMetaClass const*) | |
| [ 1799] 1799 X Code 0xffffff800088d3a0 0x0000000000000040 0x000f0000 IORegistryEntry::IORegistryEntry() | |
| [ 1800] 1800 X Code 0xffffff800088d310 0x0000000000000020 0x000f0000 IORegistryEntry::IORegistryEntry(OSMetaClass const*) | |
| [ 1801] 1801 X Code 0xffffff800088d3e0 0x0000000000000040 0x000f0000 IORegistryEntry::IORegistryEntry() | |
| [ 1802] 1802 X Code 0xffffff8000888000 0x0000000000000040 0x000f0000 IORegistryEntry::~IORegistryEntry() | |
| [ 1803] 1803 X Code 0xffffff8000887ff0 0x0000000000000010 0x000f0000 IORegistryEntry::~IORegistryEntry() | |
| [ 1804] 1804 X Code 0xffffff800088d350 0x0000000000000010 0x000f0000 IORegistryEntry::~IORegistryEntry() | |
| [ 1805] 1805 X Data 0xffffff8000ac29c0 0x0000000000000028 0x000f0000 IORegistryPlane::gMetaClass | |
| [ 1806] 1806 X Invalid 0xffffff8000b1bf30 0x0000000000000008 0x000f0000 IORegistryPlane::superClass | |
| [ 1807] 1807 X Code 0xffffff800088d420 0x0000000000000040 0x000f0000 IORegistryPlane::MetaClass::MetaClass() | |
| [ 1808] 1808 X Code 0xffffff800088d4b0 0x0000000000000040 0x000f0000 IORegistryPlane::MetaClass::MetaClass() | |
| [ 1809] 1809 X Invalid 0xffffff8000b1bf38 0x0000000000000008 0x000f0000 IORegistryPlane::metaClass | |
| [ 1810] 1810 X Code 0xffffff800088d480 0x0000000000000020 0x000f0000 IORegistryPlane::IORegistryPlane(OSMetaClass const*) | |
| [ 1811] 1811 X Code 0xffffff800088d4f0 0x0000000000000040 0x000f0000 IORegistryPlane::IORegistryPlane() | |
| [ 1812] 1812 X Code 0xffffff800088d460 0x0000000000000020 0x000f0000 IORegistryPlane::IORegistryPlane(OSMetaClass const*) | |
| [ 1813] 1813 X Code 0xffffff800088d530 0x0000000000000040 0x000f0000 IORegistryPlane::IORegistryPlane() | |
| [ 1814] 1814 X Code 0xffffff800088c8e0 0x0000000000000040 0x000f0000 IORegistryPlane::~IORegistryPlane() | |
| [ 1815] 1815 X Code 0xffffff800088c8d0 0x0000000000000010 0x000f0000 IORegistryPlane::~IORegistryPlane() | |
| [ 1816] 1816 X Code 0xffffff800088d4a0 0x0000000000000010 0x000f0000 IORegistryPlane::~IORegistryPlane() | |
| [ 1817] 1817 X Data 0xffffff8000ac38c0 0x0000000000000028 0x000f0000 IOSKMemoryArray::gMetaClass | |
| [ 1818] 1818 X Invalid 0xffffff8000b32010 0x0000000000000008 0x000f0000 IOSKMemoryArray::superClass | |
| [ 1819] 1819 X Code 0xffffff8000900a40 0x0000000000000010 0x000f0000 IOSKMemoryArray::__OSFinalClass() | |
| [ 1820] 1820 X Code 0xffffff8000900a50 0x0000000000000220 0x000f0000 IOSKMemoryArray::overwriteMappingInTask(task*, unsigned long long*, unsigned int) | |
| [ 1821] 1821 X Code 0xffffff80009008f0 0x0000000000000040 0x000f0000 IOSKMemoryArray::MetaClass::MetaClass() | |
| [ 1822] 1822 X Code 0xffffff8000900980 0x0000000000000040 0x000f0000 IOSKMemoryArray::MetaClass::MetaClass() | |
| [ 1823] 1823 X Invalid 0xffffff8000b32008 0x0000000000000008 0x000f0000 IOSKMemoryArray::metaClass | |
| [ 1824] 1824 X Code 0xffffff8000900950 0x0000000000000020 0x000f0000 IOSKMemoryArray::IOSKMemoryArray(OSMetaClass const*) | |
| [ 1825] 1825 X Code 0xffffff80009009c0 0x0000000000000040 0x000f0000 IOSKMemoryArray::IOSKMemoryArray() | |
| [ 1826] 1826 X Code 0xffffff8000900930 0x0000000000000020 0x000f0000 IOSKMemoryArray::IOSKMemoryArray(OSMetaClass const*) | |
| [ 1827] 1827 X Code 0xffffff8000900a00 0x0000000000000040 0x000f0000 IOSKMemoryArray::IOSKMemoryArray() | |
| [ 1828] 1828 X Code 0xffffff8000900020 0x0000000000000040 0x000f0000 IOSKMemoryArray::~IOSKMemoryArray() | |
| [ 1829] 1829 X Code 0xffffff8000900010 0x0000000000000010 0x000f0000 IOSKMemoryArray::~IOSKMemoryArray() | |
| [ 1830] 1830 X Code 0xffffff8000900970 0x0000000000000010 0x000f0000 IOSKMemoryArray::~IOSKMemoryArray() | |
| [ 1831] 1831 X Data 0xffffff8000ac37c0 0x0000000000000028 0x000f0000 IOStateReporter::gMetaClass | |
| [ 1832] 1832 X Code 0xffffff80008fa0d0 0x0000000000000080 0x000f0000 IOStateReporter::setStateID(unsigned long long, int, unsigned long long) | |
| [ 1833] 1833 X Invalid 0xffffff8000b2fb30 0x0000000000000008 0x000f0000 IOStateReporter::superClass | |
| [ 1834] 1834 X Code 0xffffff80008fa260 0x0000000000000110 0x000f0000 IOStateReporter::_getStateValue(unsigned long long, unsigned long long, IOStateReporter::valueSelector) | |
| [ 1835] 1835 X Code 0xffffff80008f9c40 0x00000000000000e0 0x000f0000 IOStateReporter::setChannelState(unsigned long long, unsigned long long) | |
| [ 1836] 1836 X Code 0xffffff80008f9d20 0x0000000000000010 0x000f0000 IOStateReporter::setChannelState(unsigned long long, unsigned long long, unsigned long long, unsigned long long) | |
| [ 1837] 1837 X Code 0xffffff80008f9b80 0x00000000000000c0 0x000f0000 IOStateReporter::_getStateIndices(unsigned long long, unsigned long long, int*, int*) | |
| [ 1838] 1838 X Code 0xffffff80008f9350 0x00000000000000d0 0x000f0000 IOStateReporter::handleSetStateID(unsigned long long, int, unsigned long long) | |
| [ 1839] 1839 X Code 0xffffff80008f8ed0 0x0000000000000130 0x000f0000 IOStateReporter::handleSwapCleanup(int) | |
| [ 1840] 1840 X Code 0xffffff80008f8ad0 0x00000000000001c0 0x000f0000 IOStateReporter::handleSwapPrepare(int) | |
| [ 1841] 1841 X Code 0xffffff80008fa150 0x0000000000000080 0x000f0000 IOStateReporter::setStateByIndices(int, int) | |
| [ 1842] 1842 X Code 0xffffff80008fa1d0 0x0000000000000080 0x000f0000 IOStateReporter::setStateByIndices(int, int, unsigned long long, unsigned long long) | |
| [ 1843] 1843 X Code 0xffffff80008f9000 0x0000000000000100 0x000f0000 IOStateReporter::updateChannelValues(int) | |
| [ 1844] 1844 X Code 0xffffff80008f8c90 0x0000000000000240 0x000f0000 IOStateReporter::handleAddChannelSwap(unsigned long long, OSSymbol const*) | |
| [ 1845] 1845 X Code 0xffffff80008f9d30 0x0000000000000110 0x000f0000 IOStateReporter::overrideChannelState(unsigned long long, unsigned long long, unsigned long long, unsigned long long, unsigned long long) | |
| [ 1846] 1846 X Code 0xffffff80008fa250 0x0000000000000010 0x000f0000 IOStateReporter::getStateInTransitions(unsigned long long, unsigned long long) | |
| [ 1847] 1847 X Code 0xffffff80008fa370 0x0000000000000010 0x000f0000 IOStateReporter::getStateResidencyTime(unsigned long long, unsigned long long) | |
| [ 1848] 1848 X Code 0xffffff80008f9e40 0x0000000000000110 0x000f0000 IOStateReporter::incrementChannelState(unsigned long long, unsigned long long, unsigned long long, unsigned long long, unsigned long long) | |
| [ 1849] 1849 X Code 0xffffff80008f9150 0x0000000000000200 0x000f0000 IOStateReporter::handleSetStateByIndices(int, int, unsigned long long, unsigned long long) | |
| [ 1850] 1850 X Code 0xffffff80008fa380 0x0000000000000010 0x000f0000 IOStateReporter::getStateLastTransitionTime(unsigned long long, unsigned long long) | |
| [ 1851] 1851 X Code 0xffffff80008fa390 0x0000000000000090 0x000f0000 IOStateReporter::getStateLastChannelUpdateTime(unsigned long long) | |
| [ 1852] 1852 X Code 0xffffff80008f9420 0x00000000000000a0 0x000f0000 IOStateReporter::handleOverrideChannelStateByIndices(int, int, unsigned long long, unsigned long long, unsigned long long) | |
| [ 1853] 1853 X Code 0xffffff80008f94c0 0x00000000000000a0 0x000f0000 IOStateReporter::handleIncrementChannelStateByIndices(int, int, unsigned long long, unsigned long long, unsigned long long) | |
| [ 1854] 1854 X Code 0xffffff80008f89d0 0x0000000000000100 0x000f0000 IOStateReporter::free() | |
| [ 1855] 1855 X Code 0xffffff80008f9ae0 0x00000000000000a0 0x000f0000 IOStateReporter::with(IOService*, unsigned short, int, unsigned long long) | |
| [ 1856] 1856 X Code 0xffffff80008f9100 0x0000000000000050 0x000f0000 IOStateReporter::initWith(IOService*, unsigned short, short, unsigned long long) | |
| [ 1857] 1857 X Code 0xffffff80008f9f50 0x00000000000000c0 0x000f0000 IOStateReporter::setState(unsigned long long) | |
| [ 1858] 1858 X Code 0xffffff80008fa010 0x00000000000000c0 0x000f0000 IOStateReporter::setState(unsigned long long, unsigned long long, unsigned long long) | |
| [ 1859] 1859 X Code 0xffffff80008f9990 0x0000000000000040 0x000f0000 IOStateReporter::MetaClass::MetaClass() | |
| [ 1860] 1860 X Code 0xffffff80008f9a20 0x0000000000000040 0x000f0000 IOStateReporter::MetaClass::MetaClass() | |
| [ 1861] 1861 X Invalid 0xffffff8000b2fb28 0x0000000000000008 0x000f0000 IOStateReporter::metaClass | |
| [ 1862] 1862 X Code 0xffffff80008f99f0 0x0000000000000020 0x000f0000 IOStateReporter::IOStateReporter(OSMetaClass const*) | |
| [ 1863] 1863 X Code 0xffffff80008f9a60 0x0000000000000040 0x000f0000 IOStateReporter::IOStateReporter() | |
| [ 1864] 1864 X Code 0xffffff80008f99d0 0x0000000000000020 0x000f0000 IOStateReporter::IOStateReporter(OSMetaClass const*) | |
| [ 1865] 1865 X Code 0xffffff80008f9aa0 0x0000000000000040 0x000f0000 IOStateReporter::IOStateReporter() | |
| [ 1866] 1866 X Code 0xffffff80008f8980 0x0000000000000040 0x000f0000 IOStateReporter::~IOStateReporter() | |
| [ 1867] 1867 X Code 0xffffff80008f8970 0x0000000000000010 0x000f0000 IOStateReporter::~IOStateReporter() | |
| [ 1868] 1868 X Code 0xffffff80008f9a10 0x0000000000000010 0x000f0000 IOStateReporter::~IOStateReporter() | |
| [ 1869] 1869 X Data 0xffffff8000ac3898 0x0000000000000028 0x000f0000 IOWatchDogTimer::gMetaClass | |
| [ 1870] 1870 X Invalid 0xffffff8000b31688 0x0000000000000008 0x000f0000 IOWatchDogTimer::superClass | |
| [ 1871] 1871 X Code 0xffffff80008ff8c0 0x00000000000000c0 0x000f0000 IOWatchDogTimer::setProperties(OSObject*) | |
| [ 1872] 1872 X Code 0xffffff80008ffa30 0x0000000000000030 0x000f0000 IOWatchDogTimer::_RESERVEDIOWatchDogTimer0() | |
| [ 1873] 1873 X Code 0xffffff80008ffa60 0x0000000000000030 0x000f0000 IOWatchDogTimer::_RESERVEDIOWatchDogTimer1() | |
| [ 1874] 1874 X Code 0xffffff80008ffa90 0x0000000000000030 0x000f0000 IOWatchDogTimer::_RESERVEDIOWatchDogTimer2() | |
| [ 1875] 1875 X Code 0xffffff80008ffac0 0x0000000000000030 0x000f0000 IOWatchDogTimer::_RESERVEDIOWatchDogTimer3() | |
| [ 1876] 1876 X Code 0xffffff80008ffa00 0x0000000000000030 0x000f0000 IOWatchDogTimer::stop(IOService*) | |
| [ 1877] 1877 X Code 0xffffff80008ff980 0x0000000000000080 0x000f0000 IOWatchDogTimer::start(IOService*) | |
| [ 1878] 1878 X Code 0xffffff80008fff60 0x0000000000000040 0x000f0000 IOWatchDogTimer::MetaClass::MetaClass() | |
| [ 1879] 1879 X Code 0xffffff80008fffd0 0x0000000000000040 0x000f0000 IOWatchDogTimer::MetaClass::MetaClass() | |
| [ 1880] 1880 X Invalid 0xffffff8000b31680 0x0000000000000008 0x000f0000 IOWatchDogTimer::metaClass | |
| [ 1881] 1881 X Code 0xffffff80008fffa0 0x0000000000000020 0x000f0000 IOWatchDogTimer::IOWatchDogTimer(OSMetaClass const*) | |
| [ 1882] 1882 X Code 0xffffff80008ff870 0x0000000000000040 0x000f0000 IOWatchDogTimer::~IOWatchDogTimer() | |
| [ 1883] 1883 X Code 0xffffff80008ff860 0x0000000000000010 0x000f0000 IOWatchDogTimer::~IOWatchDogTimer() | |
| [ 1884] 1884 X Code 0xffffff80008fffc0 0x0000000000000010 0x000f0000 IOWatchDogTimer::~IOWatchDogTimer() | |
| [ 1885] 1885 X Code 0xffffff8000833be0 0x00000000000000e0 0x000f0000 OSMetaClassBase::initialize() | |
| [ 1886] 1886 X Code 0xffffff8000833ae0 0x0000000000000050 0x000f0000 OSMetaClassBase::safeMetaCast(OSMetaClassBase const*, OSMetaClass const*) | |
| [ 1887] 1887 X Code 0xffffff8000833b70 0x0000000000000070 0x000f0000 OSMetaClassBase::checkTypeInst(OSMetaClassBase const*, OSMetaClassBase const*) | |
| [ 1888] 1888 X Code 0xffffff8000833490 0x0000000000000020 0x000f0000 OSMetaClassBase::_RESERVEDOSMetaClassBase3() | |
| [ 1889] 1889 X Code 0xffffff80008334b0 0x0000000000000020 0x000f0000 OSMetaClassBase::_RESERVEDOSMetaClassBase4() | |
| [ 1890] 1890 X Code 0xffffff80008334d0 0x0000000000000020 0x000f0000 OSMetaClassBase::_RESERVEDOSMetaClassBase5() | |
| [ 1891] 1891 X Code 0xffffff80008334f0 0x0000000000000020 0x000f0000 OSMetaClassBase::_RESERVEDOSMetaClassBase6() | |
| [ 1892] 1892 X Code 0xffffff8000833510 0x0000000000000020 0x000f0000 OSMetaClassBase::_RESERVEDOSMetaClassBase7() | |
| [ 1893] 1893 X Code 0xffffff8000833cc0 0x0000000000000010 0x000f0000 OSMetaClassBase::OSMetaClassBase() | |
| [ 1894] 1894 X Code 0xffffff8000833450 0x0000000000000030 0x000f0000 OSMetaClassBase::~OSMetaClassBase() | |
| [ 1895] 1895 X Code 0xffffff8000833440 0x0000000000000010 0x000f0000 OSMetaClassBase::~OSMetaClassBase() | |
| [ 1896] 1896 X Code 0xffffff8000833cd0 0x0000000000000010 0x000f0000 OSMetaClassBase::~OSMetaClassBase() | |
| [ 1897] 1897 X Code 0xffffff8000833fd0 0x0000000000000030 0x000f0000 OSMetaClassMeta::OSMetaClassMeta() | |
| [ 1898] 1898 X Code 0xffffff8000833fa0 0x0000000000000030 0x000f0000 OSMetaClassMeta::OSMetaClassMeta() | |
| [ 1899] 1899 X Data 0xffffff8000ac3a30 0x0000000000000028 0x000f0000 PMSettingHandle::gMetaClass | |
| [ 1900] 1900 X Invalid 0xffffff8000b32b18 0x0000000000000008 0x000f0000 PMSettingHandle::superClass | |
| [ 1901] 1901 X Code 0xffffff800090eb20 0x0000000000000060 0x000f0000 PMSettingHandle::free() | |
| [ 1902] 1902 X Code 0xffffff8000916610 0x0000000000000040 0x000f0000 PMSettingHandle::MetaClass::MetaClass() | |
| [ 1903] 1903 X Code 0xffffff80009166a0 0x0000000000000040 0x000f0000 PMSettingHandle::MetaClass::MetaClass() | |
| [ 1904] 1904 X Invalid 0xffffff8000b32b20 0x0000000000000008 0x000f0000 PMSettingHandle::metaClass | |
| [ 1905] 1905 X Code 0xffffff8000916670 0x0000000000000020 0x000f0000 PMSettingHandle::PMSettingHandle(OSMetaClass const*) | |
| [ 1906] 1906 X Code 0xffffff80009166e0 0x0000000000000040 0x000f0000 PMSettingHandle::PMSettingHandle() | |
| [ 1907] 1907 X Code 0xffffff8000916650 0x0000000000000020 0x000f0000 PMSettingHandle::PMSettingHandle(OSMetaClass const*) | |
| [ 1908] 1908 X Code 0xffffff8000916720 0x0000000000000040 0x000f0000 PMSettingHandle::PMSettingHandle() | |
| [ 1909] 1909 X Code 0xffffff800090ead0 0x0000000000000040 0x000f0000 PMSettingHandle::~PMSettingHandle() | |
| [ 1910] 1910 X Code 0xffffff800090eac0 0x0000000000000010 0x000f0000 PMSettingHandle::~PMSettingHandle() | |
| [ 1911] 1911 X Code 0xffffff8000916690 0x0000000000000010 0x000f0000 PMSettingHandle::~PMSettingHandle() | |
| [ 1912] 1912 X Data 0xffffff8000ac3a08 0x0000000000000028 0x000f0000 PMSettingObject::gMetaClass | |
| [ 1913] 1913 X Invalid 0xffffff8000b32b08 0x0000000000000008 0x000f0000 PMSettingObject::superClass | |
| [ 1914] 1914 X Code 0xffffff80009168d0 0x0000000000000010 0x000f0000 PMSettingObject::__OSFinalClass() | |
| [ 1915] 1915 X Code 0xffffff8000913120 0x0000000000000280 0x000f0000 PMSettingObject::pmSettingObject(IOPMrootDomain*, int (*)(OSObject*, OSSymbol const*, OSObject*, unsigned long), OSObject*, unsigned long, unsigned int, OSSymbol const**, OSObject**) | |
| [ 1916] 1916 X Code 0xffffff8000916760 0x0000000000000020 0x000f0000 PMSettingObject::clientHandleFreed() | |
| [ 1917] 1917 X Code 0xffffff8000912ed0 0x0000000000000020 0x000f0000 PMSettingObject::dispatchPMSetting(OSSymbol const*, OSObject*) | |
| [ 1918] 1918 X Code 0xffffff800090f070 0x0000000000000080 0x000f0000 PMSettingObject::free() | |
| [ 1919] 1919 X Code 0xffffff8000916780 0x0000000000000040 0x000f0000 PMSettingObject::MetaClass::MetaClass() | |
| [ 1920] 1920 X Code 0xffffff8000916810 0x0000000000000040 0x000f0000 PMSettingObject::MetaClass::MetaClass() | |
| [ 1921] 1921 X Invalid 0xffffff8000b32b10 0x0000000000000008 0x000f0000 PMSettingObject::metaClass | |
| [ 1922] 1922 X Code 0xffffff80009167e0 0x0000000000000020 0x000f0000 PMSettingObject::PMSettingObject(OSMetaClass const*) | |
| [ 1923] 1923 X Code 0xffffff8000916850 0x0000000000000040 0x000f0000 PMSettingObject::PMSettingObject() | |
| [ 1924] 1924 X Code 0xffffff80009167c0 0x0000000000000020 0x000f0000 PMSettingObject::PMSettingObject(OSMetaClass const*) | |
| [ 1925] 1925 X Code 0xffffff8000916890 0x0000000000000040 0x000f0000 PMSettingObject::PMSettingObject() | |
| [ 1926] 1926 X Code 0xffffff800090f020 0x0000000000000040 0x000f0000 PMSettingObject::~PMSettingObject() | |
| [ 1927] 1927 X Code 0xffffff800090f010 0x0000000000000010 0x000f0000 PMSettingObject::~PMSettingObject() | |
| [ 1928] 1928 X Code 0xffffff8000916800 0x0000000000000010 0x000f0000 PMSettingObject::~PMSettingObject() | |
| [ 1929] 1929 X Data 0xffffff8000ac2c88 0x0000000000000028 0x000f0000 _IOConfigThread::gMetaClass | |
| [ 1930] 1930 X Invalid 0xffffff8000b1d100 0x0000000000000008 0x000f0000 _IOConfigThread::superClass | |
| [ 1931] 1931 X Code 0xffffff8000897e40 0x0000000000000090 0x000f0000 _IOConfigThread::configThread() | |
| [ 1932] 1932 X Code 0xffffff8000898190 0x0000000000000040 0x000f0000 _IOConfigThread::free() | |
| [ 1933] 1933 X Code 0xffffff8000897ed0 0x0000000000000260 0x000f0000 _IOConfigThread::main(void*, int) | |
| [ 1934] 1934 X Code 0xffffff800089bd10 0x0000000000000040 0x000f0000 _IOConfigThread::MetaClass::MetaClass() | |
| [ 1935] 1935 X Code 0xffffff800089bda0 0x0000000000000040 0x000f0000 _IOConfigThread::MetaClass::MetaClass() | |
| [ 1936] 1936 X Invalid 0xffffff8000b1d108 0x0000000000000008 0x000f0000 _IOConfigThread::metaClass | |
| [ 1937] 1937 X Code 0xffffff800089bd70 0x0000000000000020 0x000f0000 _IOConfigThread::_IOConfigThread(OSMetaClass const*) | |
| [ 1938] 1938 X Code 0xffffff800089bde0 0x0000000000000040 0x000f0000 _IOConfigThread::_IOConfigThread() | |
| [ 1939] 1939 X Code 0xffffff800089bd50 0x0000000000000020 0x000f0000 _IOConfigThread::_IOConfigThread(OSMetaClass const*) | |
| [ 1940] 1940 X Code 0xffffff800089be20 0x0000000000000040 0x000f0000 _IOConfigThread::_IOConfigThread() | |
| [ 1941] 1941 X Code 0xffffff8000898140 0x0000000000000040 0x000f0000 _IOConfigThread::~_IOConfigThread() | |
| [ 1942] 1942 X Code 0xffffff8000898130 0x0000000000000010 0x000f0000 _IOConfigThread::~_IOConfigThread() | |
| [ 1943] 1943 X Code 0xffffff800089bd90 0x0000000000000010 0x000f0000 _IOConfigThread::~_IOConfigThread() | |
| [ 1944] 1944 X Data 0xffffff8000ac3078 0x0000000000000028 0x000f0000 IODMAEventSource::gMetaClass | |
| [ 1945] 1945 X Invalid 0xffffff8000b22368 0x0000000000000008 0x000f0000 IODMAEventSource::superClass | |
| [ 1946] 1946 X Code 0xffffff80008bf470 0x00000000000000f0 0x000f0000 IODMAEventSource::checkForWork() | |
| [ 1947] 1947 X Code 0xffffff80008bf770 0x0000000000000030 0x000f0000 IODMAEventSource::getFIFODepth(unsigned int) | |
| [ 1948] 1948 X Code 0xffffff80008bf860 0x0000000000000030 0x000f0000 IODMAEventSource::setDMAConfig(unsigned int) | |
| [ 1949] 1949 X Code 0xffffff80008bf7a0 0x0000000000000040 0x000f0000 IODMAEventSource::setFIFODepth(unsigned long long) | |
| [ 1950] 1950 X Code 0xffffff80008bf820 0x0000000000000040 0x000f0000 IODMAEventSource::setFrameSize(unsigned char) | |
| [ 1951] 1951 X Code 0xffffff80008bff40 0x00000000000000b0 0x000f0000 IODMAEventSource::dmaEventSource(OSObject*, IOService*, void (*)(OSObject*, IODMAEventSource*, IODMACommand*, int, unsigned long long, unsigned long long), void (*)(OSObject*, IODMAEventSource*, IODMACommand*, int, unsigned long long, unsigned long long), unsigned int) | |
| [ 1952] 1952 X Code 0xffffff80008bf6f0 0x0000000000000040 0x000f0000 IODMAEventSource::stopDMACommand(bool, unsigned long long) | |
| [ 1953] 1953 X Code 0xffffff80008bf890 0x0000000000000030 0x000f0000 IODMAEventSource::validDMAConfig(unsigned int) | |
| [ 1954] 1954 X Code 0xffffff80008bf7e0 0x0000000000000040 0x000f0000 IODMAEventSource::validFIFODepth(unsigned long long, unsigned int) | |
| [ 1955] 1955 X Code 0xffffff80008bf730 0x0000000000000040 0x000f0000 IODMAEventSource::queryDMACommand(IODMACommand**, unsigned long long*, bool) | |
| [ 1956] 1956 X Code 0xffffff80008bf650 0x00000000000000a0 0x000f0000 IODMAEventSource::startDMACommand(IODMACommand*, unsigned int, unsigned long long, unsigned long long) | |
| [ 1957] 1957 X Code 0xffffff80008bf610 0x0000000000000040 0x000f0000 IODMAEventSource::notifyDMACommand(IODMACommand*, int, unsigned long long, unsigned long long) | |
| [ 1958] 1958 X Code 0xffffff80008bf560 0x00000000000000b0 0x000f0000 IODMAEventSource::completeDMACommand(IODMACommand*) | |
| [ 1959] 1959 X Code 0xffffff80008bf440 0x0000000000000030 0x000f0000 IODMAEventSource::free() | |
| [ 1960] 1960 X Code 0xffffff80008bf8c0 0x0000000000000100 0x000f0000 IODMAEventSource::init(OSObject*, IOService*, void (*)(OSObject*, IODMAEventSource*, IODMACommand*, int, unsigned long long, unsigned long long), void (*)(OSObject*, IODMAEventSource*, IODMACommand*, int, unsigned long long, unsigned long long), unsigned int) | |
| [ 1961] 1961 X Code 0xffffff80008bfdf0 0x0000000000000040 0x000f0000 IODMAEventSource::MetaClass::MetaClass() | |
| [ 1962] 1962 X Code 0xffffff80008bfe80 0x0000000000000040 0x000f0000 IODMAEventSource::MetaClass::MetaClass() | |
| [ 1963] 1963 X Invalid 0xffffff8000b22360 0x0000000000000008 0x000f0000 IODMAEventSource::metaClass | |
| [ 1964] 1964 X Code 0xffffff80008bfe50 0x0000000000000020 0x000f0000 IODMAEventSource::IODMAEventSource(OSMetaClass const*) | |
| [ 1965] 1965 X Code 0xffffff80008bfec0 0x0000000000000040 0x000f0000 IODMAEventSource::IODMAEventSource() | |
| [ 1966] 1966 X Code 0xffffff80008bfe30 0x0000000000000020 0x000f0000 IODMAEventSource::IODMAEventSource(OSMetaClass const*) | |
| [ 1967] 1967 X Code 0xffffff80008bff00 0x0000000000000040 0x000f0000 IODMAEventSource::IODMAEventSource() | |
| [ 1968] 1968 X Code 0xffffff80008bf3f0 0x0000000000000040 0x000f0000 IODMAEventSource::~IODMAEventSource() | |
| [ 1969] 1969 X Code 0xffffff80008bf3e0 0x0000000000000010 0x000f0000 IODMAEventSource::~IODMAEventSource() | |
| [ 1970] 1970 X Code 0xffffff80008bfe70 0x0000000000000010 0x000f0000 IODMAEventSource::~IODMAEventSource() | |
| [ 1971] 1971 X Data 0xffffff8000ac3658 0x0000000000000028 0x000f0000 IOKitDiagnostics::gMetaClass | |
| [ 1972] 1972 X Invalid 0xffffff8000b2e460 0x0000000000000008 0x000f0000 IOKitDiagnostics::superClass | |
| [ 1973] 1973 X Code 0xffffff80008ee860 0x0000000000000080 0x000f0000 IOKitDiagnostics::diagnostics() | |
| [ 1974] 1974 X Code 0xffffff80008ee8e0 0x0000000000000060 0x000f0000 IOKitDiagnostics::updateOffset(OSDictionary*, unsigned long long, char const*) | |
| [ 1975] 1975 X Code 0xffffff80008ee710 0x0000000000000040 0x000f0000 IOKitDiagnostics::MetaClass::MetaClass() | |
| [ 1976] 1976 X Code 0xffffff80008ee7a0 0x0000000000000040 0x000f0000 IOKitDiagnostics::MetaClass::MetaClass() | |
| [ 1977] 1977 X Invalid 0xffffff8000b2e458 0x0000000000000008 0x000f0000 IOKitDiagnostics::metaClass | |
| [ 1978] 1978 X Code 0xffffff80008ee770 0x0000000000000020 0x000f0000 IOKitDiagnostics::IOKitDiagnostics(OSMetaClass const*) | |
| [ 1979] 1979 X Code 0xffffff80008ee7e0 0x0000000000000040 0x000f0000 IOKitDiagnostics::IOKitDiagnostics() | |
| [ 1980] 1980 X Code 0xffffff80008ee750 0x0000000000000020 0x000f0000 IOKitDiagnostics::IOKitDiagnostics(OSMetaClass const*) | |
| [ 1981] 1981 X Code 0xffffff80008ee820 0x0000000000000040 0x000f0000 IOKitDiagnostics::IOKitDiagnostics() | |
| [ 1982] 1982 X Code 0xffffff80008eda50 0x0000000000000040 0x000f0000 IOKitDiagnostics::~IOKitDiagnostics() | |
| [ 1983] 1983 X Code 0xffffff80008eda40 0x0000000000000010 0x000f0000 IOKitDiagnostics::~IOKitDiagnostics() | |
| [ 1984] 1984 X Code 0xffffff80008ee790 0x0000000000000010 0x000f0000 IOKitDiagnostics::~IOKitDiagnostics() | |
| [ 1985] 1985 X Data 0xffffff8000ac2df8 0x0000000000000028 0x000f0000 IOPMRequestQueue::gMetaClass | |
| [ 1986] 1986 X Invalid 0xffffff8000b1ec40 0x0000000000000008 0x000f0000 IOPMRequestQueue::superClass | |
| [ 1987] 1987 X Code 0xffffff800089eba0 0x00000000000000e0 0x000f0000 IOPMRequestQueue::checkForWork() | |
| [ 1988] 1988 X Code 0xffffff80008b1150 0x0000000000000060 0x000f0000 IOPMRequestQueue::queuePMRequest(IOPMRequest*) | |
| [ 1989] 1989 X Code 0xffffff80008b11b0 0x0000000000000100 0x000f0000 IOPMRequestQueue::queuePMRequestChain(IOPMRequest**, unsigned int) | |
| [ 1990] 1990 X Code 0xffffff800089eb60 0x0000000000000040 0x000f0000 IOPMRequestQueue::free() | |
| [ 1991] 1991 X Code 0xffffff800089ec80 0x0000000000000080 0x000f0000 IOPMRequestQueue::init(IOService*, bool (*)(IOService*, IOPMRequest*, IOPMRequestQueue*)) | |
| [ 1992] 1992 X Code 0xffffff80008ac630 0x0000000000000060 0x000f0000 IOPMRequestQueue::create(IOService*, bool (*)(IOService*, IOPMRequest*, IOPMRequestQueue*)) | |
| [ 1993] 1993 X Code 0xffffff80008b1500 0x0000000000000040 0x000f0000 IOPMRequestQueue::MetaClass::MetaClass() | |
| [ 1994] 1994 X Code 0xffffff80008b1590 0x0000000000000040 0x000f0000 IOPMRequestQueue::MetaClass::MetaClass() | |
| [ 1995] 1995 X Invalid 0xffffff8000b1ec48 0x00000000000000f8 0x000f0000 IOPMRequestQueue::metaClass | |
| [ 1996] 1996 X Code 0xffffff80008b1560 0x0000000000000020 0x000f0000 IOPMRequestQueue::IOPMRequestQueue(OSMetaClass const*) | |
| [ 1997] 1997 X Code 0xffffff80008b15d0 0x0000000000000040 0x000f0000 IOPMRequestQueue::IOPMRequestQueue() | |
| [ 1998] 1998 X Code 0xffffff80008b1540 0x0000000000000020 0x000f0000 IOPMRequestQueue::IOPMRequestQueue(OSMetaClass const*) | |
| [ 1999] 1999 X Code 0xffffff80008b1610 0x0000000000000040 0x000f0000 IOPMRequestQueue::IOPMRequestQueue() | |
| [ 2000] 2000 X Code 0xffffff800089eb10 0x0000000000000040 0x000f0000 IOPMRequestQueue::~IOPMRequestQueue() | |
| [ 2001] 2001 X Code 0xffffff800089eb00 0x0000000000000010 0x000f0000 IOPMRequestQueue::~IOPMRequestQueue() | |
| [ 2002] 2002 X Code 0xffffff80008b1580 0x0000000000000010 0x000f0000 IOPMRequestQueue::~IOPMRequestQueue() | |
| [ 2003] 2003 X Data 0xffffff8000ac2e48 0x0000000000000028 0x000f0000 IOPMinformeeList::gMetaClass | |
| [ 2004] 2004 X Code 0xffffff80008b2750 0x0000000000000020 0x000f0000 IOPMinformeeList::initialize() | |
| [ 2005] 2005 X Code 0xffffff80008b2a20 0x0000000000000020 0x000f0000 IOPMinformeeList::nextInList(IOPMinformee*) | |
| [ 2006] 2006 X Invalid 0xffffff8000b1fab0 0x0000000000000008 0x000f0000 IOPMinformeeList::superClass | |
| [ 2007] 2007 X Code 0xffffff80008b2b70 0x0000000000000010 0x000f0000 IOPMinformeeList::firstInList() | |
| [ 2008] 2008 X Code 0xffffff80008b2b80 0x0000000000000010 0x000f0000 IOPMinformeeList::numberOfItems() | |
| [ 2009] 2009 X Code 0xffffff80008b2a40 0x0000000000000130 0x000f0000 IOPMinformeeList::removeFromList(IOService*) | |
| [ 2010] 2010 X Code 0xffffff80008b27e0 0x0000000000000120 0x000f0000 IOPMinformeeList::appendNewInformee(IOService*) | |
| [ 2011] 2011 X Code 0xffffff80008b2770 0x0000000000000070 0x000f0000 IOPMinformeeList::getSharedRecursiveLock() | |
| [ 2012] 2012 X Code 0xffffff80008b2180 0x0000000000000050 0x000f0000 IOPMinformeeList::free() | |
| [ 2013] 2013 X Code 0xffffff80008b2b90 0x0000000000000040 0x000f0000 IOPMinformeeList::findItem(IOService*) | |
| [ 2014] 2014 X Code 0xffffff80008b2600 0x0000000000000040 0x000f0000 IOPMinformeeList::MetaClass::MetaClass() | |
| [ 2015] 2015 X Code 0xffffff80008b2690 0x0000000000000040 0x000f0000 IOPMinformeeList::MetaClass::MetaClass() | |
| [ 2016] 2016 X Code 0xffffff80008b2900 0x0000000000000120 0x000f0000 IOPMinformeeList::addToList(IOPMinformee*) | |
| [ 2017] 2017 X Invalid 0xffffff8000b1faa8 0x0000000000000008 0x000f0000 IOPMinformeeList::metaClass | |
| [ 2018] 2018 X Code 0xffffff80008b2660 0x0000000000000020 0x000f0000 IOPMinformeeList::IOPMinformeeList(OSMetaClass const*) | |
| [ 2019] 2019 X Code 0xffffff80008b26d0 0x0000000000000040 0x000f0000 IOPMinformeeList::IOPMinformeeList() | |
| [ 2020] 2020 X Code 0xffffff80008b2640 0x0000000000000020 0x000f0000 IOPMinformeeList::IOPMinformeeList(OSMetaClass const*) | |
| [ 2021] 2021 X Code 0xffffff80008b2710 0x0000000000000040 0x000f0000 IOPMinformeeList::IOPMinformeeList() | |
| [ 2022] 2022 X Code 0xffffff80008b2130 0x0000000000000040 0x000f0000 IOPMinformeeList::~IOPMinformeeList() | |
| [ 2023] 2023 X Code 0xffffff80008b2120 0x0000000000000010 0x000f0000 IOPMinformeeList::~IOPMinformeeList() | |
| [ 2024] 2024 X Code 0xffffff80008b2680 0x0000000000000010 0x000f0000 IOPMinformeeList::~IOPMinformeeList() | |
| [ 2025] 2025 X Data 0xffffff8000ac3388 0x0000000000000028 0x000f0000 IOPlatformDevice::gMetaClass | |
| [ 2026] 2026 X Invalid 0xffffff8000b26778 0x0000000000000008 0x000f0000 IOPlatformDevice::superClass | |
| [ 2027] 2027 X Code 0xffffff80008d53e0 0x0000000000000030 0x000f0000 IOPlatformDevice::getResources() | |
| [ 2028] 2028 X Code 0xffffff80008d53d0 0x0000000000000010 0x000f0000 IOPlatformDevice::matchLocation(IOService*) | |
| [ 2029] 2029 X Code 0xffffff80008d5410 0x0000000000000030 0x000f0000 IOPlatformDevice::_RESERVEDIOPlatformDevice0() | |
| [ 2030] 2030 X Code 0xffffff80008d5440 0x0000000000000030 0x000f0000 IOPlatformDevice::_RESERVEDIOPlatformDevice1() | |
| [ 2031] 2031 X Code 0xffffff80008d5470 0x0000000000000030 0x000f0000 IOPlatformDevice::_RESERVEDIOPlatformDevice2() | |
| [ 2032] 2032 X Code 0xffffff80008d54a0 0x0000000000000030 0x000f0000 IOPlatformDevice::_RESERVEDIOPlatformDevice3() | |
| [ 2033] 2033 X Code 0xffffff80008d89b0 0x0000000000000040 0x000f0000 IOPlatformDevice::MetaClass::MetaClass() | |
| [ 2034] 2034 X Code 0xffffff80008d8a40 0x0000000000000040 0x000f0000 IOPlatformDevice::MetaClass::MetaClass() | |
| [ 2035] 2035 X Invalid 0xffffff8000b26780 0x0000000000000008 0x000f0000 IOPlatformDevice::metaClass | |
| [ 2036] 2036 X Code 0xffffff80008d8a10 0x0000000000000020 0x000f0000 IOPlatformDevice::IOPlatformDevice(OSMetaClass const*) | |
| [ 2037] 2037 X Code 0xffffff80008d7870 0x0000000000000040 0x000f0000 IOPlatformDevice::IOPlatformDevice() | |
| [ 2038] 2038 X Code 0xffffff80008d89f0 0x0000000000000020 0x000f0000 IOPlatformDevice::IOPlatformDevice(OSMetaClass const*) | |
| [ 2039] 2039 X Code 0xffffff80008d8a80 0x0000000000000040 0x000f0000 IOPlatformDevice::IOPlatformDevice() | |
| [ 2040] 2040 X Code 0xffffff80008d5340 0x0000000000000040 0x000f0000 IOPlatformDevice::~IOPlatformDevice() | |
| [ 2041] 2041 X Code 0xffffff80008d5330 0x0000000000000010 0x000f0000 IOPlatformDevice::~IOPlatformDevice() | |
| [ 2042] 2042 X Code 0xffffff80008d8a30 0x0000000000000010 0x000f0000 IOPlatformDevice::~IOPlatformDevice() | |
| [ 2043] 2043 X Data 0xffffff8000ac3338 0x0000000000000028 0x000f0000 IOPlatformExpert::gMetaClass | |
| [ 2044] 2044 X Invalid 0xffffff8000b25d90 0x0000000000000008 0x000f0000 IOPlatformExpert::superClass | |
| [ 2045] 2045 X Code 0xffffff80008d4a10 0x0000000000000050 0x000f0000 IOPlatformExpert::haltRestart(unsigned int) | |
| [ 2046] 2046 X Code 0xffffff80008d4a60 0x0000000000000010 0x000f0000 IOPlatformExpert::sleepKernel() | |
| [ 2047] 2047 X Code 0xffffff80008d42c0 0x00000000000002b0 0x000f0000 IOPlatformExpert::CheckSubTree(OSArray*, IOService*, IOService*, OSDictionary*) | |
| [ 2048] 2048 X Code 0xffffff80008d49f0 0x0000000000000010 0x000f0000 IOPlatformExpert::getModelName(char*, int) | |
| [ 2049] 2049 X Code 0xffffff80008d50e0 0x0000000000000020 0x000f0000 IOPlatformExpert::hasPMFeature(unsigned long) | |
| [ 2050] 2050 X Code 0xffffff80008d5130 0x0000000000000010 0x000f0000 IOPlatformExpert::savePanicInfo(unsigned char*, unsigned long long) | |
| [ 2051] 2051 X Code 0xffffff80008d49c0 0x0000000000000010 0x000f0000 IOPlatformExpert::getBootROMType() | |
| [ 2052] 2052 X Code 0xffffff80008d49d0 0x0000000000000010 0x000f0000 IOPlatformExpert::getChipSetType() | |
| [ 2053] 2053 X Code 0xffffff80008d4a90 0x0000000000000020 0x000f0000 IOPlatformExpert::getConsoleInfo(PE_Video*) | |
| [ 2054] 2054 X Code 0xffffff80008d4a00 0x0000000000000010 0x000f0000 IOPlatformExpert::getMachineName(char*, int) | |
| [ 2055] 2055 X Code 0xffffff80008d49e0 0x0000000000000010 0x000f0000 IOPlatformExpert::getMachineType() | |
| [ 2056] 2056 X Code 0xffffff80008d4290 0x0000000000000010 0x000f0000 IOPlatformExpert::setBootROMType(long) | |
| [ 2057] 2057 X Code 0xffffff80008d42a0 0x0000000000000010 0x000f0000 IOPlatformExpert::setChipSetType(long) | |
| [ 2058] 2058 X Code 0xffffff80008d4ab0 0x0000000000000020 0x000f0000 IOPlatformExpert::setConsoleInfo(PE_Video*, unsigned int) | |
| [ 2059] 2059 X Code 0xffffff80008d42b0 0x0000000000000010 0x000f0000 IOPlatformExpert::setMachineType(long) | |
| [ 2060] 2060 X Code 0xffffff80008d4a70 0x0000000000000010 0x000f0000 IOPlatformExpert::getGMTTimeOfDay() | |
| [ 2061] 2061 X Code 0xffffff80008d49b0 0x0000000000000010 0x000f0000 IOPlatformExpert::getNubResources(IOService*) | |
| [ 2062] 2062 X Code 0xffffff80008d5190 0x0000000000000030 0x000f0000 IOPlatformExpert::getUTCTimeOfDay(unsigned long*, unsigned int*) | |
| [ 2063] 2063 X Code 0xffffff80008d4a80 0x0000000000000010 0x000f0000 IOPlatformExpert::setGMTTimeOfDay(long) | |
| [ 2064] 2064 X Code 0xffffff80008d51c0 0x0000000000000020 0x000f0000 IOPlatformExpert::setUTCTimeOfDay(unsigned long, unsigned int) | |
| [ 2065] 2065 X Code 0xffffff80008d4f80 0x0000000000000020 0x000f0000 IOPlatformExpert::PMRegisterDevice(IOService*, IOService*) | |
| [ 2066] 2066 X Code 0xffffff80008d4f00 0x0000000000000020 0x000f0000 IOPlatformExpert::atInterruptLevel() | |
| [ 2067] 2067 X Code 0xffffff80008d5100 0x0000000000000020 0x000f0000 IOPlatformExpert::hasPrivPMFeature(unsigned long) | |
| [ 2068] 2068 X Code 0xffffff80008d4190 0x0000000000000100 0x000f0000 IOPlatformExpert::callPlatformFunction(OSSymbol const*, bool, void*, void*, void*, void*) | |
| [ 2069] 2069 X Code 0xffffff80008d4570 0x0000000000000170 0x000f0000 IOPlatformExpert::RegisterServiceInTree(IOService*, OSDictionary*, OSDictionary*, IOService*) | |
| [ 2070] 2070 X Code 0xffffff80008d5120 0x0000000000000010 0x000f0000 IOPlatformExpert::numBatteriesSupported() | |
| [ 2071] 2071 X Code 0xffffff80008d4f70 0x0000000000000010 0x000f0000 IOPlatformExpert::platformAdjustService(IOService*) | |
| [ 2072] 2072 X Code 0xffffff80008d4ad0 0x0000000000000280 0x000f0000 IOPlatformExpert::registerNVRAMController(IONVRAMController*) | |
| [ 2073] 2073 X Code 0xffffff80008d46e0 0x0000000000000090 0x000f0000 IOPlatformExpert::PMInstantiatePowerDomains() | |
| [ 2074] 2074 X Code 0xffffff80008d4f20 0x0000000000000050 0x000f0000 IOPlatformExpert::getPhysicalRangeAllocator() | |
| [ 2075] 2075 X Code 0xffffff80008d4db0 0x00000000000000b0 0x000f0000 IOPlatformExpert::lookUpInterruptController(OSSymbol*) | |
| [ 2076] 2076 X Code 0xffffff80008d4e60 0x00000000000000a0 0x000f0000 IOPlatformExpert::setCPUInterruptProperties(IOService*) | |
| [ 2077] 2077 X Code 0xffffff80008d51e0 0x0000000000000030 0x000f0000 IOPlatformExpert::_RESERVEDIOPlatformExpert5() | |
| [ 2078] 2078 X Code 0xffffff80008d5210 0x0000000000000030 0x000f0000 IOPlatformExpert::_RESERVEDIOPlatformExpert6() | |
| [ 2079] 2079 X Code 0xffffff80008d5240 0x0000000000000030 0x000f0000 IOPlatformExpert::_RESERVEDIOPlatformExpert7() | |
| [ 2080] 2080 X Code 0xffffff80008d5270 0x0000000000000030 0x000f0000 IOPlatformExpert::_RESERVEDIOPlatformExpert8() | |
| [ 2081] 2081 X Code 0xffffff80008d52a0 0x0000000000000030 0x000f0000 IOPlatformExpert::_RESERVEDIOPlatformExpert9() | |
| [ 2082] 2082 X Code 0xffffff80008d52d0 0x0000000000000030 0x000f0000 IOPlatformExpert::_RESERVEDIOPlatformExpert10() | |
| [ 2083] 2083 X Code 0xffffff80008d5300 0x0000000000000030 0x000f0000 IOPlatformExpert::_RESERVEDIOPlatformExpert11() | |
| [ 2084] 2084 X Code 0xffffff80008d4d50 0x0000000000000060 0x000f0000 IOPlatformExpert::registerInterruptController(OSSymbol*, IOInterruptController*) | |
| [ 2085] 2085 X Code 0xffffff80008d5150 0x0000000000000040 0x000f0000 IOPlatformExpert::deregisterInterruptController(OSSymbol*) | |
| [ 2086] 2086 X Code 0xffffff80008d5140 0x0000000000000010 0x000f0000 IOPlatformExpert::createSystemSerialNumberString(OSData*) | |
| [ 2087] 2087 X Code 0xffffff80008d4fa0 0x0000000000000140 0x000f0000 IOPlatformExpert::PMLog(char const*, unsigned long, unsigned long, unsigned long) | |
| [ 2088] 2088 X Code 0xffffff80008d3f90 0x00000000000001f0 0x000f0000 IOPlatformExpert::start(IOService*) | |
| [ 2089] 2089 X Code 0xffffff80008d4180 0x0000000000000010 0x000f0000 IOPlatformExpert::attach(IOService*) | |
| [ 2090] 2090 X Code 0xffffff80008d7720 0x0000000000000040 0x000f0000 IOPlatformExpert::MetaClass::MetaClass() | |
| [ 2091] 2091 X Code 0xffffff80008d77b0 0x0000000000000040 0x000f0000 IOPlatformExpert::MetaClass::MetaClass() | |
| [ 2092] 2092 X Code 0xffffff80008d4770 0x0000000000000150 0x000f0000 IOPlatformExpert::configure(IOService*) | |
| [ 2093] 2093 X Code 0xffffff80008d48c0 0x0000000000000080 0x000f0000 IOPlatformExpert::createNub(OSDictionary*) | |
| [ 2094] 2094 X Invalid 0xffffff8000b25d88 0x0000000000000008 0x000f0000 IOPlatformExpert::metaClass | |
| [ 2095] 2095 X Code 0xffffff80008d7780 0x0000000000000020 0x000f0000 IOPlatformExpert::IOPlatformExpert(OSMetaClass const*) | |
| [ 2096] 2096 X Code 0xffffff80008d77f0 0x0000000000000040 0x000f0000 IOPlatformExpert::IOPlatformExpert() | |
| [ 2097] 2097 X Code 0xffffff80008d7760 0x0000000000000020 0x000f0000 IOPlatformExpert::IOPlatformExpert(OSMetaClass const*) | |
| [ 2098] 2098 X Code 0xffffff80008d7830 0x0000000000000040 0x000f0000 IOPlatformExpert::IOPlatformExpert() | |
| [ 2099] 2099 X Code 0xffffff80008d3f40 0x0000000000000040 0x000f0000 IOPlatformExpert::~IOPlatformExpert() | |
| [ 2100] 2100 X Code 0xffffff80008d3f30 0x0000000000000010 0x000f0000 IOPlatformExpert::~IOPlatformExpert() | |
| [ 2101] 2101 X Code 0xffffff80008d77a0 0x0000000000000010 0x000f0000 IOPlatformExpert::~IOPlatformExpert() | |
| [ 2102] 2102 X Code 0xffffff80008d2eb0 0x0000000000000140 0x000f0000 IORangeAllocator::deallocate(unsigned long long, unsigned long long) | |
| [ 2103] 2103 X Data 0xffffff8000ac32e0 0x0000000000000028 0x000f0000 IORangeAllocator::gMetaClass | |
| [ 2104] 2104 X Invalid 0xffffff8000b257c0 0x0000000000000008 0x000f0000 IORangeAllocator::superClass | |
| [ 2105] 2105 X Code 0xffffff80008d28f0 0x00000000000000f0 0x000f0000 IORangeAllocator::allocElement(unsigned int) | |
| [ 2106] 2106 X Code 0xffffff80008d2b10 0x0000000000000080 0x000f0000 IORangeAllocator::getFreeCount() | |
| [ 2107] 2107 X Code 0xffffff80008d2d10 0x00000000000001a0 0x000f0000 IORangeAllocator::allocateRange(unsigned long long, unsigned long long) | |
| [ 2108] 2108 X Code 0xffffff80008d29e0 0x0000000000000030 0x000f0000 IORangeAllocator::deallocElement(unsigned int) | |
| [ 2109] 2109 X Code 0xffffff80008d2ae0 0x0000000000000010 0x000f0000 IORangeAllocator::getFragmentCount() | |
| [ 2110] 2110 X Code 0xffffff80008d2af0 0x0000000000000010 0x000f0000 IORangeAllocator::getFragmentCapacity() | |
| [ 2111] 2111 X Code 0xffffff80008d2b00 0x0000000000000010 0x000f0000 IORangeAllocator::setFragmentCapacityIncrement(unsigned int) | |
| [ 2112] 2112 X Code 0xffffff80008d28a0 0x0000000000000050 0x000f0000 IORangeAllocator::free() | |
| [ 2113] 2113 X Code 0xffffff80008d2a10 0x00000000000000d0 0x000f0000 IORangeAllocator::init(unsigned long long, unsigned long long, unsigned int, unsigned int) | |
| [ 2114] 2114 X Code 0xffffff80008d2b90 0x0000000000000180 0x000f0000 IORangeAllocator::allocate(unsigned long long, unsigned long long*, unsigned long long) | |
| [ 2115] 2115 X Code 0xffffff80008d3420 0x0000000000000040 0x000f0000 IORangeAllocator::MetaClass::MetaClass() | |
| [ 2116] 2116 X Code 0xffffff80008d34b0 0x0000000000000040 0x000f0000 IORangeAllocator::MetaClass::MetaClass() | |
| [ 2117] 2117 X Invalid 0xffffff8000b257b8 0x0000000000000008 0x000f0000 IORangeAllocator::metaClass | |
| [ 2118] 2118 X Code 0xffffff80008d3570 0x00000000000000a0 0x000f0000 IORangeAllocator::withRange(unsigned long long, unsigned long long, unsigned int, unsigned int) | |
| [ 2119] 2119 X Code 0xffffff80008d3480 0x0000000000000020 0x000f0000 IORangeAllocator::IORangeAllocator(OSMetaClass const*) | |
| [ 2120] 2120 X Code 0xffffff80008d34f0 0x0000000000000040 0x000f0000 IORangeAllocator::IORangeAllocator() | |
| [ 2121] 2121 X Code 0xffffff80008d3460 0x0000000000000020 0x000f0000 IORangeAllocator::IORangeAllocator(OSMetaClass const*) | |
| [ 2122] 2122 X Code 0xffffff80008d3530 0x0000000000000040 0x000f0000 IORangeAllocator::IORangeAllocator() | |
| [ 2123] 2123 X Code 0xffffff80008d2730 0x0000000000000040 0x000f0000 IORangeAllocator::~IORangeAllocator() | |
| [ 2124] 2124 X Code 0xffffff80008d2720 0x0000000000000010 0x000f0000 IORangeAllocator::~IORangeAllocator() | |
| [ 2125] 2125 X Code 0xffffff80008d34a0 0x0000000000000010 0x000f0000 IORangeAllocator::~IORangeAllocator() | |
| [ 2126] 2126 X Data 0xffffff8000ac38e8 0x0000000000000028 0x000f0000 IOSKMemoryBuffer::gMetaClass | |
| [ 2127] 2127 X Invalid 0xffffff8000b32278 0x0000000000000008 0x000f0000 IOSKMemoryBuffer::superClass | |
| [ 2128] 2128 X Code 0xffffff8000900dd0 0x00000000000000b0 0x000f0000 IOSKMemoryBuffer::initWithSpec(task*, unsigned long long, unsigned long long, IOSKMemoryBufferSpec const*) | |
| [ 2129] 2129 X Code 0xffffff8000900dc0 0x0000000000000010 0x000f0000 IOSKMemoryBuffer::__OSFinalClass() | |
| [ 2130] 2130 X Code 0xffffff8000900c70 0x0000000000000040 0x000f0000 IOSKMemoryBuffer::MetaClass::MetaClass() | |
| [ 2131] 2131 X Code 0xffffff8000900d00 0x0000000000000040 0x000f0000 IOSKMemoryBuffer::MetaClass::MetaClass() | |
| [ 2132] 2132 X Invalid 0xffffff8000b32280 0x0000000000000008 0x000f0000 IOSKMemoryBuffer::metaClass | |
| [ 2133] 2133 X Code 0xffffff8000900cd0 0x0000000000000020 0x000f0000 IOSKMemoryBuffer::IOSKMemoryBuffer(OSMetaClass const*) | |
| [ 2134] 2134 X Code 0xffffff8000900d40 0x0000000000000040 0x000f0000 IOSKMemoryBuffer::IOSKMemoryBuffer() | |
| [ 2135] 2135 X Code 0xffffff8000900cb0 0x0000000000000020 0x000f0000 IOSKMemoryBuffer::IOSKMemoryBuffer(OSMetaClass const*) | |
| [ 2136] 2136 X Code 0xffffff8000900d80 0x0000000000000040 0x000f0000 IOSKMemoryBuffer::IOSKMemoryBuffer() | |
| [ 2137] 2137 X Code 0xffffff8000900330 0x0000000000000040 0x000f0000 IOSKMemoryBuffer::~IOSKMemoryBuffer() | |
| [ 2138] 2138 X Code 0xffffff8000900320 0x0000000000000010 0x000f0000 IOSKMemoryBuffer::~IOSKMemoryBuffer() | |
| [ 2139] 2139 X Code 0xffffff8000900cf0 0x0000000000000010 0x000f0000 IOSKMemoryBuffer::~IOSKMemoryBuffer() | |
| [ 2140] 2140 X Data 0xffffff8000ac3798 0x0000000000000028 0x000f0000 IOSimpleReporter::gMetaClass | |
| [ 2141] 2141 X Invalid 0xffffff8000b2f890 0x0000000000000008 0x000f0000 IOSimpleReporter::superClass | |
| [ 2142] 2142 X Code 0xffffff80008f8810 0x00000000000000c0 0x000f0000 IOSimpleReporter::incrementValue(unsigned long long, long long) | |
| [ 2143] 2143 X Code 0xffffff80008f86c0 0x0000000000000090 0x000f0000 IOSimpleReporter::with(IOService*, unsigned short, unsigned long long) | |
| [ 2144] 2144 X Code 0xffffff80008f88d0 0x00000000000000a0 0x000f0000 IOSimpleReporter::getValue(unsigned long long) | |
| [ 2145] 2145 X Code 0xffffff80008f8120 0x0000000000000020 0x000f0000 IOSimpleReporter::initWith(IOService*, unsigned short, unsigned long long) | |
| [ 2146] 2146 X Code 0xffffff80008f8750 0x00000000000000c0 0x000f0000 IOSimpleReporter::setValue(unsigned long long, long long) | |
| [ 2147] 2147 X Code 0xffffff80008f8570 0x0000000000000040 0x000f0000 IOSimpleReporter::MetaClass::MetaClass() | |
| [ 2148] 2148 X Code 0xffffff80008f8600 0x0000000000000040 0x000f0000 IOSimpleReporter::MetaClass::MetaClass() | |
| [ 2149] 2149 X Invalid 0xffffff8000b2f888 0x0000000000000008 0x000f0000 IOSimpleReporter::metaClass | |
| [ 2150] 2150 X Code 0xffffff80008f85d0 0x0000000000000020 0x000f0000 IOSimpleReporter::IOSimpleReporter(OSMetaClass const*) | |
| [ 2151] 2151 X Code 0xffffff80008f8640 0x0000000000000040 0x000f0000 IOSimpleReporter::IOSimpleReporter() | |
| [ 2152] 2152 X Code 0xffffff80008f85b0 0x0000000000000020 0x000f0000 IOSimpleReporter::IOSimpleReporter(OSMetaClass const*) | |
| [ 2153] 2153 X Code 0xffffff80008f8680 0x0000000000000040 0x000f0000 IOSimpleReporter::IOSimpleReporter() | |
| [ 2154] 2154 X Code 0xffffff80008f80d0 0x0000000000000040 0x000f0000 IOSimpleReporter::~IOSimpleReporter() | |
| [ 2155] 2155 X Code 0xffffff80008f80c0 0x0000000000000010 0x000f0000 IOSimpleReporter::~IOSimpleReporter() | |
| [ 2156] 2156 X Code 0xffffff80008f85f0 0x0000000000000010 0x000f0000 IOSimpleReporter::~IOSimpleReporter() | |
| [ 2157] 2157 X Data 0xffffff8000ac31e0 0x0000000000000028 0x000f0000 IOBigMemoryCursor::gMetaClass | |
| [ 2158] 2158 X Invalid 0xffffff8000b24360 0x0000000000000008 0x000f0000 IOBigMemoryCursor::superClass | |
| [ 2159] 2159 X Code 0xffffff80008c8370 0x0000000000000020 0x000f0000 IOBigMemoryCursor::outputSegment(IOMemoryCursor::PhysicalSegment, void*, unsigned int) | |
| [ 2160] 2160 X Code 0xffffff80008c94b0 0x0000000000000090 0x000f0000 IOBigMemoryCursor::withSpecification(unsigned long long, unsigned long long, unsigned long long) | |
| [ 2161] 2161 X Code 0xffffff80008c82b0 0x00000000000000a0 0x000f0000 IOBigMemoryCursor::initWithSpecification(unsigned long long, unsigned long long, unsigned long long) | |
| [ 2162] 2162 X Code 0xffffff80008c9360 0x0000000000000040 0x000f0000 IOBigMemoryCursor::MetaClass::MetaClass() | |
| [ 2163] 2163 X Code 0xffffff80008c93f0 0x0000000000000040 0x000f0000 IOBigMemoryCursor::MetaClass::MetaClass() | |
| [ 2164] 2164 X Invalid 0xffffff8000b24368 0x0000000000000008 0x000f0000 IOBigMemoryCursor::metaClass | |
| [ 2165] 2165 X Code 0xffffff80008c93c0 0x0000000000000020 0x000f0000 IOBigMemoryCursor::IOBigMemoryCursor(OSMetaClass const*) | |
| [ 2166] 2166 X Code 0xffffff80008c9430 0x0000000000000040 0x000f0000 IOBigMemoryCursor::IOBigMemoryCursor() | |
| [ 2167] 2167 X Code 0xffffff80008c93a0 0x0000000000000020 0x000f0000 IOBigMemoryCursor::IOBigMemoryCursor(OSMetaClass const*) | |
| [ 2168] 2168 X Code 0xffffff80008c9470 0x0000000000000040 0x000f0000 IOBigMemoryCursor::IOBigMemoryCursor() | |
| [ 2169] 2169 X Code 0xffffff80008c8260 0x0000000000000040 0x000f0000 IOBigMemoryCursor::~IOBigMemoryCursor() | |
| [ 2170] 2170 X Code 0xffffff80008c8250 0x0000000000000010 0x000f0000 IOBigMemoryCursor::~IOBigMemoryCursor() | |
| [ 2171] 2171 X Code 0xffffff80008c93e0 0x0000000000000010 0x000f0000 IOBigMemoryCursor::~IOBigMemoryCursor() | |
| [ 2172] 2172 X Data 0xffffff8000ac2f38 0x0000000000000028 0x000f0000 IOPolledInterface::gMetaClass | |
| [ 2173] 2173 X Invalid 0xffffff8000b20d58 0x0000000000000008 0x000f0000 IOPolledInterface::superClass | |
| [ 2174] 2174 X Code 0xffffff80008b7650 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface0() | |
| [ 2175] 2175 X Code 0xffffff80008b7680 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface1() | |
| [ 2176] 2176 X Code 0xffffff80008b76b0 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface2() | |
| [ 2177] 2177 X Code 0xffffff80008b76e0 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface3() | |
| [ 2178] 2178 X Code 0xffffff80008b7710 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface4() | |
| [ 2179] 2179 X Code 0xffffff80008b7740 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface5() | |
| [ 2180] 2180 X Code 0xffffff80008b7770 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface6() | |
| [ 2181] 2181 X Code 0xffffff80008b77a0 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface7() | |
| [ 2182] 2182 X Code 0xffffff80008b77d0 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface8() | |
| [ 2183] 2183 X Code 0xffffff80008b7800 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface9() | |
| [ 2184] 2184 X Code 0xffffff80008b7830 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface10() | |
| [ 2185] 2185 X Code 0xffffff80008b7860 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface11() | |
| [ 2186] 2186 X Code 0xffffff80008b7890 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface12() | |
| [ 2187] 2187 X Code 0xffffff80008b78c0 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface13() | |
| [ 2188] 2188 X Code 0xffffff80008b78f0 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface14() | |
| [ 2189] 2189 X Code 0xffffff80008b7920 0x0000000000000030 0x000f0000 IOPolledInterface::_RESERVEDIOPolledInterface15() | |
| [ 2190] 2190 X Code 0xffffff80008b81a0 0x0000000000000040 0x000f0000 IOPolledInterface::MetaClass::MetaClass() | |
| [ 2191] 2191 X Code 0xffffff80008b8210 0x0000000000000040 0x000f0000 IOPolledInterface::MetaClass::MetaClass() | |
| [ 2192] 2192 X Invalid 0xffffff8000b20d50 0x0000000000000008 0x000f0000 IOPolledInterface::metaClass | |
| [ 2193] 2193 X Code 0xffffff80008b81e0 0x0000000000000020 0x000f0000 IOPolledInterface::IOPolledInterface(OSMetaClass const*) | |
| [ 2194] 2194 X Code 0xffffff80008b7600 0x0000000000000040 0x000f0000 IOPolledInterface::~IOPolledInterface() | |
| [ 2195] 2195 X Code 0xffffff80008b75f0 0x0000000000000010 0x000f0000 IOPolledInterface::~IOPolledInterface() | |
| [ 2196] 2196 X Code 0xffffff80008b8200 0x0000000000000010 0x000f0000 IOPolledInterface::~IOPolledInterface() | |
| [ 2197] 2197 X Data 0xffffff8000ac3870 0x0000000000000028 0x000f0000 IOPowerConnection::gMetaClass | |
| [ 2198] 2198 X Invalid 0xffffff8000b30d28 0x0000000000000008 0x000f0000 IOPowerConnection::superClass | |
| [ 2199] 2199 X Code 0xffffff80008ff840 0x0000000000000010 0x000f0000 IOPowerConnection::setReadyFlag(bool) | |
| [ 2200] 2200 X Code 0xffffff80008ff830 0x0000000000000010 0x000f0000 IOPowerConnection::getAwaitingAck() | |
| [ 2201] 2201 X Code 0xffffff80008ff820 0x0000000000000010 0x000f0000 IOPowerConnection::setAwaitingAck(bool) | |
| [ 2202] 2202 X Code 0xffffff80008ff800 0x0000000000000010 0x000f0000 IOPowerConnection::parentKnowsState() | |
| [ 2203] 2203 X Code 0xffffff80008ff7e0 0x0000000000000010 0x000f0000 IOPowerConnection::setParentKnowsState(bool) | |
| [ 2204] 2204 X Code 0xffffff80008ff730 0x0000000000000010 0x000f0000 IOPowerConnection::getDesiredDomainState() | |
| [ 2205] 2205 X Code 0xffffff80008ff720 0x0000000000000010 0x000f0000 IOPowerConnection::setDesiredDomainState(unsigned long) | |
| [ 2206] 2206 X Code 0xffffff80008ff750 0x0000000000000010 0x000f0000 IOPowerConnection::childHasRequestedPower() | |
| [ 2207] 2207 X Code 0xffffff80008ff780 0x0000000000000020 0x000f0000 IOPowerConnection::getPreventIdleSleepFlag() | |
| [ 2208] 2208 X Code 0xffffff80008ff810 0x0000000000000010 0x000f0000 IOPowerConnection::parentCurrentPowerFlags() | |
| [ 2209] 2209 X Code 0xffffff80008ff760 0x0000000000000020 0x000f0000 IOPowerConnection::setPreventIdleSleepFlag(unsigned long) | |
| [ 2210] 2210 X Code 0xffffff80008ff7c0 0x0000000000000020 0x000f0000 IOPowerConnection::getPreventSystemSleepFlag() | |
| [ 2211] 2211 X Code 0xffffff80008ff740 0x0000000000000010 0x000f0000 IOPowerConnection::setChildHasRequestedPower() | |
| [ 2212] 2212 X Code 0xffffff80008ff7a0 0x0000000000000020 0x000f0000 IOPowerConnection::setPreventSystemSleepFlag(unsigned long) | |
| [ 2213] 2213 X Code 0xffffff80008ff7f0 0x0000000000000010 0x000f0000 IOPowerConnection::setParentCurrentPowerFlags(unsigned long) | |
| [ 2214] 2214 X Code 0xffffff80008ff5d0 0x0000000000000040 0x000f0000 IOPowerConnection::MetaClass::MetaClass() | |
| [ 2215] 2215 X Code 0xffffff80008ff660 0x0000000000000040 0x000f0000 IOPowerConnection::MetaClass::MetaClass() | |
| [ 2216] 2216 X Invalid 0xffffff8000b30d20 0x0000000000000008 0x000f0000 IOPowerConnection::metaClass | |
| [ 2217] 2217 X Code 0xffffff80008ff630 0x0000000000000020 0x000f0000 IOPowerConnection::IOPowerConnection(OSMetaClass const*) | |
| [ 2218] 2218 X Code 0xffffff80008ff6a0 0x0000000000000040 0x000f0000 IOPowerConnection::IOPowerConnection() | |
| [ 2219] 2219 X Code 0xffffff80008ff610 0x0000000000000020 0x000f0000 IOPowerConnection::IOPowerConnection(OSMetaClass const*) | |
| [ 2220] 2220 X Code 0xffffff80008ff6e0 0x0000000000000040 0x000f0000 IOPowerConnection::IOPowerConnection() | |
| [ 2221] 2221 X Code 0xffffff80008ff150 0x0000000000000040 0x000f0000 IOPowerConnection::~IOPowerConnection() | |
| [ 2222] 2222 X Code 0xffffff80008ff140 0x0000000000000010 0x000f0000 IOPowerConnection::~IOPowerConnection() | |
| [ 2223] 2223 X Code 0xffffff80008ff650 0x0000000000000010 0x000f0000 IOPowerConnection::~IOPowerConnection() | |
| [ 2224] 2224 X Data 0xffffff8000ac36d0 0x0000000000000028 0x000f0000 IOSharedDataQueue::gMetaClass | |
| [ 2225] 2225 X Invalid 0xffffff8000b2f350 0x0000000000000008 0x000f0000 IOSharedDataQueue::superClass | |
| [ 2226] 2226 X Code 0xffffff80008f01b0 0x0000000000000090 0x000f0000 IOSharedDataQueue::withEntries(unsigned int, unsigned int) | |
| [ 2227] 2227 X Code 0xffffff80008f0260 0x0000000000000020 0x000f0000 IOSharedDataQueue::getQueueSize() | |
| [ 2228] 2228 X Code 0xffffff80008f0240 0x0000000000000020 0x000f0000 IOSharedDataQueue::setQueueSize(unsigned int) | |
| [ 2229] 2229 X Code 0xffffff80008f0130 0x0000000000000080 0x000f0000 IOSharedDataQueue::withCapacity(unsigned int) | |
| [ 2230] 2230 X Code 0xffffff80008ef630 0x00000000000000f0 0x000f0000 IOSharedDataQueue::initWithCapacity(unsigned int) | |
| [ 2231] 2231 X Code 0xffffff80008ef840 0x0000000000000040 0x000f0000 IOSharedDataQueue::getMemoryDescriptor() | |
| [ 2232] 2232 X Code 0xffffff80008efa30 0x0000000000000030 0x000f0000 IOSharedDataQueue::_RESERVEDIOSharedDataQueue0() | |
| [ 2233] 2233 X Code 0xffffff80008efa60 0x0000000000000030 0x000f0000 IOSharedDataQueue::_RESERVEDIOSharedDataQueue1() | |
| [ 2234] 2234 X Code 0xffffff80008efa90 0x0000000000000030 0x000f0000 IOSharedDataQueue::_RESERVEDIOSharedDataQueue2() | |
| [ 2235] 2235 X Code 0xffffff80008efac0 0x0000000000000030 0x000f0000 IOSharedDataQueue::_RESERVEDIOSharedDataQueue3() | |
| [ 2236] 2236 X Code 0xffffff80008efaf0 0x0000000000000030 0x000f0000 IOSharedDataQueue::_RESERVEDIOSharedDataQueue4() | |
| [ 2237] 2237 X Code 0xffffff80008efb20 0x0000000000000030 0x000f0000 IOSharedDataQueue::_RESERVEDIOSharedDataQueue5() | |
| [ 2238] 2238 X Code 0xffffff80008efb50 0x0000000000000030 0x000f0000 IOSharedDataQueue::_RESERVEDIOSharedDataQueue6() | |
| [ 2239] 2239 X Code 0xffffff80008efb80 0x0000000000000030 0x000f0000 IOSharedDataQueue::_RESERVEDIOSharedDataQueue7() | |
| [ 2240] 2240 X Code 0xffffff80008ef5a0 0x0000000000000090 0x000f0000 IOSharedDataQueue::free() | |
| [ 2241] 2241 X Code 0xffffff80008ef880 0x0000000000000080 0x000f0000 IOSharedDataQueue::peek() | |
| [ 2242] 2242 X Code 0xffffff80008ef900 0x0000000000000130 0x000f0000 IOSharedDataQueue::dequeue(void*, unsigned int*) | |
| [ 2243] 2243 X Code 0xffffff80008ef720 0x0000000000000120 0x000f0000 IOSharedDataQueue::enqueue(void*, unsigned int) | |
| [ 2244] 2244 X Code 0xffffff80008effe0 0x0000000000000040 0x000f0000 IOSharedDataQueue::MetaClass::MetaClass() | |
| [ 2245] 2245 X Code 0xffffff80008f0070 0x0000000000000040 0x000f0000 IOSharedDataQueue::MetaClass::MetaClass() | |
| [ 2246] 2246 X Invalid 0xffffff8000b2f348 0x0000000000000008 0x000f0000 IOSharedDataQueue::metaClass | |
| [ 2247] 2247 X Code 0xffffff80008f0040 0x0000000000000020 0x000f0000 IOSharedDataQueue::IOSharedDataQueue(OSMetaClass const*) | |
| [ 2248] 2248 X Code 0xffffff80008f00b0 0x0000000000000040 0x000f0000 IOSharedDataQueue::IOSharedDataQueue() | |
| [ 2249] 2249 X Code 0xffffff80008f0020 0x0000000000000020 0x000f0000 IOSharedDataQueue::IOSharedDataQueue(OSMetaClass const*) | |
| [ 2250] 2250 X Code 0xffffff80008f00f0 0x0000000000000040 0x000f0000 IOSharedDataQueue::IOSharedDataQueue() | |
| [ 2251] 2251 X Code 0xffffff80008ef550 0x0000000000000040 0x000f0000 IOSharedDataQueue::~IOSharedDataQueue() | |
| [ 2252] 2252 X Code 0xffffff80008ef540 0x0000000000000010 0x000f0000 IOSharedDataQueue::~IOSharedDataQueue() | |
| [ 2253] 2253 X Code 0xffffff80008f0060 0x0000000000000010 0x000f0000 IOSharedDataQueue::~IOSharedDataQueue() | |
| [ 2254] 2254 X Code 0xffffff80008f3dd0 0x0000000000000020 0x000f0000 IOWorkLoopCounter::loadTagCompare(IOWorkLoopDependency*, IOWorkLoopDependency*) | |
| [ 2255] 2255 X Code 0xffffff80008f4c00 0x0000000000000040 0x000f0000 IOWorkLoopCounter::DependencyTree_RB_FIND(IOWorkLoopCounter::DependencyTree*, IOWorkLoopDependency*) | |
| [ 2256] 2256 X Code 0xffffff80008f4c40 0x0000000000000080 0x000f0000 IOWorkLoopCounter::DependencyTree_RB_NEXT(IOWorkLoopDependency*) | |
| [ 2257] 2257 X Code 0xffffff80008f4b40 0x00000000000000c0 0x000f0000 IOWorkLoopCounter::DependencyTree_RB_INSERT(IOWorkLoopCounter::DependencyTree*, IOWorkLoopDependency*) | |
| [ 2258] 2258 X Code 0xffffff80008f4cc0 0x0000000000000030 0x000f0000 IOWorkLoopCounter::DependencyTree_RB_MINMAX(IOWorkLoopCounter::DependencyTree*, int) | |
| [ 2259] 2259 X Code 0xffffff80008f49a0 0x00000000000001a0 0x000f0000 IOWorkLoopCounter::DependencyTree_RB_REMOVE(IOWorkLoopCounter::DependencyTree*, IOWorkLoopDependency*) | |
| [ 2260] 2260 X Code 0xffffff80008f3e10 0x0000000000000010 0x000f0000 IOWorkLoopCounter::DependencyTree_RB_GETCOLOR(IOWorkLoopDependency*) | |
| [ 2261] 2261 X Code 0xffffff80008f3e20 0x0000000000000030 0x000f0000 IOWorkLoopCounter::DependencyTree_RB_SETCOLOR(IOWorkLoopDependency*, int) | |
| [ 2262] 2262 X Code 0xffffff80008f3df0 0x0000000000000020 0x000f0000 IOWorkLoopCounter::DependencyTree_RB_GETPARENT(IOWorkLoopDependency*) | |
| [ 2263] 2263 X Code 0xffffff80008f3e50 0x0000000000000040 0x000f0000 IOWorkLoopCounter::DependencyTree_RB_SETPARENT(IOWorkLoopDependency*, IOWorkLoopDependency*) | |
| [ 2264] 2264 X Code 0xffffff80008f3e90 0x0000000000000420 0x000f0000 IOWorkLoopCounter::DependencyTree_RB_INSERT_COLOR(IOWorkLoopCounter::DependencyTree*, IOWorkLoopDependency*) | |
| [ 2265] 2265 X Code 0xffffff80008f42b0 0x00000000000006f0 0x000f0000 IOWorkLoopCounter::DependencyTree_RB_REMOVE_COLOR(IOWorkLoopCounter::DependencyTree*, IOWorkLoopDependency*, IOWorkLoopDependency*) | |
| [ 2266] 2266 X Code 0xffffff80008d5ed0 0x0000000000000080 0x000f0000 IODTPlatformExpert::createNubs(IOService*, OSIterator*) | |
| [ 2267] 2267 X Data 0xffffff8000ac33d8 0x0000000000000028 0x000f0000 IODTPlatformExpert::gMetaClass | |
| [ 2268] 2268 X Invalid 0xffffff8000b26798 0x0000000000000008 0x000f0000 IODTPlatformExpert::superClass | |
| [ 2269] 2269 X Code 0xffffff80008d87b0 0x0000000000000030 0x000f0000 IODTPlatformExpert::writeXPRAM(unsigned long long, unsigned char*, unsigned long long) | |
| [ 2270] 2270 X Code 0xffffff80008d5aa0 0x0000000000000060 0x000f0000 IODTPlatformExpert::haltRestart(unsigned int) | |
| [ 2271] 2271 X Code 0xffffff80008d5930 0x00000000000000d0 0x000f0000 IODTPlatformExpert::getModelName(char*, int) | |
| [ 2272] 2272 X Code 0xffffff80008d5b30 0x0000000000000030 0x000f0000 IODTPlatformExpert::savePanicInfo(unsigned char*, unsigned long long) | |
| [ 2273] 2273 X Code 0xffffff80008d5a00 0x00000000000000a0 0x000f0000 IODTPlatformExpert::getMachineName(char*, int) | |
| [ 2274] 2274 X Code 0xffffff80008d58f0 0x0000000000000040 0x000f0000 IODTPlatformExpert::getNubResources(IOService*) | |
| [ 2275] 2275 X Code 0xffffff80008d5c70 0x00000000000001e0 0x000f0000 IODTPlatformExpert::processTopLevel(IORegistryEntry*) | |
| [ 2276] 2276 X Code 0xffffff80008d5f50 0x0000000000000030 0x000f0000 IODTPlatformExpert::readNVRAMProperty(IORegistryEntry*, OSSymbol const**, OSData**) | |
| [ 2277] 2277 X Code 0xffffff80008d87e0 0x0000000000000020 0x000f0000 IODTPlatformExpert::getNVRAMPartitions() | |
| [ 2278] 2278 X Code 0xffffff80008d8800 0x0000000000000030 0x000f0000 IODTPlatformExpert::readNVRAMPartition(OSSymbol const*, unsigned long long, unsigned char*, unsigned long long) | |
| [ 2279] 2279 X Code 0xffffff80008d5f80 0x0000000000000030 0x000f0000 IODTPlatformExpert::writeNVRAMProperty(IORegistryEntry*, OSSymbol const*, OSData*) | |
| [ 2280] 2280 X Code 0xffffff80008d8830 0x0000000000000030 0x000f0000 IODTPlatformExpert::writeNVRAMPartition(OSSymbol const*, unsigned long long, unsigned char*, unsigned long long) | |
| [ 2281] 2281 X Code 0xffffff80008d5b00 0x0000000000000030 0x000f0000 IODTPlatformExpert::registerNVRAMController(IONVRAMController*) | |
| [ 2282] 2282 X Code 0xffffff80008d5fb0 0x0000000000000030 0x000f0000 IODTPlatformExpert::_RESERVEDIODTPlatformExpert0() | |
| [ 2283] 2283 X Code 0xffffff80008d5fe0 0x0000000000000030 0x000f0000 IODTPlatformExpert::_RESERVEDIODTPlatformExpert1() | |
| [ 2284] 2284 X Code 0xffffff80008d6010 0x0000000000000030 0x000f0000 IODTPlatformExpert::_RESERVEDIODTPlatformExpert2() | |
| [ 2285] 2285 X Code 0xffffff80008d6040 0x0000000000000030 0x000f0000 IODTPlatformExpert::_RESERVEDIODTPlatformExpert3() | |
| [ 2286] 2286 X Code 0xffffff80008d6070 0x0000000000000030 0x000f0000 IODTPlatformExpert::_RESERVEDIODTPlatformExpert4() | |
| [ 2287] 2287 X Code 0xffffff80008d60a0 0x0000000000000030 0x000f0000 IODTPlatformExpert::_RESERVEDIODTPlatformExpert5() | |
| [ 2288] 2288 X Code 0xffffff80008d60d0 0x0000000000000030 0x000f0000 IODTPlatformExpert::_RESERVEDIODTPlatformExpert6() | |
| [ 2289] 2289 X Code 0xffffff80008d6100 0x0000000000000030 0x000f0000 IODTPlatformExpert::_RESERVEDIODTPlatformExpert7() | |
| [ 2290] 2290 X Code 0xffffff80008d5b60 0x0000000000000110 0x000f0000 IODTPlatformExpert::createSystemSerialNumberString(OSData*) | |
| [ 2291] 2291 X Code 0xffffff80008d57e0 0x0000000000000060 0x000f0000 IODTPlatformExpert::probe(IOService*, int*) | |
| [ 2292] 2292 X Code 0xffffff80008d86d0 0x0000000000000040 0x000f0000 IODTPlatformExpert::MetaClass::MetaClass() | |
| [ 2293] 2293 X Code 0xffffff80008d8740 0x0000000000000040 0x000f0000 IODTPlatformExpert::MetaClass::MetaClass() | |
| [ 2294] 2294 X Code 0xffffff80008d5840 0x0000000000000030 0x000f0000 IODTPlatformExpert::configure(IOService*) | |
| [ 2295] 2295 X Code 0xffffff80008d5e50 0x0000000000000080 0x000f0000 IODTPlatformExpert::createNub(IORegistryEntry*) | |
| [ 2296] 2296 X Invalid 0xffffff8000b267a0 0x0000000000000008 0x000f0000 IODTPlatformExpert::metaClass | |
| [ 2297] 2297 X Code 0xffffff80008d8780 0x0000000000000030 0x000f0000 IODTPlatformExpert::readXPRAM(unsigned long long, unsigned char*, unsigned long long) | |
| [ 2298] 2298 X Code 0xffffff80008d8710 0x0000000000000020 0x000f0000 IODTPlatformExpert::IODTPlatformExpert(OSMetaClass const*) | |
| [ 2299] 2299 X Code 0xffffff80008d5790 0x0000000000000040 0x000f0000 IODTPlatformExpert::~IODTPlatformExpert() | |
| [ 2300] 2300 X Code 0xffffff80008d5780 0x0000000000000010 0x000f0000 IODTPlatformExpert::~IODTPlatformExpert() | |
| [ 2301] 2301 X Code 0xffffff80008d8730 0x0000000000000010 0x000f0000 IODTPlatformExpert::~IODTPlatformExpert() | |
| [ 2302] 2302 X Code 0xffffff80008ca960 0x0000000000000050 0x000f0000 IOMemoryDescriptor::addMapping(IOMemoryMap*) | |
| [ 2303] 2303 X Data 0xffffff8000ac3238 0x0000000000000028 0x000f0000 IOMemoryDescriptor::gMetaClass | |
| [ 2304] 2304 X Code 0xffffff80008d1830 0x0000000000000070 0x000f0000 IOMemoryDescriptor::initialize() | |
| [ 2305] 2305 X Code 0xffffff80008ca360 0x0000000000000050 0x000f0000 IOMemoryDescriptor::setMapping(task*, unsigned long long, unsigned int) | |
| [ 2306] 2306 X Invalid 0xffffff8000b24b18 0x0000000000000008 0x000f0000 IOMemoryDescriptor::superClass | |
| [ 2307] 2307 X Code 0xffffff80008ca140 0x00000000000001d0 0x000f0000 IOMemoryDescriptor::writeBytes(unsigned long long, void const*, unsigned long long) | |
| [ 2308] 2308 X Code 0xffffff80008d0970 0x0000000000000070 0x000f0000 IOMemoryDescriptor::handleFault(void*, unsigned long long, unsigned long long) | |
| [ 2309] 2309 X Code 0xffffff80008ca550 0x0000000000000410 0x000f0000 IOMemoryDescriptor::makeMapping(IOMemoryDescriptor*, task*, unsigned long long, unsigned int, unsigned long long, unsigned long long) | |
| [ 2310] 2310 X Code 0xffffff80008d0cd0 0x00000000000000d0 0x000f0000 IOMemoryDescriptor::withAddress(void*, unsigned long long, unsigned int) | |
| [ 2311] 2311 X Code 0xffffff80008d0fd0 0x00000000000000b0 0x000f0000 IOMemoryDescriptor::withOptions(void*, unsigned int, unsigned int, task*, unsigned int, IOMapper*) | |
| [ 2312] 2312 X Code 0xffffff80008c97f0 0x00000000000001f0 0x000f0000 IOMemoryDescriptor::setPurgeable(unsigned int, unsigned int*) | |
| [ 2313] 2313 X Code 0xffffff80008d12f0 0x00000000000001c0 0x000f0000 IOMemoryDescriptor::getPageCounts(unsigned long long*, unsigned long long*) | |
| [ 2314] 2314 X Code 0xffffff80008ca9b0 0x0000000000000020 0x000f0000 IOMemoryDescriptor::removeMapping(IOMemoryMap*) | |
| [ 2315] 2315 X Code 0xffffff80008c97e0 0x0000000000000010 0x000f0000 IOMemoryDescriptor::initWithOptions(void*, unsigned int, unsigned int, task*, unsigned int, IOMapper*) | |
| [ 2316] 2316 X Code 0xffffff80008c9ce0 0x0000000000000020 0x000f0000 IOMemoryDescriptor::getPreparationID() | |
| [ 2317] 2317 X Code 0xffffff80008c99e0 0x0000000000000170 0x000f0000 IOMemoryDescriptor::performOperation(unsigned int, unsigned long long, unsigned long long) | |
| [ 2318] 2318 X Code 0xffffff80008d11d0 0x0000000000000060 0x000f0000 IOMemoryDescriptor::setPreparationID() | |
| [ 2319] 2319 X Code 0xffffff80008d0da0 0x00000000000000c0 0x000f0000 IOMemoryDescriptor::withAddressRange(unsigned long long, unsigned long long, unsigned int, task*) | |
| [ 2320] 2320 X Code 0xffffff80008d0a80 0x0000000000000040 0x000f0000 IOMemoryDescriptor::getKernelReserved() | |
| [ 2321] 2321 X Code 0xffffff80008d0f10 0x00000000000000c0 0x000f0000 IOMemoryDescriptor::withAddressRanges(IOVirtualRange*, unsigned int, unsigned int, task*) | |
| [ 2322] 2322 X Code 0xffffff80008d18a0 0x0000000000000020 0x000f0000 IOMemoryDescriptor::getPhysicalAddress() | |
| [ 2323] 2323 X Code 0xffffff80008cf010 0x0000000000000130 0x000f0000 IOMemoryDescriptor::createMappingInTask(task*, unsigned long long, unsigned int, unsigned long long, unsigned long long) | |
| [ 2324] 2324 X Code 0xffffff80008cd750 0x0000000000000210 0x000f0000 IOMemoryDescriptor::populateDevicePager(void*, _vm_map*, unsigned long long, unsigned long long, unsigned long long, unsigned int) | |
| [ 2325] 2325 X Code 0xffffff80008d0e60 0x00000000000000b0 0x000f0000 IOMemoryDescriptor::withPhysicalAddress(unsigned long long, unsigned long long, unsigned int) | |
| [ 2326] 2326 X Code 0xffffff80008c9d00 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor1() | |
| [ 2327] 2327 X Code 0xffffff80008c9d30 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor2() | |
| [ 2328] 2328 X Code 0xffffff80008c9d60 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor3() | |
| [ 2329] 2329 X Code 0xffffff80008c9d90 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor4() | |
| [ 2330] 2330 X Code 0xffffff80008c9dc0 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor5() | |
| [ 2331] 2331 X Code 0xffffff80008c9df0 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor6() | |
| [ 2332] 2332 X Code 0xffffff80008c9e20 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor7() | |
| [ 2333] 2333 X Code 0xffffff80008c9e50 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor8() | |
| [ 2334] 2334 X Code 0xffffff80008c9e80 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor9() | |
| [ 2335] 2335 X Code 0xffffff80008c9eb0 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor10() | |
| [ 2336] 2336 X Code 0xffffff80008c9ee0 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor11() | |
| [ 2337] 2337 X Code 0xffffff80008c9f10 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor12() | |
| [ 2338] 2338 X Code 0xffffff80008c9f40 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor13() | |
| [ 2339] 2339 X Code 0xffffff80008c9f70 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor14() | |
| [ 2340] 2340 X Code 0xffffff80008c9fa0 0x0000000000000030 0x000f0000 IOMemoryDescriptor::_RESERVEDIOMemoryDescriptor15() | |
| [ 2341] 2341 X Code 0xffffff80008d1080 0x0000000000000050 0x000f0000 IOMemoryDescriptor::withPersistentMemoryDescriptor(IOMemoryDescriptor*) | |
| [ 2342] 2342 X Code 0xffffff80008ca310 0x0000000000000050 0x000f0000 IOMemoryDescriptor::map(unsigned int) | |
| [ 2343] 2343 X Code 0xffffff80008c9780 0x0000000000000060 0x000f0000 IOMemoryDescriptor::free() | |
| [ 2344] 2344 X Code 0xffffff80008ca9d0 0x0000000000000010 0x000f0000 IOMemoryDescriptor::doMap(_vm_map*, unsigned long long*, unsigned int, unsigned long long, unsigned long long) | |
| [ 2345] 2345 X Code 0xffffff80008d1290 0x0000000000000060 0x000f0000 IOMemoryDescriptor::dmaMap(IOMapper*, IODMACommand*, IODMAMapSpecification const*, unsigned long long, unsigned long long, unsigned long long*, unsigned long long*) | |
| [ 2346] 2346 X Code 0xffffff80008ca000 0x0000000000000010 0x000f0000 IOMemoryDescriptor::getTag() | |
| [ 2347] 2347 X Code 0xffffff80008c9ff0 0x0000000000000010 0x000f0000 IOMemoryDescriptor::setTag(unsigned int) | |
| [ 2348] 2348 X Code 0xffffff80008ca9e0 0x00000000000000f0 0x000f0000 IOMemoryDescriptor::doUnmap(_vm_map*, unsigned long long, unsigned long long) | |
| [ 2349] 2349 X Code 0xffffff80008d0a20 0x0000000000000060 0x000f0000 IOMemoryDescriptor::getVMTag(_vm_map*) | |
| [ 2350] 2350 X Code 0xffffff80008ca3b0 0x00000000000001a0 0x000f0000 IOMemoryDescriptor::redirect(task*, bool) | |
| [ 2351] 2351 X Code 0xffffff80008d0690 0x0000000000000040 0x000f0000 IOMemoryDescriptor::MetaClass::MetaClass() | |
| [ 2352] 2352 X Code 0xffffff80008d0700 0x0000000000000040 0x000f0000 IOMemoryDescriptor::MetaClass::MetaClass() | |
| [ 2353] 2353 X Invalid 0xffffff8000b24b10 0x0000000000000008 0x000f0000 IOMemoryDescriptor::metaClass | |
| [ 2354] 2354 X Code 0xffffff80008ca010 0x0000000000000130 0x000f0000 IOMemoryDescriptor::readBytes(unsigned long long, void*, unsigned long long) | |
| [ 2355] 2355 X Code 0xffffff80008d1230 0x0000000000000060 0x000f0000 IOMemoryDescriptor::setVMTags(unsigned char, unsigned char) | |
| [ 2356] 2356 X Code 0xffffff80008d06d0 0x0000000000000020 0x000f0000 IOMemoryDescriptor::IOMemoryDescriptor(OSMetaClass const*) | |
| [ 2357] 2357 X Code 0xffffff80008c9730 0x0000000000000040 0x000f0000 IOMemoryDescriptor::~IOMemoryDescriptor() | |
| [ 2358] 2358 X Code 0xffffff80008c9720 0x0000000000000010 0x000f0000 IOMemoryDescriptor::~IOMemoryDescriptor() | |
| [ 2359] 2359 X Code 0xffffff80008d06f0 0x0000000000000010 0x000f0000 IOMemoryDescriptor::~IOMemoryDescriptor() | |
| [ 2360] 2360 X Code 0xffffff800088c440 0x0000000000000050 0x000f0000 IORegistryIterator::enterEntry(IORegistryPlane const*) | |
| [ 2361] 2361 X Code 0xffffff800088c420 0x0000000000000020 0x000f0000 IORegistryIterator::enterEntry() | |
| [ 2362] 2362 X Data 0xffffff8000ac2970 0x0000000000000028 0x000f0000 IORegistryIterator::gMetaClass | |
| [ 2363] 2363 X Code 0xffffff800088c500 0x0000000000000050 0x000f0000 IORegistryIterator::iterateAll() | |
| [ 2364] 2364 X Invalid 0xffffff8000b1bf20 0x0000000000000008 0x000f0000 IORegistryIterator::superClass | |
| [ 2365] 2365 X Code 0xffffff800088c550 0x00000000000000d0 0x000f0000 IORegistryIterator::iterateOver(IORegistryEntry*, IORegistryPlane const*, unsigned int) | |
| [ 2366] 2366 X Code 0xffffff800088dea0 0x0000000000000020 0x000f0000 IORegistryIterator::iterateOver(IORegistryPlane const*, unsigned int) | |
| [ 2367] 2367 X Code 0xffffff800088c240 0x0000000000000020 0x000f0000 IORegistryIterator::getNextObject() | |
| [ 2368] 2368 X Code 0xffffff800088c3f0 0x0000000000000030 0x000f0000 IORegistryIterator::getCurrentEntry() | |
| [ 2369] 2369 X Code 0xffffff800088c260 0x0000000000000100 0x000f0000 IORegistryIterator::getNextObjectFlat() | |
| [ 2370] 2370 X Code 0xffffff800088c360 0x0000000000000090 0x000f0000 IORegistryIterator::getNextObjectRecursive() | |
| [ 2371] 2371 X Code 0xffffff800088c110 0x0000000000000050 0x000f0000 IORegistryIterator::free() | |
| [ 2372] 2372 X Code 0xffffff800088c160 0x0000000000000050 0x000f0000 IORegistryIterator::reset() | |
| [ 2373] 2373 X Code 0xffffff800088c1b0 0x0000000000000090 0x000f0000 IORegistryIterator::isValid() | |
| [ 2374] 2374 X Code 0xffffff800088dd50 0x0000000000000040 0x000f0000 IORegistryIterator::MetaClass::MetaClass() | |
| [ 2375] 2375 X Code 0xffffff800088dde0 0x0000000000000040 0x000f0000 IORegistryIterator::MetaClass::MetaClass() | |
| [ 2376] 2376 X Code 0xffffff800088c490 0x0000000000000070 0x000f0000 IORegistryIterator::exitEntry() | |
| [ 2377] 2377 X Invalid 0xffffff8000b1bf28 0x0000000000000008 0x000f0000 IORegistryIterator::metaClass | |
| [ 2378] 2378 X Code 0xffffff800088ddb0 0x0000000000000020 0x000f0000 IORegistryIterator::IORegistryIterator(OSMetaClass const*) | |
| [ 2379] 2379 X Code 0xffffff800088de20 0x0000000000000040 0x000f0000 IORegistryIterator::IORegistryIterator() | |
| [ 2380] 2380 X Code 0xffffff800088dd90 0x0000000000000020 0x000f0000 IORegistryIterator::IORegistryIterator(OSMetaClass const*) | |
| [ 2381] 2381 X Code 0xffffff800088de60 0x0000000000000040 0x000f0000 IORegistryIterator::IORegistryIterator() | |
| [ 2382] 2382 X Code 0xffffff800088c0c0 0x0000000000000040 0x000f0000 IORegistryIterator::~IORegistryIterator() | |
| [ 2383] 2383 X Code 0xffffff800088c0b0 0x0000000000000010 0x000f0000 IORegistryIterator::~IORegistryIterator() | |
| [ 2384] 2384 X Code 0xffffff800088ddd0 0x0000000000000010 0x000f0000 IORegistryIterator::~IORegistryIterator() | |
| [ 2385] 2385 X Data 0xffffff8000ac30c8 0x0000000000000028 0x000f0000 IOTimerEventSource::gMetaClass | |
| [ 2386] 2386 X Code 0xffffff80008c0f70 0x0000000000000040 0x000f0000 IOTimerEventSource::setTimeout(unsigned int, unsigned int) | |
| [ 2387] 2387 X Code 0xffffff80008c0fb0 0x0000000000000030 0x000f0000 IOTimerEventSource::setTimeout(unsigned long long) | |
| [ 2388] 2388 X Invalid 0xffffff8000b22a28 0x0000000000000008 0x000f0000 IOTimerEventSource::superClass | |
| [ 2389] 2389 X Code 0xffffff80008c1040 0x0000000000000020 0x000f0000 IOTimerEventSource::wakeAtTime(unsigned int, unsigned int) | |
| [ 2390] 2390 X Code 0xffffff80008c1060 0x00000000000000e0 0x000f0000 IOTimerEventSource::wakeAtTime(unsigned long long) | |
| [ 2391] 2391 X Code 0xffffff80008c0d60 0x0000000000000050 0x000f0000 IOTimerEventSource::setWorkLoop(IOWorkLoop*) | |
| [ 2392] 2392 X Code 0xffffff80008c0f30 0x0000000000000020 0x000f0000 IOTimerEventSource::setTimeoutMS(unsigned int) | |
| [ 2393] 2393 X Code 0xffffff80008c0f50 0x0000000000000020 0x000f0000 IOTimerEventSource::setTimeoutUS(unsigned int) | |
| [ 2394] 2394 X Code 0xffffff80008c1000 0x0000000000000020 0x000f0000 IOTimerEventSource::wakeAtTimeMS(unsigned int) | |
| [ 2395] 2395 X Code 0xffffff80008c1020 0x0000000000000020 0x000f0000 IOTimerEventSource::wakeAtTimeUS(unsigned int) | |
| [ 2396] 2396 X Code 0xffffff80008c1140 0x0000000000000050 0x000f0000 IOTimerEventSource::cancelTimeout() | |
| [ 2397] 2397 X Code 0xffffff80008c0e40 0x0000000000000080 0x000f0000 IOTimerEventSource::setTimeoutFunc() | |
| [ 2398] 2398 X Code 0xffffff80008c0f10 0x0000000000000020 0x000f0000 IOTimerEventSource::setTimeoutTicks(unsigned int) | |
| [ 2399] 2399 X Code 0xffffff80008c0fe0 0x0000000000000020 0x000f0000 IOTimerEventSource::wakeAtTimeTicks(unsigned int) | |
| [ 2400] 2400 X Code 0xffffff80008c1cb0 0x0000000000000090 0x000f0000 IOTimerEventSource::timerEventSource(OSObject*, void (*)(OSObject*, IOTimerEventSource*)) | |
| [ 2401] 2401 X Code 0xffffff80008c1310 0x0000000000000220 0x000f0000 IOTimerEventSource::timeoutAndRelease(void*, void*) | |
| [ 2402] 2402 X Code 0xffffff80008c1190 0x0000000000000030 0x000f0000 IOTimerEventSource::_RESERVEDIOTimerEventSource0() | |
| [ 2403] 2403 X Code 0xffffff80008c11c0 0x0000000000000030 0x000f0000 IOTimerEventSource::_RESERVEDIOTimerEventSource1() | |
| [ 2404] 2404 X Code 0xffffff80008c11f0 0x0000000000000030 0x000f0000 IOTimerEventSource::_RESERVEDIOTimerEventSource2() | |
| [ 2405] 2405 X Code 0xffffff80008c1220 0x0000000000000030 0x000f0000 IOTimerEventSource::_RESERVEDIOTimerEventSource3() | |
| [ 2406] 2406 X Code 0xffffff80008c1250 0x0000000000000030 0x000f0000 IOTimerEventSource::_RESERVEDIOTimerEventSource4() | |
| [ 2407] 2407 X Code 0xffffff80008c1280 0x0000000000000030 0x000f0000 IOTimerEventSource::_RESERVEDIOTimerEventSource5() | |
| [ 2408] 2408 X Code 0xffffff80008c12b0 0x0000000000000030 0x000f0000 IOTimerEventSource::_RESERVEDIOTimerEventSource6() | |
| [ 2409] 2409 X Code 0xffffff80008c12e0 0x0000000000000030 0x000f0000 IOTimerEventSource::_RESERVEDIOTimerEventSource7() | |
| [ 2410] 2410 X Code 0xffffff80008c0d10 0x0000000000000050 0x000f0000 IOTimerEventSource::free() | |
| [ 2411] 2411 X Code 0xffffff80008c0ec0 0x0000000000000050 0x000f0000 IOTimerEventSource::init(OSObject*, void (*)(OSObject*, IOTimerEventSource*)) | |
| [ 2412] 2412 X Code 0xffffff80008c0db0 0x0000000000000040 0x000f0000 IOTimerEventSource::enable() | |
| [ 2413] 2413 X Code 0xffffff80008c0df0 0x0000000000000050 0x000f0000 IOTimerEventSource::disable() | |
| [ 2414] 2414 X Code 0xffffff80008c1ab0 0x0000000000000200 0x000f0000 IOTimerEventSource::timeout(void*) | |
| [ 2415] 2415 X Code 0xffffff80008c1960 0x0000000000000040 0x000f0000 IOTimerEventSource::MetaClass::MetaClass() | |
| [ 2416] 2416 X Code 0xffffff80008c19f0 0x0000000000000040 0x000f0000 IOTimerEventSource::MetaClass::MetaClass() | |
| [ 2417] 2417 X Invalid 0xffffff8000b22a20 0x0000000000000008 0x000f0000 IOTimerEventSource::metaClass | |
| [ 2418] 2418 X Code 0xffffff80008c19c0 0x0000000000000020 0x000f0000 IOTimerEventSource::IOTimerEventSource(OSMetaClass const*) | |
| [ 2419] 2419 X Code 0xffffff80008c1a30 0x0000000000000040 0x000f0000 IOTimerEventSource::IOTimerEventSource() | |
| [ 2420] 2420 X Code 0xffffff80008c19a0 0x0000000000000020 0x000f0000 IOTimerEventSource::IOTimerEventSource(OSMetaClass const*) | |
| [ 2421] 2421 X Code 0xffffff80008c1a70 0x0000000000000040 0x000f0000 IOTimerEventSource::IOTimerEventSource() | |
| [ 2422] 2422 X Code 0xffffff80008c0cc0 0x0000000000000040 0x000f0000 IOTimerEventSource::~IOTimerEventSource() | |
| [ 2423] 2423 X Code 0xffffff80008c0cb0 0x0000000000000010 0x000f0000 IOTimerEventSource::~IOTimerEventSource() | |
| [ 2424] 2424 X Code 0xffffff80008c19e0 0x0000000000000010 0x000f0000 IOTimerEventSource::~IOTimerEventSource() | |
| [ 2425] 2425 X Data 0xffffff8000ac35e0 0x0000000000000028 0x000f0000 IOUserNotification::gMetaClass | |
| [ 2426] 2426 X Invalid 0xffffff8000b2cf78 0x0000000000000008 0x000f0000 IOUserNotification::superClass | |
| [ 2427] 2427 X Code 0xffffff80008e19f0 0x0000000000000060 0x000f0000 IOUserNotification::setNotification(IONotifier*) | |
| [ 2428] 2428 X Code 0xffffff80008e1970 0x0000000000000060 0x000f0000 IOUserNotification::free() | |
| [ 2429] 2429 X Code 0xffffff80008e19d0 0x0000000000000010 0x000f0000 IOUserNotification::reset() | |
| [ 2430] 2430 X Code 0xffffff80008e19e0 0x0000000000000010 0x000f0000 IOUserNotification::isValid() | |
| [ 2431] 2431 X Code 0xffffff80008e68c0 0x0000000000000040 0x000f0000 IOUserNotification::MetaClass::MetaClass() | |
| [ 2432] 2432 X Code 0xffffff80008e6950 0x0000000000000040 0x000f0000 IOUserNotification::MetaClass::MetaClass() | |
| [ 2433] 2433 X Invalid 0xffffff8000b2cf80 0x0000000000000008 0x000f0000 IOUserNotification::metaClass | |
| [ 2434] 2434 X Code 0xffffff80008e6920 0x0000000000000020 0x000f0000 IOUserNotification::IOUserNotification(OSMetaClass const*) | |
| [ 2435] 2435 X Code 0xffffff80008e6900 0x0000000000000020 0x000f0000 IOUserNotification::IOUserNotification(OSMetaClass const*) | |
| [ 2436] 2436 X Code 0xffffff80008e1920 0x0000000000000040 0x000f0000 IOUserNotification::~IOUserNotification() | |
| [ 2437] 2437 X Code 0xffffff80008e1910 0x0000000000000010 0x000f0000 IOUserNotification::~IOUserNotification() | |
| [ 2438] 2438 X Code 0xffffff80008e6940 0x0000000000000010 0x000f0000 IOUserNotification::~IOUserNotification() | |
| [ 2439] 2439 X Data 0xffffff8000ac2d00 0x0000000000000028 0x000f0000 _IOServiceNotifier::gMetaClass | |
| [ 2440] 2440 X Invalid 0xffffff8000b1d130 0x0000000000000008 0x000f0000 _IOServiceNotifier::superClass | |
| [ 2441] 2441 X Code 0xffffff8000897aa0 0x0000000000000030 0x000f0000 _IOServiceNotifier::free() | |
| [ 2442] 2442 X Code 0xffffff8000897cb0 0x00000000000000a0 0x000f0000 _IOServiceNotifier::wait() | |
| [ 2443] 2443 X Code 0xffffff8000897c10 0x00000000000000a0 0x000f0000 _IOServiceNotifier::enable(bool) | |
| [ 2444] 2444 X Code 0xffffff8000897ad0 0x00000000000000b0 0x000f0000 _IOServiceNotifier::remove() | |
| [ 2445] 2445 X Code 0xffffff8000897b80 0x0000000000000090 0x000f0000 _IOServiceNotifier::disable() | |
| [ 2446] 2446 X Code 0xffffff800089b8f0 0x0000000000000040 0x000f0000 _IOServiceNotifier::MetaClass::MetaClass() | |
| [ 2447] 2447 X Code 0xffffff800089b9b0 0x0000000000000040 0x000f0000 _IOServiceNotifier::MetaClass::MetaClass() | |
| [ 2448] 2448 X Invalid 0xffffff8000b1d138 0x0000000000000008 0x000f0000 _IOServiceNotifier::metaClass | |
| [ 2449] 2449 X Code 0xffffff800089b970 0x0000000000000020 0x000f0000 _IOServiceNotifier::_IOServiceNotifier(OSMetaClass const*) | |
| [ 2450] 2450 X Code 0xffffff800089b9f0 0x0000000000000040 0x000f0000 _IOServiceNotifier::_IOServiceNotifier() | |
| [ 2451] 2451 X Code 0xffffff800089b930 0x0000000000000020 0x000f0000 _IOServiceNotifier::_IOServiceNotifier(OSMetaClass const*) | |
| [ 2452] 2452 X Code 0xffffff800089ba30 0x0000000000000040 0x000f0000 _IOServiceNotifier::_IOServiceNotifier() | |
| [ 2453] 2453 X Code 0xffffff8000897a50 0x0000000000000040 0x000f0000 _IOServiceNotifier::~_IOServiceNotifier() | |
| [ 2454] 2454 X Code 0xffffff8000897a40 0x0000000000000010 0x000f0000 _IOServiceNotifier::~_IOServiceNotifier() | |
| [ 2455] 2455 X Code 0xffffff800089b990 0x0000000000000010 0x000f0000 _IOServiceNotifier::~_IOServiceNotifier() | |
| [ 2456] 2456 X Data 0xffffff8000ac37e8 0x0000000000000028 0x000f0000 IOHistogramReporter::gMetaClass | |
| [ 2457] 2457 X Invalid 0xffffff8000b2fdf0 0x0000000000000008 0x000f0000 IOHistogramReporter::superClass | |
| [ 2458] 2458 X Code 0xffffff80008fb2e0 0x0000000000000100 0x000f0000 IOHistogramReporter::tallyValue(long long) | |
| [ 2459] 2459 X Code 0xffffff80008fa580 0x0000000000000110 0x000f0000 IOHistogramReporter::handleCreateLegend() | |
| [ 2460] 2460 X Code 0xffffff80008fb220 0x00000000000000c0 0x000f0000 IOHistogramReporter::overrideBucketValues(unsigned int, unsigned long long, long long, long long, long long) | |
| [ 2461] 2461 X Code 0xffffff80008fa480 0x0000000000000100 0x000f0000 IOHistogramReporter::free() | |
| [ 2462] 2462 X Code 0xffffff80008fb130 0x00000000000000f0 0x000f0000 IOHistogramReporter::with(IOService*, unsigned short, unsigned long long, char const*, unsigned long long, int, IOHistogramSegmentConfig*) | |
| [ 2463] 2463 X Code 0xffffff80008fa690 0x0000000000000520 0x000f0000 IOHistogramReporter::initWith(IOService*, unsigned short, unsigned long long, OSSymbol const*, unsigned long long, int, IOHistogramSegmentConfig*) | |
| [ 2464] 2464 X Code 0xffffff80008fafe0 0x0000000000000040 0x000f0000 IOHistogramReporter::MetaClass::MetaClass() | |
| [ 2465] 2465 X Code 0xffffff80008fb070 0x0000000000000040 0x000f0000 IOHistogramReporter::MetaClass::MetaClass() | |
| [ 2466] 2466 X Invalid 0xffffff8000b2fde8 0x0000000000000008 0x000f0000 IOHistogramReporter::metaClass | |
| [ 2467] 2467 X Code 0xffffff80008fb040 0x0000000000000020 0x000f0000 IOHistogramReporter::IOHistogramReporter(OSMetaClass const*) | |
| [ 2468] 2468 X Code 0xffffff80008fb0b0 0x0000000000000040 0x000f0000 IOHistogramReporter::IOHistogramReporter() | |
| [ 2469] 2469 X Code 0xffffff80008fb020 0x0000000000000020 0x000f0000 IOHistogramReporter::IOHistogramReporter(OSMetaClass const*) | |
| [ 2470] 2470 X Code 0xffffff80008fb0f0 0x0000000000000040 0x000f0000 IOHistogramReporter::IOHistogramReporter() | |
| [ 2471] 2471 X Code 0xffffff80008fa430 0x0000000000000040 0x000f0000 IOHistogramReporter::~IOHistogramReporter() | |
| [ 2472] 2472 X Code 0xffffff80008fa420 0x0000000000000010 0x000f0000 IOHistogramReporter::~IOHistogramReporter() | |
| [ 2473] 2473 X Code 0xffffff80008fb060 0x0000000000000010 0x000f0000 IOHistogramReporter::~IOHistogramReporter() | |
| [ 2474] 2474 X Data 0xffffff8000ac2da8 0x0000000000000028 0x000f0000 IOPMCompletionQueue::gMetaClass | |
| [ 2475] 2475 X Invalid 0xffffff8000b1ec20 0x0000000000000008 0x000f0000 IOPMCompletionQueue::superClass | |
| [ 2476] 2476 X Code 0xffffff800089f5f0 0x00000000000000a0 0x000f0000 IOPMCompletionQueue::checkForWork() | |
| [ 2477] 2477 X Code 0xffffff80008b12b0 0x0000000000000050 0x000f0000 IOPMCompletionQueue::queuePMRequest(IOPMRequest*) | |
| [ 2478] 2478 X Code 0xffffff800089f690 0x0000000000000040 0x000f0000 IOPMCompletionQueue::init(IOService*, bool (*)(IOService*, IOPMRequest*, IOPMCompletionQueue*)) | |
| [ 2479] 2479 X Code 0xffffff80008ac6f0 0x0000000000000060 0x000f0000 IOPMCompletionQueue::create(IOService*, bool (*)(IOService*, IOPMRequest*, IOPMCompletionQueue*)) | |
| [ 2480] 2480 X Code 0xffffff80008b1800 0x0000000000000040 0x000f0000 IOPMCompletionQueue::MetaClass::MetaClass() | |
| [ 2481] 2481 X Code 0xffffff80008b1890 0x0000000000000040 0x000f0000 IOPMCompletionQueue::MetaClass::MetaClass() | |
| [ 2482] 2482 X Invalid 0xffffff8000b1ec28 0x0000000000000008 0x000f0000 IOPMCompletionQueue::metaClass | |
| [ 2483] 2483 X Code 0xffffff80008b1860 0x0000000000000020 0x000f0000 IOPMCompletionQueue::IOPMCompletionQueue(OSMetaClass const*) | |
| [ 2484] 2484 X Code 0xffffff80008b18d0 0x0000000000000040 0x000f0000 IOPMCompletionQueue::IOPMCompletionQueue() | |
| [ 2485] 2485 X Code 0xffffff80008b1840 0x0000000000000020 0x000f0000 IOPMCompletionQueue::IOPMCompletionQueue(OSMetaClass const*) | |
| [ 2486] 2486 X Code 0xffffff80008b1910 0x0000000000000040 0x000f0000 IOPMCompletionQueue::IOPMCompletionQueue() | |
| [ 2487] 2487 X Code 0xffffff800089f5a0 0x0000000000000040 0x000f0000 IOPMCompletionQueue::~IOPMCompletionQueue() | |
| [ 2488] 2488 X Code 0xffffff800089f590 0x0000000000000010 0x000f0000 IOPMCompletionQueue::~IOPMCompletionQueue() | |
| [ 2489] 2489 X Code 0xffffff80008b1880 0x0000000000000010 0x000f0000 IOPMCompletionQueue::~IOPMCompletionQueue() | |
| [ 2490] 2490 X Data 0xffffff8000ac2f10 0x0000000000000028 0x000f0000 IOPMPowerSourceList::gMetaClass | |
| [ 2491] 2491 X Code 0xffffff80008b74f0 0x0000000000000020 0x000f0000 IOPMPowerSourceList::initialize() | |
| [ 2492] 2492 X Code 0xffffff80008b7550 0x0000000000000020 0x000f0000 IOPMPowerSourceList::nextInList(IOPMPowerSource*) | |
| [ 2493] 2493 X Invalid 0xffffff8000b20b30 0x0000000000000008 0x000f0000 IOPMPowerSourceList::superClass | |
| [ 2494] 2494 X Code 0xffffff80008b7570 0x0000000000000010 0x000f0000 IOPMPowerSourceList::firstInList() | |
| [ 2495] 2495 X Code 0xffffff80008b7580 0x0000000000000010 0x000f0000 IOPMPowerSourceList::numberOfItems() | |
| [ 2496] 2496 X Code 0xffffff80008b7590 0x0000000000000060 0x000f0000 IOPMPowerSourceList::removeFromList(IOPMPowerSource*) | |
| [ 2497] 2497 X Code 0xffffff80008b6f10 0x0000000000000060 0x000f0000 IOPMPowerSourceList::free() | |
| [ 2498] 2498 X Code 0xffffff80008b73a0 0x0000000000000040 0x000f0000 IOPMPowerSourceList::MetaClass::MetaClass() | |
| [ 2499] 2499 X Code 0xffffff80008b7430 0x0000000000000040 0x000f0000 IOPMPowerSourceList::MetaClass::MetaClass() | |
| [ 2500] 2500 X Code 0xffffff80008b7510 0x0000000000000040 0x000f0000 IOPMPowerSourceList::addToList(IOPMPowerSource*) | |
| [ 2501] 2501 X Invalid 0xffffff8000b20b28 0x0000000000000008 0x000f0000 IOPMPowerSourceList::metaClass | |
| [ 2502] 2502 X Code 0xffffff80008b7400 0x0000000000000020 0x000f0000 IOPMPowerSourceList::IOPMPowerSourceList(OSMetaClass const*) | |
| [ 2503] 2503 X Code 0xffffff80008b7470 0x0000000000000040 0x000f0000 IOPMPowerSourceList::IOPMPowerSourceList() | |
| [ 2504] 2504 X Code 0xffffff80008b73e0 0x0000000000000020 0x000f0000 IOPMPowerSourceList::IOPMPowerSourceList(OSMetaClass const*) | |
| [ 2505] 2505 X Code 0xffffff80008b74b0 0x0000000000000040 0x000f0000 IOPMPowerSourceList::IOPMPowerSourceList() | |
| [ 2506] 2506 X Code 0xffffff80008b6ec0 0x0000000000000040 0x000f0000 IOPMPowerSourceList::~IOPMPowerSourceList() | |
| [ 2507] 2507 X Code 0xffffff80008b6eb0 0x0000000000000010 0x000f0000 IOPMPowerSourceList::~IOPMPowerSourceList() | |
| [ 2508] 2508 X Code 0xffffff80008b7420 0x0000000000000010 0x000f0000 IOPMPowerSourceList::~IOPMPowerSourceList() | |
| [ 2509] 2509 X Data 0xffffff8000ac2e70 0x0000000000000028 0x000f0000 IOPMPowerStateQueue::gMetaClass | |
| [ 2510] 2510 X Invalid 0xffffff8000b1fcd8 0x0000000000000008 0x000f0000 IOPMPowerStateQueue::superClass | |
| [ 2511] 2511 X Code 0xffffff80008b2cb0 0x00000000000000b0 0x000f0000 IOPMPowerStateQueue::checkForWork() | |
| [ 2512] 2512 X Code 0xffffff80008b3370 0x0000000000000090 0x000f0000 IOPMPowerStateQueue::submitPowerEvent(unsigned int, void*, unsigned long long) | |
| [ 2513] 2513 X Code 0xffffff80008b32e0 0x0000000000000090 0x000f0000 IOPMPowerStateQueue::PMPowerStateQueue(OSObject*, void (*)(OSObject*, ...)) | |
| [ 2514] 2514 X Code 0xffffff80008b2c30 0x0000000000000080 0x000f0000 IOPMPowerStateQueue::init(OSObject*, void (*)(OSObject*, ...)) | |
| [ 2515] 2515 X Code 0xffffff80008b3190 0x0000000000000040 0x000f0000 IOPMPowerStateQueue::MetaClass::MetaClass() | |
| [ 2516] 2516 X Code 0xffffff80008b3220 0x0000000000000040 0x000f0000 IOPMPowerStateQueue::MetaClass::MetaClass() | |
| [ 2517] 2517 X Invalid 0xffffff8000b1fcd0 0x0000000000000008 0x000f0000 IOPMPowerStateQueue::metaClass | |
| [ 2518] 2518 X Code 0xffffff80008b31f0 0x0000000000000020 0x000f0000 IOPMPowerStateQueue::IOPMPowerStateQueue(OSMetaClass const*) | |
| [ 2519] 2519 X Code 0xffffff80008b3260 0x0000000000000040 0x000f0000 IOPMPowerStateQueue::IOPMPowerStateQueue() | |
| [ 2520] 2520 X Code 0xffffff80008b31d0 0x0000000000000020 0x000f0000 IOPMPowerStateQueue::IOPMPowerStateQueue(OSMetaClass const*) | |
| [ 2521] 2521 X Code 0xffffff80008b32a0 0x0000000000000040 0x000f0000 IOPMPowerStateQueue::IOPMPowerStateQueue() | |
| [ 2522] 2522 X Code 0xffffff80008b2be0 0x0000000000000040 0x000f0000 IOPMPowerStateQueue::~IOPMPowerStateQueue() | |
| [ 2523] 2523 X Code 0xffffff80008b2bd0 0x0000000000000010 0x000f0000 IOPMPowerStateQueue::~IOPMPowerStateQueue() | |
| [ 2524] 2524 X Code 0xffffff80008b3210 0x0000000000000010 0x000f0000 IOPMPowerStateQueue::~IOPMPowerStateQueue() | |
| [ 2525] 2525 X Data 0xffffff8000ac2f60 0x0000000000000028 0x000f0000 IOPolledFilePollers::gMetaClass | |
| [ 2526] 2526 X Invalid 0xffffff8000b20f38 0x0000000000000008 0x000f0000 IOPolledFilePollers::superClass | |
| [ 2527] 2527 X Code 0xffffff80008b83a0 0x0000000000000220 0x000f0000 IOPolledFilePollers::copyPollers(IOService*) | |
| [ 2528] 2528 X Code 0xffffff80008b8250 0x0000000000000040 0x000f0000 IOPolledFilePollers::MetaClass::MetaClass() | |
| [ 2529] 2529 X Code 0xffffff80008b82e0 0x0000000000000040 0x000f0000 IOPolledFilePollers::MetaClass::MetaClass() | |
| [ 2530] 2530 X Invalid 0xffffff8000b20f40 0x0000000000000008 0x000f0000 IOPolledFilePollers::metaClass | |
| [ 2531] 2531 X Code 0xffffff80008b82b0 0x0000000000000020 0x000f0000 IOPolledFilePollers::IOPolledFilePollers(OSMetaClass const*) | |
| [ 2532] 2532 X Code 0xffffff80008b8320 0x0000000000000040 0x000f0000 IOPolledFilePollers::IOPolledFilePollers() | |
| [ 2533] 2533 X Code 0xffffff80008b8290 0x0000000000000020 0x000f0000 IOPolledFilePollers::IOPolledFilePollers(OSMetaClass const*) | |
| [ 2534] 2534 X Code 0xffffff80008b8360 0x0000000000000040 0x000f0000 IOPolledFilePollers::IOPolledFilePollers() | |
| [ 2535] 2535 X Code 0xffffff80008b7bd0 0x0000000000000040 0x000f0000 IOPolledFilePollers::~IOPolledFilePollers() | |
| [ 2536] 2536 X Code 0xffffff80008b7bc0 0x0000000000000010 0x000f0000 IOPolledFilePollers::~IOPolledFilePollers() | |
| [ 2537] 2537 X Code 0xffffff80008b82d0 0x0000000000000010 0x000f0000 IOPolledFilePollers::~IOPolledFilePollers() | |
| [ 2538] 2538 X Data 0xffffff8000ac39b0 0x0000000000000028 0x000f0000 PMAssertionsTracker::gMetaClass | |
| [ 2539] 2539 X Invalid 0xffffff8000b329c0 0x0000000000000008 0x000f0000 PMAssertionsTracker::superClass | |
| [ 2540] 2540 X Code 0xffffff80009168e0 0x0000000000000100 0x000f0000 PMAssertionsTracker::detailsForID(unsigned long long, int*) | |
| [ 2541] 2541 X Code 0xffffff8000910650 0x0000000000000010 0x000f0000 PMAssertionsTracker::__OSFinalClass() | |
| [ 2542] 2542 X Code 0xffffff8000915ed0 0x00000000000000f0 0x000f0000 PMAssertionsTracker::createAssertion(unsigned long long, unsigned int, IOService*, char const*, unsigned long long*) | |
| [ 2543] 2543 X Code 0xffffff8000916010 0x0000000000000030 0x000f0000 PMAssertionsTracker::releaseAssertion(unsigned long long) | |
| [ 2544] 2544 X Code 0xffffff80009169e0 0x0000000000000020 0x000f0000 PMAssertionsTracker::getAssertionLevel(unsigned long long) | |
| [ 2545] 2545 X Code 0xffffff800090dc80 0x00000000000000a0 0x000f0000 PMAssertionsTracker::publishProperties() | |
| [ 2546] 2546 X Code 0xffffff8000916080 0x0000000000000030 0x000f0000 PMAssertionsTracker::setAssertionLevel(unsigned long long, unsigned int) | |
| [ 2547] 2547 X Code 0xffffff800090dd20 0x00000000000002b0 0x000f0000 PMAssertionsTracker::copyAssertionsArray() | |
| [ 2548] 2548 X Code 0xffffff8000909370 0x0000000000000110 0x000f0000 PMAssertionsTracker::pmAssertionsTracker(IOPMrootDomain*) | |
| [ 2549] 2549 X Code 0xffffff800090ba40 0x0000000000000080 0x000f0000 PMAssertionsTracker::handleCreateAssertion(OSData*) | |
| [ 2550] 2550 X Code 0xffffff80009160b0 0x0000000000000010 0x000f0000 PMAssertionsTracker::getActivatedAssertions() | |
| [ 2551] 2551 X Code 0xffffff800090bac0 0x0000000000000150 0x000f0000 PMAssertionsTracker::handleReleaseAssertion(unsigned long long) | |
| [ 2552] 2552 X Code 0xffffff8000916190 0x0000000000000050 0x000f0000 PMAssertionsTracker::setUserAssertionLevels(unsigned long long) | |
| [ 2553] 2553 X Code 0xffffff800090bc10 0x0000000000000180 0x000f0000 PMAssertionsTracker::handleSetAssertionLevel(unsigned long long, unsigned int) | |
| [ 2554] 2554 X Code 0xffffff8000916120 0x0000000000000070 0x000f0000 PMAssertionsTracker::handleSetUserAssertionLevels(void*) | |
| [ 2555] 2555 X Code 0xffffff800090bfe0 0x0000000000000160 0x000f0000 PMAssertionsTracker::tabulate() | |
| [ 2556] 2556 X Code 0xffffff8000910500 0x0000000000000040 0x000f0000 PMAssertionsTracker::MetaClass::MetaClass() | |
| [ 2557] 2557 X Code 0xffffff8000910590 0x0000000000000040 0x000f0000 PMAssertionsTracker::MetaClass::MetaClass() | |
| [ 2558] 2558 X Invalid 0xffffff8000b329b8 0x0000000000000008 0x000f0000 PMAssertionsTracker::metaClass | |
| [ 2559] 2559 X Code 0xffffff8000910560 0x0000000000000020 0x000f0000 PMAssertionsTracker::PMAssertionsTracker(OSMetaClass const*) | |
| [ 2560] 2560 X Code 0xffffff80009105d0 0x0000000000000040 0x000f0000 PMAssertionsTracker::PMAssertionsTracker() | |
| [ 2561] 2561 X Code 0xffffff8000910540 0x0000000000000020 0x000f0000 PMAssertionsTracker::PMAssertionsTracker(OSMetaClass const*) | |
| [ 2562] 2562 X Code 0xffffff8000910610 0x0000000000000040 0x000f0000 PMAssertionsTracker::PMAssertionsTracker() | |
| [ 2563] 2563 X Code 0xffffff8000901df0 0x0000000000000040 0x000f0000 PMAssertionsTracker::~PMAssertionsTracker() | |
| [ 2564] 2564 X Code 0xffffff8000901de0 0x0000000000000010 0x000f0000 PMAssertionsTracker::~PMAssertionsTracker() | |
| [ 2565] 2565 X Code 0xffffff8000910580 0x0000000000000010 0x000f0000 PMAssertionsTracker::~PMAssertionsTracker() | |
| [ 2566] 2566 X Data 0xffffff8000ac31b8 0x0000000000000028 0x000f0000 IOLittleMemoryCursor::gMetaClass | |
| [ 2567] 2567 X Invalid 0xffffff8000b24350 0x0000000000000008 0x000f0000 IOLittleMemoryCursor::superClass | |
| [ 2568] 2568 X Code 0xffffff80008c8760 0x0000000000000020 0x000f0000 IOLittleMemoryCursor::outputSegment(IOMemoryCursor::PhysicalSegment, void*, unsigned int) | |
| [ 2569] 2569 X Code 0xffffff80008c9690 0x0000000000000090 0x000f0000 IOLittleMemoryCursor::withSpecification(unsigned long long, unsigned long long, unsigned long long) | |
| [ 2570] 2570 X Code 0xffffff80008c86a0 0x00000000000000a0 0x000f0000 IOLittleMemoryCursor::initWithSpecification(unsigned long long, unsigned long long, unsigned long long) | |
| [ 2571] 2571 X Code 0xffffff80008c9540 0x0000000000000040 0x000f0000 IOLittleMemoryCursor::MetaClass::MetaClass() | |
| [ 2572] 2572 X Code 0xffffff80008c95d0 0x0000000000000040 0x000f0000 IOLittleMemoryCursor::MetaClass::MetaClass() | |
| [ 2573] 2573 X Invalid 0xffffff8000b24358 0x0000000000000008 0x000f0000 IOLittleMemoryCursor::metaClass | |
| [ 2574] 2574 X Code 0xffffff80008c95a0 0x0000000000000020 0x000f0000 IOLittleMemoryCursor::IOLittleMemoryCursor(OSMetaClass const*) | |
| [ 2575] 2575 X Code 0xffffff80008c9610 0x0000000000000040 0x000f0000 IOLittleMemoryCursor::IOLittleMemoryCursor() | |
| [ 2576] 2576 X Code 0xffffff80008c9580 0x0000000000000020 0x000f0000 IOLittleMemoryCursor::IOLittleMemoryCursor(OSMetaClass const*) | |
| [ 2577] 2577 X Code 0xffffff80008c9650 0x0000000000000040 0x000f0000 IOLittleMemoryCursor::IOLittleMemoryCursor() | |
| [ 2578] 2578 X Code 0xffffff80008c8650 0x0000000000000040 0x000f0000 IOLittleMemoryCursor::~IOLittleMemoryCursor() | |
| [ 2579] 2579 X Code 0xffffff80008c8640 0x0000000000000010 0x000f0000 IOLittleMemoryCursor::~IOLittleMemoryCursor() | |
| [ 2580] 2580 X Code 0xffffff80008c95c0 0x0000000000000010 0x000f0000 IOLittleMemoryCursor::~IOLittleMemoryCursor() | |
| [ 2581] 2581 X Data 0xffffff8000ac2598 0x0000000000000028 0x000f0000 OSCollectionIterator::gMetaClass | |
| [ 2582] 2582 X Invalid 0xffffff8000b192f8 0x0000000000000008 0x000f0000 OSCollectionIterator::superClass | |
| [ 2583] 2583 X Code 0xffffff80008387a0 0x0000000000000050 0x000f0000 OSCollectionIterator::getNextObject() | |
| [ 2584] 2584 X Code 0xffffff8000838db0 0x0000000000000080 0x000f0000 OSCollectionIterator::withCollection(OSCollection const*) | |
| [ 2585] 2585 X Code 0xffffff80008387f0 0x0000000000000040 0x000f0000 OSCollectionIterator::initWithCollection(OSCollection const*) | |
| [ 2586] 2586 X Code 0xffffff80008385e0 0x0000000000000090 0x000f0000 OSCollectionIterator::free() | |
| [ 2587] 2587 X Code 0xffffff8000838670 0x0000000000000090 0x000f0000 OSCollectionIterator::reset() | |
| [ 2588] 2588 X Code 0xffffff8000838700 0x00000000000000a0 0x000f0000 OSCollectionIterator::isValid() | |
| [ 2589] 2589 X Code 0xffffff8000838c60 0x0000000000000040 0x000f0000 OSCollectionIterator::MetaClass::MetaClass() | |
| [ 2590] 2590 X Code 0xffffff8000838cf0 0x0000000000000040 0x000f0000 OSCollectionIterator::MetaClass::MetaClass() | |
| [ 2591] 2591 X Invalid 0xffffff8000b192f0 0x0000000000000008 0x000f0000 OSCollectionIterator::metaClass | |
| [ 2592] 2592 X Code 0xffffff8000838cc0 0x0000000000000020 0x000f0000 OSCollectionIterator::OSCollectionIterator(OSMetaClass const*) | |
| [ 2593] 2593 X Code 0xffffff8000838d30 0x0000000000000040 0x000f0000 OSCollectionIterator::OSCollectionIterator() | |
| [ 2594] 2594 X Code 0xffffff8000838ca0 0x0000000000000020 0x000f0000 OSCollectionIterator::OSCollectionIterator(OSMetaClass const*) | |
| [ 2595] 2595 X Code 0xffffff8000838d70 0x0000000000000040 0x000f0000 OSCollectionIterator::OSCollectionIterator() | |
| [ 2596] 2596 X Code 0xffffff8000838590 0x0000000000000040 0x000f0000 OSCollectionIterator::~OSCollectionIterator() | |
| [ 2597] 2597 X Code 0xffffff8000838580 0x0000000000000010 0x000f0000 OSCollectionIterator::~OSCollectionIterator() | |
| [ 2598] 2598 X Code 0xffffff8000838ce0 0x0000000000000010 0x000f0000 OSCollectionIterator::~OSCollectionIterator() | |
| [ 2599] 2599 X Data 0xffffff8000ac3848 0x0000000000000028 0x000f0000 RootDomainUserClient::gMetaClass | |
| [ 2600] 2600 X Invalid 0xffffff8000b302b8 0x0000000000000008 0x000f0000 RootDomainUserClient::superClass | |
| [ 2601] 2601 X Code 0xffffff80008fe7e0 0x0000000000000020 0x000f0000 RootDomainUserClient::clientClose() | |
| [ 2602] 2602 X Code 0xffffff80008fe750 0x0000000000000090 0x000f0000 RootDomainUserClient::initWithTask(task*, void*, unsigned int, OSDictionary*) | |
| [ 2603] 2603 X Code 0xffffff80008fe2b0 0x00000000000004a0 0x000f0000 RootDomainUserClient::externalMethod(unsigned int, IOExternalMethodArguments*, IOExternalMethodDispatch*, OSObject*, void*) | |
| [ 2604] 2604 X Code 0xffffff80008ff130 0x0000000000000010 0x000f0000 RootDomainUserClient::setPreventative(unsigned int, unsigned int) | |
| [ 2605] 2605 X Code 0xffffff80008fef50 0x0000000000000020 0x000f0000 RootDomainUserClient::secureSleepSystem(unsigned int*) | |
| [ 2606] 2606 X Code 0xffffff80008fef70 0x0000000000000090 0x000f0000 RootDomainUserClient::secureSetAggressiveness(unsigned long, unsigned long, int*) | |
| [ 2607] 2607 X Code 0xffffff80008ff0e0 0x0000000000000050 0x000f0000 RootDomainUserClient::secureGetSystemSleepType(unsigned int*) | |
| [ 2608] 2608 X Code 0xffffff80008fe830 0x00000000000001a0 0x000f0000 RootDomainUserClient::secureSleepSystemOptions(void const*, unsigned long long, unsigned int*) | |
| [ 2609] 2609 X Code 0xffffff80008fe800 0x0000000000000030 0x000f0000 RootDomainUserClient::getTargetAndMethodForIndex(IOService**, unsigned int) | |
| [ 2610] 2610 X Code 0xffffff80008ff060 0x0000000000000080 0x000f0000 RootDomainUserClient::secureSetUserAssertionLevels(unsigned int) | |
| [ 2611] 2611 X Code 0xffffff80008ff000 0x0000000000000060 0x000f0000 RootDomainUserClient::secureSetMaintenanceWakeCalendar(IOPMCalendarStruct*, unsigned int*) | |
| [ 2612] 2612 X Code 0xffffff80008fe280 0x0000000000000030 0x000f0000 RootDomainUserClient::stop(IOService*) | |
| [ 2613] 2613 X Code 0xffffff80008fe270 0x0000000000000010 0x000f0000 RootDomainUserClient::start(IOService*) | |
| [ 2614] 2614 X Code 0xffffff80008fee00 0x0000000000000040 0x000f0000 RootDomainUserClient::MetaClass::MetaClass() | |
| [ 2615] 2615 X Code 0xffffff80008fee90 0x0000000000000040 0x000f0000 RootDomainUserClient::MetaClass::MetaClass() | |
| [ 2616] 2616 X Invalid 0xffffff8000b302b0 0x0000000000000008 0x000f0000 RootDomainUserClient::metaClass | |
| [ 2617] 2617 X Code 0xffffff80008fee60 0x0000000000000020 0x000f0000 RootDomainUserClient::RootDomainUserClient(OSMetaClass const*) | |
| [ 2618] 2618 X Code 0xffffff80008feed0 0x0000000000000040 0x000f0000 RootDomainUserClient::RootDomainUserClient() | |
| [ 2619] 2619 X Code 0xffffff80008fee40 0x0000000000000020 0x000f0000 RootDomainUserClient::RootDomainUserClient(OSMetaClass const*) | |
| [ 2620] 2620 X Code 0xffffff80008fef10 0x0000000000000040 0x000f0000 RootDomainUserClient::RootDomainUserClient() | |
| [ 2621] 2621 X Code 0xffffff80008fe220 0x0000000000000040 0x000f0000 RootDomainUserClient::~RootDomainUserClient() | |
| [ 2622] 2622 X Code 0xffffff80008fe210 0x0000000000000010 0x000f0000 RootDomainUserClient::~RootDomainUserClient() | |
| [ 2623] 2623 X Code 0xffffff80008fee80 0x0000000000000010 0x000f0000 RootDomainUserClient::~RootDomainUserClient() | |
| [ 2624] 2624 X Data 0xffffff8000ac34e0 0x0000000000000028 0x000f0000 IOInterruptController::gMetaClass | |
| [ 2625] 2625 X Code 0xffffff80008dfa40 0x0000000000000010 0x000f0000 IOInterruptController::initVector(int, IOInterruptVector*) | |
| [ 2626] 2626 X Invalid 0xffffff8000b2b9e8 0x0000000000000008 0x000f0000 IOInterruptController::superClass | |
| [ 2627] 2627 X Code 0xffffff80008dfa80 0x0000000000000010 0x000f0000 IOInterruptController::causeVector(int, IOInterruptVector*) | |
| [ 2628] 2628 X Code 0xffffff80008dfa70 0x0000000000000010 0x000f0000 IOInterruptController::enableVector(int, IOInterruptVector*) | |
| [ 2629] 2629 X Code 0xffffff80008dfa50 0x0000000000000010 0x000f0000 IOInterruptController::getVectorType(int, IOInterruptVector*) | |
| [ 2630] 2630 X Code 0xffffff80008df9c0 0x0000000000000050 0x000f0000 IOInterruptController::causeInterrupt(IOService*, int) | |
| [ 2631] 2631 X Code 0xffffff80008df8a0 0x00000000000000b0 0x000f0000 IOInterruptController::enableInterrupt(IOService*, int) | |
| [ 2632] 2632 X Code 0xffffff80008dfa20 0x0000000000000010 0x000f0000 IOInterruptController::handleInterrupt(void*, IOService*, int) | |
| [ 2633] 2633 X Code 0xffffff80008df950 0x0000000000000070 0x000f0000 IOInterruptController::disableInterrupt(IOService*, int) | |
| [ 2634] 2634 X Code 0xffffff80008df840 0x0000000000000060 0x000f0000 IOInterruptController::getInterruptType(IOService*, int, int*) | |
| [ 2635] 2635 X Code 0xffffff80008dfa60 0x0000000000000010 0x000f0000 IOInterruptController::disableVectorHard(int, IOInterruptVector*) | |
| [ 2636] 2636 X Code 0xffffff80008df2b0 0x0000000000000490 0x000f0000 IOInterruptController::registerInterrupt(IOService*, int, void*, void (*)(void*, void*, void*, int), void*) | |
| [ 2637] 2637 X Code 0xffffff80008dfa30 0x0000000000000010 0x000f0000 IOInterruptController::vectorCanBeShared(int, IOInterruptVector*) | |
| [ 2638] 2638 X Code 0xffffff80008df740 0x0000000000000100 0x000f0000 IOInterruptController::unregisterInterrupt(IOService*, int) | |
| [ 2639] 2639 X Code 0xffffff80008dfa10 0x0000000000000010 0x000f0000 IOInterruptController::getInterruptHandlerAddress() | |
| [ 2640] 2640 X Code 0xffffff80008dfa90 0x0000000000000030 0x000f0000 IOInterruptController::_RESERVEDIOInterruptController0() | |
| [ 2641] 2641 X Code 0xffffff80008dfac0 0x0000000000000030 0x000f0000 IOInterruptController::_RESERVEDIOInterruptController1() | |
| [ 2642] 2642 X Code 0xffffff80008dfaf0 0x0000000000000030 0x000f0000 IOInterruptController::_RESERVEDIOInterruptController2() | |
| [ 2643] 2643 X Code 0xffffff80008dfb20 0x0000000000000030 0x000f0000 IOInterruptController::_RESERVEDIOInterruptController3() | |
| [ 2644] 2644 X Code 0xffffff80008dfb50 0x0000000000000030 0x000f0000 IOInterruptController::_RESERVEDIOInterruptController4() | |
| [ 2645] 2645 X Code 0xffffff80008dfb80 0x0000000000000030 0x000f0000 IOInterruptController::_RESERVEDIOInterruptController5() | |
| [ 2646] 2646 X Code 0xffffff80008e0f20 0x0000000000000040 0x000f0000 IOInterruptController::MetaClass::MetaClass() | |
| [ 2647] 2647 X Code 0xffffff80008e0fb0 0x0000000000000040 0x000f0000 IOInterruptController::MetaClass::MetaClass() | |
| [ 2648] 2648 X Invalid 0xffffff8000b2b9e0 0x0000000000000008 0x000f0000 IOInterruptController::metaClass | |
| [ 2649] 2649 X Code 0xffffff80008e0f80 0x0000000000000020 0x000f0000 IOInterruptController::IOInterruptController(OSMetaClass const*) | |
| [ 2650] 2650 X Code 0xffffff80008e0f60 0x0000000000000020 0x000f0000 IOInterruptController::IOInterruptController(OSMetaClass const*) | |
| [ 2651] 2651 X Code 0xffffff80008df260 0x0000000000000040 0x000f0000 IOInterruptController::~IOInterruptController() | |
| [ 2652] 2652 X Code 0xffffff80008df250 0x0000000000000010 0x000f0000 IOInterruptController::~IOInterruptController() | |
| [ 2653] 2653 X Code 0xffffff80008e0fa0 0x0000000000000010 0x000f0000 IOInterruptController::~IOInterruptController() | |
| [ 2654] 2654 X Data 0xffffff8000ac3208 0x0000000000000028 0x000f0000 IONaturalMemoryCursor::gMetaClass | |
| [ 2655] 2655 X Invalid 0xffffff8000b24370 0x0000000000000008 0x000f0000 IONaturalMemoryCursor::superClass | |
| [ 2656] 2656 X Code 0xffffff80008c7f80 0x0000000000000020 0x000f0000 IONaturalMemoryCursor::outputSegment(IOMemoryCursor::PhysicalSegment, void*, unsigned int) | |
| [ 2657] 2657 X Code 0xffffff80008c92d0 0x0000000000000090 0x000f0000 IONaturalMemoryCursor::withSpecification(unsigned long long, unsigned long long, unsigned long long) | |
| [ 2658] 2658 X Code 0xffffff80008c7ec0 0x00000000000000a0 0x000f0000 IONaturalMemoryCursor::initWithSpecification(unsigned long long, unsigned long long, unsigned long long) | |
| [ 2659] 2659 X Code 0xffffff80008c9180 0x0000000000000040 0x000f0000 IONaturalMemoryCursor::MetaClass::MetaClass() | |
| [ 2660] 2660 X Code 0xffffff80008c9210 0x0000000000000040 0x000f0000 IONaturalMemoryCursor::MetaClass::MetaClass() | |
| [ 2661] 2661 X Invalid 0xffffff8000b24378 0x0000000000000008 0x000f0000 IONaturalMemoryCursor::metaClass | |
| [ 2662] 2662 X Code 0xffffff80008c91e0 0x0000000000000020 0x000f0000 IONaturalMemoryCursor::IONaturalMemoryCursor(OSMetaClass const*) | |
| [ 2663] 2663 X Code 0xffffff80008c9250 0x0000000000000040 0x000f0000 IONaturalMemoryCursor::IONaturalMemoryCursor() | |
| [ 2664] 2664 X Code 0xffffff80008c91c0 0x0000000000000020 0x000f0000 IONaturalMemoryCursor::IONaturalMemoryCursor(OSMetaClass const*) | |
| [ 2665] 2665 X Code 0xffffff80008c9290 0x0000000000000040 0x000f0000 IONaturalMemoryCursor::IONaturalMemoryCursor() | |
| [ 2666] 2666 X Code 0xffffff80008c7e70 0x0000000000000040 0x000f0000 IONaturalMemoryCursor::~IONaturalMemoryCursor() | |
| [ 2667] 2667 X Code 0xffffff80008c7e60 0x0000000000000010 0x000f0000 IONaturalMemoryCursor::~IONaturalMemoryCursor() | |
| [ 2668] 2668 X Code 0xffffff80008c9200 0x0000000000000010 0x000f0000 IONaturalMemoryCursor::~IONaturalMemoryCursor() | |
| [ 2669] 2669 X Data 0xffffff8000ac3310 0x0000000000000028 0x000f0000 IOSubMemoryDescriptor::gMetaClass | |
| [ 2670] 2670 X Invalid 0xffffff8000b25a38 0x0000000000000008 0x000f0000 IOSubMemoryDescriptor::superClass | |
| [ 2671] 2671 X Code 0xffffff80008d3840 0x0000000000000020 0x000f0000 IOSubMemoryDescriptor::makeMapping(IOMemoryDescriptor*, task*, unsigned long long, unsigned int, unsigned long long, unsigned long long) | |
| [ 2672] 2672 X Code 0xffffff80008d3860 0x00000000000000a0 0x000f0000 IOSubMemoryDescriptor::initSubRange(IOMemoryDescriptor*, unsigned long long, unsigned long long, unsigned int) | |
| [ 2673] 2673 X Code 0xffffff80008d36a0 0x0000000000000020 0x000f0000 IOSubMemoryDescriptor::setPurgeable(unsigned int, unsigned int*) | |
| [ 2674] 2674 X Code 0xffffff80008d3e80 0x00000000000000a0 0x000f0000 IOSubMemoryDescriptor::withSubRange(IOMemoryDescriptor*, unsigned long long, unsigned long long, unsigned int) | |
| [ 2675] 2675 X Code 0xffffff80008d3f20 0x0000000000000010 0x000f0000 IOSubMemoryDescriptor::getPageCounts(unsigned long long*, unsigned long long*) | |
| [ 2676] 2676 X Code 0xffffff80008d3730 0x0000000000000090 0x000f0000 IOSubMemoryDescriptor::getPreparationID() | |
| [ 2677] 2677 X Code 0xffffff80008d36c0 0x0000000000000070 0x000f0000 IOSubMemoryDescriptor::getPhysicalSegment(unsigned long long, unsigned long long*, unsigned int) | |
| [ 2678] 2678 X Code 0xffffff80008d3670 0x0000000000000030 0x000f0000 IOSubMemoryDescriptor::free() | |
| [ 2679] 2679 X Code 0xffffff80008d37c0 0x0000000000000020 0x000f0000 IOSubMemoryDescriptor::prepare(unsigned int) | |
| [ 2680] 2680 X Code 0xffffff80008d37e0 0x0000000000000020 0x000f0000 IOSubMemoryDescriptor::complete(unsigned int) | |
| [ 2681] 2681 X Code 0xffffff80008d3800 0x0000000000000040 0x000f0000 IOSubMemoryDescriptor::redirect(task*, bool) | |
| [ 2682] 2682 X Code 0xffffff80008d3d30 0x0000000000000040 0x000f0000 IOSubMemoryDescriptor::MetaClass::MetaClass() | |
| [ 2683] 2683 X Code 0xffffff80008d3dc0 0x0000000000000040 0x000f0000 IOSubMemoryDescriptor::MetaClass::MetaClass() | |
| [ 2684] 2684 X Invalid 0xffffff8000b25a30 0x0000000000000008 0x000f0000 IOSubMemoryDescriptor::metaClass | |
| [ 2685] 2685 X Code 0xffffff80008d3d90 0x0000000000000020 0x000f0000 IOSubMemoryDescriptor::IOSubMemoryDescriptor(OSMetaClass const*) | |
| [ 2686] 2686 X Code 0xffffff80008d3e00 0x0000000000000040 0x000f0000 IOSubMemoryDescriptor::IOSubMemoryDescriptor() | |
| [ 2687] 2687 X Code 0xffffff80008d3d70 0x0000000000000020 0x000f0000 IOSubMemoryDescriptor::IOSubMemoryDescriptor(OSMetaClass const*) | |
| [ 2688] 2688 X Code 0xffffff80008d3e40 0x0000000000000040 0x000f0000 IOSubMemoryDescriptor::IOSubMemoryDescriptor() | |
| [ 2689] 2689 X Code 0xffffff80008d3620 0x0000000000000040 0x000f0000 IOSubMemoryDescriptor::~IOSubMemoryDescriptor() | |
| [ 2690] 2690 X Code 0xffffff80008d3610 0x0000000000000010 0x000f0000 IOSubMemoryDescriptor::~IOSubMemoryDescriptor() | |
| [ 2691] 2691 X Code 0xffffff80008d3db0 0x0000000000000010 0x000f0000 IOSubMemoryDescriptor::~IOSubMemoryDescriptor() | |
| [ 2692] 2692 X Data 0xffffff8000ac2fd8 0x0000000000000028 0x000f0000 IOInterruptEventSource::gMetaClass | |
| [ 2693] 2693 X Invalid 0xffffff8000b21820 0x0000000000000008 0x000f0000 IOInterruptEventSource::superClass | |
| [ 2694] 2694 X Code 0xffffff80008bc620 0x00000000000000b0 0x000f0000 IOInterruptEventSource::setWorkLoop(IOWorkLoop*) | |
| [ 2695] 2695 X Code 0xffffff80008bc350 0x00000000000002d0 0x000f0000 IOInterruptEventSource::checkForWork() | |
| [ 2696] 2696 X Code 0xffffff80008bc870 0x0000000000000030 0x000f0000 IOInterruptEventSource::interruptOccurred(void*, IOService*, int) | |
| [ 2697] 2697 X Code 0xffffff80008bd2d0 0x00000000000000a0 0x000f0000 IOInterruptEventSource::interruptEventSource(OSObject*, void (*)(OSObject*, IOInterruptEventSource*, int), IOService*, int) | |
| [ 2698] 2698 X Code 0xffffff80008bc8a0 0x00000000000000f0 0x000f0000 IOInterruptEventSource::normalInterruptOccurred(void*, IOService*, int) | |
| [ 2699] 2699 X Code 0xffffff80008bc990 0x0000000000000100 0x000f0000 IOInterruptEventSource::disableInterruptOccurred(void*, IOService*, int) | |
| [ 2700] 2700 X Code 0xffffff80008bcc10 0x00000000000000e0 0x000f0000 IOInterruptEventSource::registerInterruptHandler(IOService*, int) | |
| [ 2701] 2701 X Code 0xffffff80008bd270 0x0000000000000060 0x000f0000 IOInterruptEventSource::unregisterInterruptHandler(IOService*, int) | |
| [ 2702] 2702 X Code 0xffffff80008bca90 0x0000000000000030 0x000f0000 IOInterruptEventSource::_RESERVEDIOInterruptEventSource0() | |
| [ 2703] 2703 X Code 0xffffff80008bcac0 0x0000000000000030 0x000f0000 IOInterruptEventSource::_RESERVEDIOInterruptEventSource1() | |
| [ 2704] 2704 X Code 0xffffff80008bcaf0 0x0000000000000030 0x000f0000 IOInterruptEventSource::_RESERVEDIOInterruptEventSource2() | |
| [ 2705] 2705 X Code 0xffffff80008bcb20 0x0000000000000030 0x000f0000 IOInterruptEventSource::_RESERVEDIOInterruptEventSource3() | |
| [ 2706] 2706 X Code 0xffffff80008bcb50 0x0000000000000030 0x000f0000 IOInterruptEventSource::_RESERVEDIOInterruptEventSource4() | |
| [ 2707] 2707 X Code 0xffffff80008bcb80 0x0000000000000030 0x000f0000 IOInterruptEventSource::_RESERVEDIOInterruptEventSource5() | |
| [ 2708] 2708 X Code 0xffffff80008bcbb0 0x0000000000000030 0x000f0000 IOInterruptEventSource::_RESERVEDIOInterruptEventSource6() | |
| [ 2709] 2709 X Code 0xffffff80008bcbe0 0x0000000000000030 0x000f0000 IOInterruptEventSource::_RESERVEDIOInterruptEventSource7() | |
| [ 2710] 2710 X Code 0xffffff80008bc2c0 0x0000000000000090 0x000f0000 IOInterruptEventSource::free() | |
| [ 2711] 2711 X Code 0xffffff80008bc750 0x00000000000000f0 0x000f0000 IOInterruptEventSource::init(OSObject*, void (*)(OSObject*, IOInterruptEventSource*, int), IOService*, int) | |
| [ 2712] 2712 X Code 0xffffff80008bc6d0 0x0000000000000040 0x000f0000 IOInterruptEventSource::enable() | |
| [ 2713] 2713 X Code 0xffffff80008bc710 0x0000000000000040 0x000f0000 IOInterruptEventSource::disable() | |
| [ 2714] 2714 X Code 0xffffff80008bd370 0x0000000000000010 0x000f0000 IOInterruptEventSource::warmCPU(unsigned long long) | |
| [ 2715] 2715 X Code 0xffffff80008bd120 0x0000000000000040 0x000f0000 IOInterruptEventSource::MetaClass::MetaClass() | |
| [ 2716] 2716 X Code 0xffffff80008bd1b0 0x0000000000000040 0x000f0000 IOInterruptEventSource::MetaClass::MetaClass() | |
| [ 2717] 2717 X Invalid 0xffffff8000b21818 0x0000000000000008 0x000f0000 IOInterruptEventSource::metaClass | |
| [ 2718] 2718 X Code 0xffffff80008bd180 0x0000000000000020 0x000f0000 IOInterruptEventSource::IOInterruptEventSource(OSMetaClass const*) | |
| [ 2719] 2719 X Code 0xffffff80008bd1f0 0x0000000000000040 0x000f0000 IOInterruptEventSource::IOInterruptEventSource() | |
| [ 2720] 2720 X Code 0xffffff80008bd160 0x0000000000000020 0x000f0000 IOInterruptEventSource::IOInterruptEventSource(OSMetaClass const*) | |
| [ 2721] 2721 X Code 0xffffff80008bd230 0x0000000000000040 0x000f0000 IOInterruptEventSource::IOInterruptEventSource() | |
| [ 2722] 2722 X Code 0xffffff80008bc270 0x0000000000000040 0x000f0000 IOInterruptEventSource::~IOInterruptEventSource() | |
| [ 2723] 2723 X Code 0xffffff80008bc260 0x0000000000000010 0x000f0000 IOInterruptEventSource::~IOInterruptEventSource() | |
| [ 2724] 2724 X Code 0xffffff80008bd1a0 0x0000000000000010 0x000f0000 IOInterruptEventSource::~IOInterruptEventSource() | |
| [ 2725] 2725 X Data 0xffffff8000ac3680 0x0000000000000028 0x000f0000 IOKitDiagnosticsClient::gMetaClass | |
| [ 2726] 2726 X Invalid 0xffffff8000b2e598 0x0000000000000008 0x000f0000 IOKitDiagnosticsClient::superClass | |
| [ 2727] 2727 X Code 0xffffff80008edf30 0x0000000000000020 0x000f0000 IOKitDiagnosticsClient::clientClose() | |
| [ 2728] 2728 X Code 0xffffff80008edef0 0x0000000000000010 0x000f0000 IOKitDiagnosticsClient::setProperties(OSObject*) | |
| [ 2729] 2729 X Code 0xffffff80008edf00 0x0000000000000030 0x000f0000 IOKitDiagnosticsClient::externalMethod(unsigned int, IOExternalMethodArguments*, IOExternalMethodDispatch*, OSObject*, void*) | |
| [ 2730] 2730 X Code 0xffffff80008eeab0 0x0000000000000080 0x000f0000 IOKitDiagnosticsClient::withTask(task*) | |
| [ 2731] 2731 X Code 0xffffff80008ee960 0x0000000000000040 0x000f0000 IOKitDiagnosticsClient::MetaClass::MetaClass() | |
| [ 2732] 2732 X Code 0xffffff80008ee9f0 0x0000000000000040 0x000f0000 IOKitDiagnosticsClient::MetaClass::MetaClass() | |
| [ 2733] 2733 X Invalid 0xffffff8000b2e5a0 0x0000000000000008 0x000f0000 IOKitDiagnosticsClient::metaClass | |
| [ 2734] 2734 X Code 0xffffff80008ee9c0 0x0000000000000020 0x000f0000 IOKitDiagnosticsClient::IOKitDiagnosticsClient(OSMetaClass const*) | |
| [ 2735] 2735 X Code 0xffffff80008eea30 0x0000000000000040 0x000f0000 IOKitDiagnosticsClient::IOKitDiagnosticsClient() | |
| [ 2736] 2736 X Code 0xffffff80008ee9a0 0x0000000000000020 0x000f0000 IOKitDiagnosticsClient::IOKitDiagnosticsClient(OSMetaClass const*) | |
| [ 2737] 2737 X Code 0xffffff80008eea70 0x0000000000000040 0x000f0000 IOKitDiagnosticsClient::IOKitDiagnosticsClient() | |
| [ 2738] 2738 X Code 0xffffff80008edea0 0x0000000000000040 0x000f0000 IOKitDiagnosticsClient::~IOKitDiagnosticsClient() | |
| [ 2739] 2739 X Code 0xffffff80008ede90 0x0000000000000010 0x000f0000 IOKitDiagnosticsClient::~IOKitDiagnosticsClient() | |
| [ 2740] 2740 X Code 0xffffff80008ee9e0 0x0000000000000010 0x000f0000 IOKitDiagnosticsClient::~IOKitDiagnosticsClient() | |
| [ 2741] 2741 X Data 0xffffff8000ac33b0 0x0000000000000028 0x000f0000 IOPlatformExpertDevice::gMetaClass | |
| [ 2742] 2742 X Invalid 0xffffff8000b26788 0x0000000000000008 0x000f0000 IOPlatformExpertDevice::superClass | |
| [ 2743] 2743 X Code 0xffffff80008d6690 0x0000000000000070 0x000f0000 IOPlatformExpertDevice::initWithArgs(void*, void*, void*, void*) | |
| [ 2744] 2744 X Code 0xffffff80008d6600 0x0000000000000090 0x000f0000 IOPlatformExpertDevice::newUserClient(task*, void*, unsigned int, OSDictionary*, IOUserClient**) | |
| [ 2745] 2745 X Code 0xffffff80008d6420 0x00000000000001c0 0x000f0000 IOPlatformExpertDevice::setProperties(OSObject*) | |
| [ 2746] 2746 X Code 0xffffff80008d6700 0x0000000000000030 0x000f0000 IOPlatformExpertDevice::_RESERVEDIOPlatformExpertDevice0() | |
| [ 2747] 2747 X Code 0xffffff80008d6730 0x0000000000000030 0x000f0000 IOPlatformExpertDevice::_RESERVEDIOPlatformExpertDevice1() | |
| [ 2748] 2748 X Code 0xffffff80008d6760 0x0000000000000030 0x000f0000 IOPlatformExpertDevice::_RESERVEDIOPlatformExpertDevice2() | |
| [ 2749] 2749 X Code 0xffffff80008d6790 0x0000000000000030 0x000f0000 IOPlatformExpertDevice::_RESERVEDIOPlatformExpertDevice3() | |
| [ 2750] 2750 X Code 0xffffff80008d6400 0x0000000000000020 0x000f0000 IOPlatformExpertDevice::free() | |
| [ 2751] 2751 X Code 0xffffff80008d8860 0x0000000000000040 0x000f0000 IOPlatformExpertDevice::MetaClass::MetaClass() | |
| [ 2752] 2752 X Code 0xffffff80008d88f0 0x0000000000000040 0x000f0000 IOPlatformExpertDevice::MetaClass::MetaClass() | |
| [ 2753] 2753 X Invalid 0xffffff8000b26790 0x0000000000000008 0x000f0000 IOPlatformExpertDevice::metaClass | |
| [ 2754] 2754 X Code 0xffffff80008d88c0 0x0000000000000020 0x000f0000 IOPlatformExpertDevice::IOPlatformExpertDevice(OSMetaClass const*) | |
| [ 2755] 2755 X Code 0xffffff80008d8930 0x0000000000000040 0x000f0000 IOPlatformExpertDevice::IOPlatformExpertDevice() | |
| [ 2756] 2756 X Code 0xffffff80008d88a0 0x0000000000000020 0x000f0000 IOPlatformExpertDevice::IOPlatformExpertDevice(OSMetaClass const*) | |
| [ 2757] 2757 X Code 0xffffff80008d8970 0x0000000000000040 0x000f0000 IOPlatformExpertDevice::IOPlatformExpertDevice() | |
| [ 2758] 2758 X Code 0xffffff80008d63b0 0x0000000000000040 0x000f0000 IOPlatformExpertDevice::~IOPlatformExpertDevice() | |
| [ 2759] 2759 X Code 0xffffff80008d63a0 0x0000000000000010 0x000f0000 IOPlatformExpertDevice::~IOPlatformExpertDevice() | |
| [ 2760] 2760 X Code 0xffffff80008d88e0 0x0000000000000010 0x000f0000 IOPlatformExpertDevice::~IOPlatformExpertDevice() | |
| [ 2761] 2761 X Data 0xffffff8000ac2c10 0x0000000000000028 0x000f0000 _IOOpenServiceIterator::gMetaClass | |
| [ 2762] 2762 X Invalid 0xffffff8000b1d0d0 0x0000000000000008 0x000f0000 _IOOpenServiceIterator::superClass | |
| [ 2763] 2763 X Code 0xffffff8000892130 0x00000000000000c0 0x000f0000 _IOOpenServiceIterator::getNextObject() | |
| [ 2764] 2764 X Code 0xffffff8000892080 0x0000000000000050 0x000f0000 _IOOpenServiceIterator::free() | |
| [ 2765] 2765 X Code 0xffffff80008920d0 0x0000000000000040 0x000f0000 _IOOpenServiceIterator::reset() | |
| [ 2766] 2766 X Code 0xffffff8000892110 0x0000000000000020 0x000f0000 _IOOpenServiceIterator::isValid() | |
| [ 2767] 2767 X Code 0xffffff800089ce00 0x00000000000000a0 0x000f0000 _IOOpenServiceIterator::iterator(OSIterator*, IOService const*, IOService const*) | |
| [ 2768] 2768 X Code 0xffffff800089c100 0x0000000000000040 0x000f0000 _IOOpenServiceIterator::MetaClass::MetaClass() | |
| [ 2769] 2769 X Code 0xffffff800089c190 0x0000000000000040 0x000f0000 _IOOpenServiceIterator::MetaClass::MetaClass() | |
| [ 2770] 2770 X Invalid 0xffffff8000b1d0d8 0x0000000000000008 0x000f0000 _IOOpenServiceIterator::metaClass | |
| [ 2771] 2771 X Code 0xffffff800089c160 0x0000000000000020 0x000f0000 _IOOpenServiceIterator::_IOOpenServiceIterator(OSMetaClass const*) | |
| [ 2772] 2772 X Code 0xffffff800089c1d0 0x0000000000000040 0x000f0000 _IOOpenServiceIterator::_IOOpenServiceIterator() | |
| [ 2773] 2773 X Code 0xffffff800089c140 0x0000000000000020 0x000f0000 _IOOpenServiceIterator::_IOOpenServiceIterator(OSMetaClass const*) | |
| [ 2774] 2774 X Code 0xffffff800089c210 0x0000000000000040 0x000f0000 _IOOpenServiceIterator::_IOOpenServiceIterator() | |
| [ 2775] 2775 X Code 0xffffff8000892030 0x0000000000000040 0x000f0000 _IOOpenServiceIterator::~_IOOpenServiceIterator() | |
| [ 2776] 2776 X Code 0xffffff8000892020 0x0000000000000010 0x000f0000 _IOOpenServiceIterator::~_IOOpenServiceIterator() | |
| [ 2777] 2777 X Code 0xffffff800089c180 0x0000000000000010 0x000f0000 _IOOpenServiceIterator::~_IOOpenServiceIterator() | |
| [ 2778] 2778 X Data 0xffffff8000ac2cd8 0x0000000000000028 0x000f0000 _IOServiceNullNotifier::gMetaClass | |
| [ 2779] 2779 X Invalid 0xffffff8000b1d120 0x0000000000000008 0x000f0000 _IOServiceNullNotifier::superClass | |
| [ 2780] 2780 X Code 0xffffff8000898d20 0x0000000000000010 0x000f0000 _IOServiceNullNotifier::free() | |
| [ 2781] 2781 X Code 0xffffff8000898d60 0x0000000000000010 0x000f0000 _IOServiceNullNotifier::wait() | |
| [ 2782] 2782 X Code 0xffffff8000898d50 0x0000000000000010 0x000f0000 _IOServiceNullNotifier::enable(bool) | |
| [ 2783] 2783 X Code 0xffffff8000898d30 0x0000000000000010 0x000f0000 _IOServiceNullNotifier::remove() | |
| [ 2784] 2784 X Code 0xffffff8000898d40 0x0000000000000010 0x000f0000 _IOServiceNullNotifier::disable() | |
| [ 2785] 2785 X Code 0xffffff800089ba70 0x0000000000000040 0x000f0000 _IOServiceNullNotifier::MetaClass::MetaClass() | |
| [ 2786] 2786 X Code 0xffffff800089bb00 0x0000000000000040 0x000f0000 _IOServiceNullNotifier::MetaClass::MetaClass() | |
| [ 2787] 2787 X Invalid 0xffffff8000b1d128 0x0000000000000008 0x000f0000 _IOServiceNullNotifier::metaClass | |
| [ 2788] 2788 X Code 0xffffff800089bad0 0x0000000000000020 0x000f0000 _IOServiceNullNotifier::_IOServiceNullNotifier(OSMetaClass const*) | |
| [ 2789] 2789 X Code 0xffffff800089bb40 0x0000000000000040 0x000f0000 _IOServiceNullNotifier::_IOServiceNullNotifier() | |
| [ 2790] 2790 X Code 0xffffff800089bab0 0x0000000000000020 0x000f0000 _IOServiceNullNotifier::_IOServiceNullNotifier(OSMetaClass const*) | |
| [ 2791] 2791 X Code 0xffffff800089bb80 0x0000000000000040 0x000f0000 _IOServiceNullNotifier::_IOServiceNullNotifier() | |
| [ 2792] 2792 X Code 0xffffff8000898cb0 0x0000000000000040 0x000f0000 _IOServiceNullNotifier::~_IOServiceNullNotifier() | |
| [ 2793] 2793 X Code 0xffffff8000898ca0 0x0000000000000010 0x000f0000 _IOServiceNullNotifier::~_IOServiceNullNotifier() | |
| [ 2794] 2794 X Code 0xffffff800089baf0 0x0000000000000010 0x000f0000 _IOServiceNullNotifier::~_IOServiceNullNotifier() | |
| [ 2795] 2795 X Data 0xffffff8000ac32b8 0x0000000000000028 0x000f0000 IOMultiMemoryDescriptor::gMetaClass | |
| [ 2796] 2796 X Invalid 0xffffff8000b25468 0x0000000000000008 0x000f0000 IOMultiMemoryDescriptor::superClass | |
| [ 2797] 2797 X Code 0xffffff80008d19b0 0x00000000000000b0 0x000f0000 IOMultiMemoryDescriptor::setPurgeable(unsigned int, unsigned int*) | |
| [ 2798] 2798 X Code 0xffffff80008d2680 0x00000000000000a0 0x000f0000 IOMultiMemoryDescriptor::getPageCounts(unsigned long long*, unsigned long long*) | |
| [ 2799] 2799 X Code 0xffffff80008d25e0 0x00000000000000a0 0x000f0000 IOMultiMemoryDescriptor::withDescriptors(IOMemoryDescriptor**, unsigned int, unsigned int, bool) | |
| [ 2800] 2800 X Code 0xffffff80008d1a60 0x00000000000000b0 0x000f0000 IOMultiMemoryDescriptor::getPhysicalSegment(unsigned long long, unsigned long long*, unsigned int) | |
| [ 2801] 2801 X Code 0xffffff80008d1e90 0x00000000000001d0 0x000f0000 IOMultiMemoryDescriptor::initWithDescriptors(IOMemoryDescriptor**, unsigned int, unsigned int, bool) | |
| [ 2802] 2802 X Code 0xffffff80008d1920 0x0000000000000090 0x000f0000 IOMultiMemoryDescriptor::free() | |
| [ 2803] 2803 X Code 0xffffff80008d1c40 0x0000000000000250 0x000f0000 IOMultiMemoryDescriptor::doMap(_vm_map*, unsigned long long*, unsigned int, unsigned long long, unsigned long long) | |
| [ 2804] 2804 X Code 0xffffff80008d1b10 0x00000000000000c0 0x000f0000 IOMultiMemoryDescriptor::prepare(unsigned int) | |
| [ 2805] 2805 X Code 0xffffff80008d1bd0 0x0000000000000070 0x000f0000 IOMultiMemoryDescriptor::complete(unsigned int) | |
| [ 2806] 2806 X Code 0xffffff80008d2490 0x0000000000000040 0x000f0000 IOMultiMemoryDescriptor::MetaClass::MetaClass() | |
| [ 2807] 2807 X Code 0xffffff80008d2520 0x0000000000000040 0x000f0000 IOMultiMemoryDescriptor::MetaClass::MetaClass() | |
| [ 2808] 2808 X Invalid 0xffffff8000b25460 0x0000000000000008 0x000f0000 IOMultiMemoryDescriptor::metaClass | |
| [ 2809] 2809 X Code 0xffffff80008d24f0 0x0000000000000020 0x000f0000 IOMultiMemoryDescriptor::IOMultiMemoryDescriptor(OSMetaClass const*) | |
| [ 2810] 2810 X Code 0xffffff80008d2560 0x0000000000000040 0x000f0000 IOMultiMemoryDescriptor::IOMultiMemoryDescriptor() | |
| [ 2811] 2811 X Code 0xffffff80008d24d0 0x0000000000000020 0x000f0000 IOMultiMemoryDescriptor::IOMultiMemoryDescriptor(OSMetaClass const*) | |
| [ 2812] 2812 X Code 0xffffff80008d25a0 0x0000000000000040 0x000f0000 IOMultiMemoryDescriptor::IOMultiMemoryDescriptor() | |
| [ 2813] 2813 X Code 0xffffff80008d18d0 0x0000000000000040 0x000f0000 IOMultiMemoryDescriptor::~IOMultiMemoryDescriptor() | |
| [ 2814] 2814 X Code 0xffffff80008d18c0 0x0000000000000010 0x000f0000 IOMultiMemoryDescriptor::~IOMultiMemoryDescriptor() | |
| [ 2815] 2815 X Code 0xffffff80008d2510 0x0000000000000010 0x000f0000 IOMultiMemoryDescriptor::~IOMultiMemoryDescriptor() | |
| [ 2816] 2816 X Data 0xffffff8000ac30f0 0x0000000000000028 0x000f0000 IOBufferMemoryDescriptor::gMetaClass | |
| [ 2817] 2817 X Invalid 0xffffff8000b22d98 0x0000000000000008 0x000f0000 IOBufferMemoryDescriptor::superClass | |
| [ 2818] 2818 X Code 0xffffff80008c2910 0x0000000000000060 0x000f0000 IOBufferMemoryDescriptor::appendBytes(void const*, unsigned long) | |
| [ 2819] 2819 X Code 0xffffff80008c3090 0x00000000000000a0 0x000f0000 IOBufferMemoryDescriptor::withOptions(unsigned int, unsigned long, unsigned long) | |
| [ 2820] 2820 X Code 0xffffff80008c2870 0x0000000000000020 0x000f0000 IOBufferMemoryDescriptor::setDirection(unsigned int) | |
| [ 2821] 2821 X Code 0xffffff80008c3130 0x00000000000000b0 0x000f0000 IOBufferMemoryDescriptor::withCapacity(unsigned long, unsigned int, bool) | |
| [ 2822] 2822 X Code 0xffffff80008c28d0 0x0000000000000040 0x000f0000 IOBufferMemoryDescriptor::getBytesNoCopy(unsigned long, unsigned long) | |
| [ 2823] 2823 X Code 0xffffff80008c28a0 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::getBytesNoCopy() | |
| [ 2824] 2824 X Code 0xffffff80008c2f50 0x00000000000000a0 0x000f0000 IOBufferMemoryDescriptor::inTaskWithOptions(task*, unsigned int, unsigned long, unsigned long) | |
| [ 2825] 2825 X Code 0xffffff80008c1f50 0x0000000000000600 0x000f0000 IOBufferMemoryDescriptor::initWithPhysicalMask(task*, unsigned int, unsigned long long, unsigned long long, unsigned long long) | |
| [ 2826] 2826 X Code 0xffffff80008c2ff0 0x00000000000000a0 0x000f0000 IOBufferMemoryDescriptor::inTaskWithPhysicalMask(task*, unsigned int, unsigned long long, unsigned long long) | |
| [ 2827] 2827 X Code 0xffffff80008c2550 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor0() | |
| [ 2828] 2828 X Code 0xffffff80008c2580 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor1() | |
| [ 2829] 2829 X Code 0xffffff80008c25b0 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor2() | |
| [ 2830] 2830 X Code 0xffffff80008c25e0 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor3() | |
| [ 2831] 2831 X Code 0xffffff80008c2610 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor4() | |
| [ 2832] 2832 X Code 0xffffff80008c2640 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor5() | |
| [ 2833] 2833 X Code 0xffffff80008c2670 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor6() | |
| [ 2834] 2834 X Code 0xffffff80008c26a0 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor7() | |
| [ 2835] 2835 X Code 0xffffff80008c26d0 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor8() | |
| [ 2836] 2836 X Code 0xffffff80008c2700 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor9() | |
| [ 2837] 2837 X Code 0xffffff80008c2730 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor10() | |
| [ 2838] 2838 X Code 0xffffff80008c2760 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor11() | |
| [ 2839] 2839 X Code 0xffffff80008c2790 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor12() | |
| [ 2840] 2840 X Code 0xffffff80008c27c0 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor13() | |
| [ 2841] 2841 X Code 0xffffff80008c27f0 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor14() | |
| [ 2842] 2842 X Code 0xffffff80008c2820 0x0000000000000030 0x000f0000 IOBufferMemoryDescriptor::_RESERVEDIOBufferMemoryDescriptor15() | |
| [ 2843] 2843 X Code 0xffffff80008c1da0 0x00000000000001b0 0x000f0000 IOBufferMemoryDescriptor::free() | |
| [ 2844] 2844 X Code 0xffffff80008c2e00 0x0000000000000040 0x000f0000 IOBufferMemoryDescriptor::MetaClass::MetaClass() | |
| [ 2845] 2845 X Code 0xffffff80008c2e90 0x0000000000000040 0x000f0000 IOBufferMemoryDescriptor::MetaClass::MetaClass() | |
| [ 2846] 2846 X Invalid 0xffffff8000b22d90 0x0000000000000008 0x000f0000 IOBufferMemoryDescriptor::metaClass | |
| [ 2847] 2847 X Code 0xffffff80008c2850 0x0000000000000020 0x000f0000 IOBufferMemoryDescriptor::setLength(unsigned long) | |
| [ 2848] 2848 X Code 0xffffff80008c31e0 0x00000000000000d0 0x000f0000 IOBufferMemoryDescriptor::withBytes(void const*, unsigned long, unsigned int, bool) | |
| [ 2849] 2849 X Code 0xffffff80008c2e60 0x0000000000000020 0x000f0000 IOBufferMemoryDescriptor::IOBufferMemoryDescriptor(OSMetaClass const*) | |
| [ 2850] 2850 X Code 0xffffff80008c2ed0 0x0000000000000040 0x000f0000 IOBufferMemoryDescriptor::IOBufferMemoryDescriptor() | |
| [ 2851] 2851 X Code 0xffffff80008c2e40 0x0000000000000020 0x000f0000 IOBufferMemoryDescriptor::IOBufferMemoryDescriptor(OSMetaClass const*) | |
| [ 2852] 2852 X Code 0xffffff80008c2f10 0x0000000000000040 0x000f0000 IOBufferMemoryDescriptor::IOBufferMemoryDescriptor() | |
| [ 2853] 2853 X Code 0xffffff80008c1d50 0x0000000000000040 0x000f0000 IOBufferMemoryDescriptor::~IOBufferMemoryDescriptor() | |
| [ 2854] 2854 X Code 0xffffff80008c1d40 0x0000000000000010 0x000f0000 IOBufferMemoryDescriptor::~IOBufferMemoryDescriptor() | |
| [ 2855] 2855 X Code 0xffffff80008c2e80 0x0000000000000010 0x000f0000 IOBufferMemoryDescriptor::~IOBufferMemoryDescriptor() | |
| [ 2856] 2856 X Data 0xffffff8000ac3468 0x0000000000000028 0x000f0000 IOCPUInterruptController::gMetaClass | |
| [ 2857] 2857 X Invalid 0xffffff8000b29a98 0x0000000000000008 0x000f0000 IOCPUInterruptController::superClass | |
| [ 2858] 2858 X Code 0xffffff80008d9680 0x0000000000000020 0x000f0000 IOCPUInterruptController::causeInterrupt(IOService*, int) | |
| [ 2859] 2859 X Code 0xffffff80008d9660 0x0000000000000010 0x000f0000 IOCPUInterruptController::enableInterrupt(IOService*, int) | |
| [ 2860] 2860 X Code 0xffffff80008d96a0 0x0000000000000040 0x000f0000 IOCPUInterruptController::handleInterrupt(void*, IOService*, int) | |
| [ 2861] 2861 X Code 0xffffff80008d9670 0x0000000000000010 0x000f0000 IOCPUInterruptController::disableInterrupt(IOService*, int) | |
| [ 2862] 2862 X Code 0xffffff80008d9640 0x0000000000000020 0x000f0000 IOCPUInterruptController::getInterruptType(IOService*, int, int*) | |
| [ 2863] 2863 X Code 0xffffff80008d9540 0x0000000000000100 0x000f0000 IOCPUInterruptController::registerInterrupt(IOService*, int, void*, void (*)(void*, void*, void*, int), void*) | |
| [ 2864] 2864 X Code 0xffffff80008d9a00 0x0000000000000080 0x000f0000 IOCPUInterruptController::enableCPUInterrupt(IOCPU*) | |
| [ 2865] 2865 X Code 0xffffff80008d98d0 0x0000000000000130 0x000f0000 IOCPUInterruptController::setCPUInterruptProperties(IOService*) | |
| [ 2866] 2866 X Code 0xffffff80008d96e0 0x00000000000001b0 0x000f0000 IOCPUInterruptController::initCPUInterruptController(int) | |
| [ 2867] 2867 X Code 0xffffff80008d9890 0x0000000000000040 0x000f0000 IOCPUInterruptController::registerCPUInterruptController() | |
| [ 2868] 2868 X Code 0xffffff80008d9a80 0x0000000000000030 0x000f0000 IOCPUInterruptController::_RESERVEDIOCPUInterruptController0() | |
| [ 2869] 2869 X Code 0xffffff80008d9ab0 0x0000000000000030 0x000f0000 IOCPUInterruptController::_RESERVEDIOCPUInterruptController1() | |
| [ 2870] 2870 X Code 0xffffff80008d9ae0 0x0000000000000030 0x000f0000 IOCPUInterruptController::_RESERVEDIOCPUInterruptController2() | |
| [ 2871] 2871 X Code 0xffffff80008d9b10 0x0000000000000030 0x000f0000 IOCPUInterruptController::_RESERVEDIOCPUInterruptController3() | |
| [ 2872] 2872 X Code 0xffffff80008d9b40 0x0000000000000030 0x000f0000 IOCPUInterruptController::_RESERVEDIOCPUInterruptController4() | |
| [ 2873] 2873 X Code 0xffffff80008d9b70 0x0000000000000030 0x000f0000 IOCPUInterruptController::_RESERVEDIOCPUInterruptController5() | |
| [ 2874] 2874 X Code 0xffffff80008db170 0x0000000000000040 0x000f0000 IOCPUInterruptController::MetaClass::MetaClass() | |
| [ 2875] 2875 X Code 0xffffff80008db200 0x0000000000000040 0x000f0000 IOCPUInterruptController::MetaClass::MetaClass() | |
| [ 2876] 2876 X Invalid 0xffffff8000b29aa0 0x0000000000000008 0x000f0000 IOCPUInterruptController::metaClass | |
| [ 2877] 2877 X Code 0xffffff80008db1d0 0x0000000000000020 0x000f0000 IOCPUInterruptController::IOCPUInterruptController(OSMetaClass const*) | |
| [ 2878] 2878 X Code 0xffffff80008db240 0x0000000000000040 0x000f0000 IOCPUInterruptController::IOCPUInterruptController() | |
| [ 2879] 2879 X Code 0xffffff80008db1b0 0x0000000000000020 0x000f0000 IOCPUInterruptController::IOCPUInterruptController(OSMetaClass const*) | |
| [ 2880] 2880 X Code 0xffffff80008db280 0x0000000000000040 0x000f0000 IOCPUInterruptController::IOCPUInterruptController() | |
| [ 2881] 2881 X Code 0xffffff80008d94f0 0x0000000000000040 0x000f0000 IOCPUInterruptController::~IOCPUInterruptController() | |
| [ 2882] 2882 X Code 0xffffff80008d94e0 0x0000000000000010 0x000f0000 IOCPUInterruptController::~IOCPUInterruptController() | |
| [ 2883] 2883 X Code 0xffffff80008db1f0 0x0000000000000010 0x000f0000 IOCPUInterruptController::~IOCPUInterruptController() | |
| [ 2884] 2884 X Data 0xffffff8000ac3290 0x0000000000000028 0x000f0000 IOGeneralMemoryDescriptor::gMetaClass | |
| [ 2885] 2885 X Invalid 0xffffff8000b24d88 0x0000000000000008 0x000f0000 IOGeneralMemoryDescriptor::superClass | |
| [ 2886] 2886 X Code 0xffffff80008ce3d0 0x0000000000000830 0x000f0000 IOGeneralMemoryDescriptor::wireVirtual(unsigned int) | |
| [ 2887] 2887 X Code 0xffffff80008cb8c0 0x00000000000001e0 0x000f0000 IOGeneralMemoryDescriptor::setPurgeable(unsigned int, unsigned int*) | |
| [ 2888] 2888 X Code 0xffffff80008cb170 0x0000000000000750 0x000f0000 IOGeneralMemoryDescriptor::initWithOptions(void*, unsigned int, unsigned int, task*, unsigned int, IOMapper*) | |
| [ 2889] 2889 X Code 0xffffff80008cc520 0x00000000000000d0 0x000f0000 IOGeneralMemoryDescriptor::getPreparationID() | |
| [ 2890] 2890 X Code 0xffffff80008cec00 0x00000000000000d0 0x000f0000 IOGeneralMemoryDescriptor::initMemoryEntries(unsigned long, IOMapper*) | |
| [ 2891] 2891 X Code 0xffffff80008cc230 0x00000000000002f0 0x000f0000 IOGeneralMemoryDescriptor::getPhysicalSegment(unsigned long long, unsigned long long*, unsigned int) | |
| [ 2892] 2892 X Code 0xffffff80008cd960 0x00000000000008a0 0x000f0000 IOGeneralMemoryDescriptor::memoryReferenceMap(IOMemoryReference*, _vm_map*, unsigned long long, unsigned long long, unsigned int, unsigned long long*) | |
| [ 2893] 2893 X Code 0xffffff80008ce350 0x0000000000000080 0x000f0000 IOGeneralMemoryDescriptor::memoryReferenceFree(IOMemoryReference*) | |
| [ 2894] 2894 X Code 0xffffff80008ce290 0x00000000000000c0 0x000f0000 IOGeneralMemoryDescriptor::memoryReferenceAlloc(unsigned int, IOMemoryReference*) | |
| [ 2895] 2895 X Code 0xffffff80008cce50 0x0000000000000900 0x000f0000 IOGeneralMemoryDescriptor::memoryReferenceCreate(unsigned int, IOMemoryReference**) | |
| [ 2896] 2896 X Code 0xffffff80008d0a00 0x0000000000000020 0x000f0000 IOGeneralMemoryDescriptor::memoryReferenceRelease(IOMemoryReference*) | |
| [ 2897] 2897 X Code 0xffffff80008d0b70 0x0000000000000160 0x000f0000 IOGeneralMemoryDescriptor::memoryReferenceSetPurgeable(IOMemoryReference*, unsigned int, unsigned int*) | |
| [ 2898] 2898 X Code 0xffffff80008d0ac0 0x00000000000000b0 0x000f0000 IOGeneralMemoryDescriptor::memoryReferenceGetPageCounts(IOMemoryReference*, unsigned long long*, unsigned long long*) | |
| [ 2899] 2899 X Code 0xffffff80008d10d0 0x0000000000000100 0x000f0000 IOGeneralMemoryDescriptor::withPersistentMemoryDescriptor(IOGeneralMemoryDescriptor*) | |
| [ 2900] 2900 X Code 0xffffff80008caf70 0x0000000000000200 0x000f0000 IOGeneralMemoryDescriptor::free() | |
| [ 2901] 2901 X Code 0xffffff80008cc950 0x0000000000000410 0x000f0000 IOGeneralMemoryDescriptor::doMap(_vm_map*, unsigned long long*, unsigned int, unsigned long long, unsigned long long) | |
| [ 2902] 2902 X Code 0xffffff80008cecd0 0x00000000000001f0 0x000f0000 IOGeneralMemoryDescriptor::dmaMap(IOMapper*, IODMACommand*, IODMAMapSpecification const*, unsigned long long, unsigned long long, unsigned long long*, unsigned long long*) | |
| [ 2903] 2903 X Code 0xffffff80008ccd60 0x00000000000000f0 0x000f0000 IOGeneralMemoryDescriptor::doUnmap(_vm_map*, unsigned long long, unsigned long long) | |
| [ 2904] 2904 X Code 0xffffff80008cc5f0 0x00000000000000d0 0x000f0000 IOGeneralMemoryDescriptor::prepare(unsigned int) | |
| [ 2905] 2905 X Code 0xffffff80008cc6c0 0x0000000000000290 0x000f0000 IOGeneralMemoryDescriptor::complete(unsigned int) | |
| [ 2906] 2906 X Code 0xffffff80008d0740 0x0000000000000040 0x000f0000 IOGeneralMemoryDescriptor::MetaClass::MetaClass() | |
| [ 2907] 2907 X Code 0xffffff80008d07d0 0x0000000000000040 0x000f0000 IOGeneralMemoryDescriptor::MetaClass::MetaClass() | |
| [ 2908] 2908 X Invalid 0xffffff8000b24d90 0x0000000000000008 0x000f0000 IOGeneralMemoryDescriptor::metaClass | |
| [ 2909] 2909 X Code 0xffffff80008d07a0 0x0000000000000020 0x000f0000 IOGeneralMemoryDescriptor::IOGeneralMemoryDescriptor(OSMetaClass const*) | |
| [ 2910] 2910 X Code 0xffffff80008d0810 0x0000000000000040 0x000f0000 IOGeneralMemoryDescriptor::IOGeneralMemoryDescriptor() | |
| [ 2911] 2911 X Code 0xffffff80008d0780 0x0000000000000020 0x000f0000 IOGeneralMemoryDescriptor::IOGeneralMemoryDescriptor(OSMetaClass const*) | |
| [ 2912] 2912 X Code 0xffffff80008d0850 0x0000000000000040 0x000f0000 IOGeneralMemoryDescriptor::IOGeneralMemoryDescriptor() | |
| [ 2913] 2913 X Code 0xffffff80008cabd0 0x0000000000000040 0x000f0000 IOGeneralMemoryDescriptor::~IOGeneralMemoryDescriptor() | |
| [ 2914] 2914 X Code 0xffffff80008cabc0 0x0000000000000010 0x000f0000 IOGeneralMemoryDescriptor::~IOGeneralMemoryDescriptor() | |
| [ 2915] 2915 X Code 0xffffff80008d07c0 0x0000000000000010 0x000f0000 IOGeneralMemoryDescriptor::~IOGeneralMemoryDescriptor() | |
| [ 2916] 2916 X Data 0xffffff8000ac35b8 0x0000000000000028 0x000f0000 IOServiceUserNotification::gMetaClass | |
| [ 2917] 2917 X Invalid 0xffffff8000b2cf68 0x0000000000000008 0x000f0000 IOServiceUserNotification::superClass | |
| [ 2918] 2918 X Code 0xffffff80008e1df0 0x0000000000000090 0x000f0000 IOServiceUserNotification::getNextObject() | |
| [ 2919] 2919 X Code 0xffffff80008e1d20 0x00000000000000d0 0x000f0000 IOServiceUserNotification::free() | |
| [ 2920] 2920 X Code 0xffffff80008e1e80 0x0000000000000110 0x000f0000 IOServiceUserNotification::init(ipc_port*, unsigned int, void*, unsigned long, bool) | |
| [ 2921] 2921 X Code 0xffffff80008e1f90 0x00000000000001d0 0x000f0000 IOServiceUserNotification::handler(void*, IOService*) | |
| [ 2922] 2922 X Code 0xffffff80008e6ae0 0x0000000000000020 0x000f0000 IOServiceUserNotification::_handler(void*, void*, IOService*, IONotifier*) | |
| [ 2923] 2923 X Code 0xffffff80008e6990 0x0000000000000040 0x000f0000 IOServiceUserNotification::MetaClass::MetaClass() | |
| [ 2924] 2924 X Code 0xffffff80008e6a20 0x0000000000000040 0x000f0000 IOServiceUserNotification::MetaClass::MetaClass() | |
| [ 2925] 2925 X Invalid 0xffffff8000b2cf70 0x0000000000000008 0x000f0000 IOServiceUserNotification::metaClass | |
| [ 2926] 2926 X Code 0xffffff80008e69f0 0x0000000000000020 0x000f0000 IOServiceUserNotification::IOServiceUserNotification(OSMetaClass const*) | |
| [ 2927] 2927 X Code 0xffffff80008e6a60 0x0000000000000040 0x000f0000 IOServiceUserNotification::IOServiceUserNotification() | |
| [ 2928] 2928 X Code 0xffffff80008e69d0 0x0000000000000020 0x000f0000 IOServiceUserNotification::IOServiceUserNotification(OSMetaClass const*) | |
| [ 2929] 2929 X Code 0xffffff80008e6aa0 0x0000000000000040 0x000f0000 IOServiceUserNotification::IOServiceUserNotification() | |
| [ 2930] 2930 X Code 0xffffff80008e1cd0 0x0000000000000040 0x000f0000 IOServiceUserNotification::~IOServiceUserNotification() | |
| [ 2931] 2931 X Code 0xffffff80008e1cc0 0x0000000000000010 0x000f0000 IOServiceUserNotification::~IOServiceUserNotification() | |
| [ 2932] 2932 X Code 0xffffff80008e6a10 0x0000000000000010 0x000f0000 IOServiceUserNotification::~IOServiceUserNotification() | |
| [ 2933] 2933 X Data 0xffffff8000ac2cb0 0x0000000000000028 0x000f0000 _IOServiceInterestNotifier::gMetaClass | |
| [ 2934] 2934 X Invalid 0xffffff8000b1d110 0x0000000000000008 0x000f0000 _IOServiceInterestNotifier::superClass | |
| [ 2935] 2935 X Code 0xffffff8000891920 0x0000000000000030 0x000f0000 _IOServiceInterestNotifier::free() | |
| [ 2936] 2936 X Code 0xffffff8000891900 0x0000000000000020 0x000f0000 _IOServiceInterestNotifier::init() | |
| [ 2937] 2937 X Code 0xffffff8000891ba0 0x00000000000000a0 0x000f0000 _IOServiceInterestNotifier::wait() | |
| [ 2938] 2938 X Code 0xffffff8000891b00 0x00000000000000a0 0x000f0000 _IOServiceInterestNotifier::enable(bool) | |
| [ 2939] 2939 X Code 0xffffff8000891950 0x0000000000000120 0x000f0000 _IOServiceInterestNotifier::remove() | |
| [ 2940] 2940 X Code 0xffffff8000891a70 0x0000000000000090 0x000f0000 _IOServiceInterestNotifier::disable() | |
| [ 2941] 2941 X Code 0xffffff800089bbc0 0x0000000000000040 0x000f0000 _IOServiceInterestNotifier::MetaClass::MetaClass() | |
| [ 2942] 2942 X Code 0xffffff800089bc50 0x0000000000000040 0x000f0000 _IOServiceInterestNotifier::MetaClass::MetaClass() | |
| [ 2943] 2943 X Invalid 0xffffff8000b1d118 0x0000000000000008 0x000f0000 _IOServiceInterestNotifier::metaClass | |
| [ 2944] 2944 X Code 0xffffff800089bc20 0x0000000000000020 0x000f0000 _IOServiceInterestNotifier::_IOServiceInterestNotifier(OSMetaClass const*) | |
| [ 2945] 2945 X Code 0xffffff800089bc90 0x0000000000000040 0x000f0000 _IOServiceInterestNotifier::_IOServiceInterestNotifier() | |
| [ 2946] 2946 X Code 0xffffff800089bc00 0x0000000000000020 0x000f0000 _IOServiceInterestNotifier::_IOServiceInterestNotifier(OSMetaClass const*) | |
| [ 2947] 2947 X Code 0xffffff800089bcd0 0x0000000000000040 0x000f0000 _IOServiceInterestNotifier::_IOServiceInterestNotifier() | |
| [ 2948] 2948 X Code 0xffffff80008918b0 0x0000000000000040 0x000f0000 _IOServiceInterestNotifier::~_IOServiceInterestNotifier() | |
| [ 2949] 2949 X Code 0xffffff80008918a0 0x0000000000000010 0x000f0000 _IOServiceInterestNotifier::~_IOServiceInterestNotifier() | |
| [ 2950] 2950 X Code 0xffffff800089bc40 0x0000000000000010 0x000f0000 _IOServiceInterestNotifier::~_IOServiceInterestNotifier() | |
| [ 2951] 2951 X Data 0xffffff8000ac3a80 0x0000000000000028 0x000f0000 IOPMServiceInterestNotifier::gMetaClass | |
| [ 2952] 2952 X Invalid 0xffffff8000b32b38 0x0000000000000008 0x000f0000 IOPMServiceInterestNotifier::superClass | |
| [ 2953] 2953 X Code 0xffffff8000914d50 0x0000000000000040 0x000f0000 IOPMServiceInterestNotifier::MetaClass::MetaClass() | |
| [ 2954] 2954 X Code 0xffffff8000914de0 0x0000000000000040 0x000f0000 IOPMServiceInterestNotifier::MetaClass::MetaClass() | |
| [ 2955] 2955 X Invalid 0xffffff8000b32b40 0x0000000000000060 0x000f0000 IOPMServiceInterestNotifier::metaClass | |
| [ 2956] 2956 X Code 0xffffff8000914db0 0x0000000000000020 0x000f0000 IOPMServiceInterestNotifier::IOPMServiceInterestNotifier(OSMetaClass const*) | |
| [ 2957] 2957 X Code 0xffffff8000914e20 0x0000000000000040 0x000f0000 IOPMServiceInterestNotifier::IOPMServiceInterestNotifier() | |
| [ 2958] 2958 X Code 0xffffff8000914d90 0x0000000000000020 0x000f0000 IOPMServiceInterestNotifier::IOPMServiceInterestNotifier(OSMetaClass const*) | |
| [ 2959] 2959 X Code 0xffffff8000914e60 0x0000000000000040 0x000f0000 IOPMServiceInterestNotifier::IOPMServiceInterestNotifier() | |
| [ 2960] 2960 X Code 0xffffff8000909030 0x0000000000000040 0x000f0000 IOPMServiceInterestNotifier::~IOPMServiceInterestNotifier() | |
| [ 2961] 2961 X Code 0xffffff8000909020 0x0000000000000010 0x000f0000 IOPMServiceInterestNotifier::~IOPMServiceInterestNotifier() | |
| [ 2962] 2962 X Code 0xffffff8000914dd0 0x0000000000000010 0x000f0000 IOPMServiceInterestNotifier::~IOPMServiceInterestNotifier() | |
| [ 2963] 2963 X Data 0xffffff8000ac3508 0x0000000000000028 0x000f0000 IOSharedInterruptController::gMetaClass | |
| [ 2964] 2964 X Invalid 0xffffff8000b2c2f8 0x0000000000000008 0x000f0000 IOSharedInterruptController::superClass | |
| [ 2965] 2965 X Code 0xffffff80008dffa0 0x0000000000000180 0x000f0000 IOSharedInterruptController::enableInterrupt(IOService*, int) | |
| [ 2966] 2966 X Code 0xffffff80008e0220 0x00000000000001c0 0x000f0000 IOSharedInterruptController::handleInterrupt(void*, IOService*, int) | |
| [ 2967] 2967 X Code 0xffffff80008e0120 0x00000000000000f0 0x000f0000 IOSharedInterruptController::disableInterrupt(IOService*, int) | |
| [ 2968] 2968 X Code 0xffffff80008dff80 0x0000000000000020 0x000f0000 IOSharedInterruptController::getInterruptType(IOService*, int, int*) | |
| [ 2969] 2969 X Code 0xffffff80008dfc10 0x00000000000001d0 0x000f0000 IOSharedInterruptController::registerInterrupt(IOService*, int, void*, void (*)(void*, void*, void*, int), void*) | |
| [ 2970] 2970 X Code 0xffffff80008dfde0 0x00000000000001a0 0x000f0000 IOSharedInterruptController::unregisterInterrupt(IOService*, int) | |
| [ 2971] 2971 X Code 0xffffff80008e03e0 0x0000000000000290 0x000f0000 IOSharedInterruptController::initInterruptController(IOInterruptController*, OSData*) | |
| [ 2972] 2972 X Code 0xffffff80008e0210 0x0000000000000010 0x000f0000 IOSharedInterruptController::getInterruptHandlerAddress() | |
| [ 2973] 2973 X Code 0xffffff80008e0670 0x0000000000000030 0x000f0000 IOSharedInterruptController::_RESERVEDIOSharedInterruptController0() | |
| [ 2974] 2974 X Code 0xffffff80008e06a0 0x0000000000000030 0x000f0000 IOSharedInterruptController::_RESERVEDIOSharedInterruptController1() | |
| [ 2975] 2975 X Code 0xffffff80008e06d0 0x0000000000000030 0x000f0000 IOSharedInterruptController::_RESERVEDIOSharedInterruptController2() | |
| [ 2976] 2976 X Code 0xffffff80008e0700 0x0000000000000030 0x000f0000 IOSharedInterruptController::_RESERVEDIOSharedInterruptController3() | |
| [ 2977] 2977 X Code 0xffffff80008e1030 0x0000000000000040 0x000f0000 IOSharedInterruptController::MetaClass::MetaClass() | |
| [ 2978] 2978 X Code 0xffffff80008e10c0 0x0000000000000040 0x000f0000 IOSharedInterruptController::MetaClass::MetaClass() | |
| [ 2979] 2979 X Invalid 0xffffff8000b2c300 0x0000000000000008 0x000f0000 IOSharedInterruptController::metaClass | |
| [ 2980] 2980 X Code 0xffffff80008e1090 0x0000000000000020 0x000f0000 IOSharedInterruptController::IOSharedInterruptController(OSMetaClass const*) | |
| [ 2981] 2981 X Code 0xffffff80008e0ff0 0x0000000000000040 0x000f0000 IOSharedInterruptController::IOSharedInterruptController() | |
| [ 2982] 2982 X Code 0xffffff80008e1070 0x0000000000000020 0x000f0000 IOSharedInterruptController::IOSharedInterruptController(OSMetaClass const*) | |
| [ 2983] 2983 X Code 0xffffff80008e1100 0x0000000000000040 0x000f0000 IOSharedInterruptController::IOSharedInterruptController() | |
| [ 2984] 2984 X Code 0xffffff80008dfbc0 0x0000000000000040 0x000f0000 IOSharedInterruptController::~IOSharedInterruptController() | |
| [ 2985] 2985 X Code 0xffffff80008dfbb0 0x0000000000000010 0x000f0000 IOSharedInterruptController::~IOSharedInterruptController() | |
| [ 2986] 2986 X Code 0xffffff80008e10b0 0x0000000000000010 0x000f0000 IOSharedInterruptController::~IOSharedInterruptController() | |
| [ 2987] 2987 X Data 0xffffff8000ac30a0 0x0000000000000028 0x000f0000 IOFilterInterruptEventSource::gMetaClass | |
| [ 2988] 2988 X Invalid 0xffffff8000b22690 0x0000000000000008 0x000f0000 IOFilterInterruptEventSource::superClass | |
| [ 2989] 2989 X Code 0xffffff80008c0400 0x00000000000000e0 0x000f0000 IOFilterInterruptEventSource::signalInterrupt() | |
| [ 2990] 2990 X Code 0xffffff80008c0bf0 0x0000000000000010 0x000f0000 IOFilterInterruptEventSource::interruptEventSource(OSObject*, void (*)(OSObject*, IOInterruptEventSource*, int), IOService*, int) | |
| [ 2991] 2991 X Code 0xffffff80008c0060 0x00000000000001a0 0x000f0000 IOFilterInterruptEventSource::normalInterruptOccurred(void*, IOService*, int) | |
| [ 2992] 2992 X Code 0xffffff80008c0200 0x00000000000001b0 0x000f0000 IOFilterInterruptEventSource::disableInterruptOccurred(void*, IOService*, int) | |
| [ 2993] 2993 X Code 0xffffff80008c0c00 0x00000000000000b0 0x000f0000 IOFilterInterruptEventSource::filterInterruptEventSource(OSObject*, void (*)(OSObject*, IOInterruptEventSource*, int), bool (*)(OSObject*, IOFilterInterruptEventSource*), IOService*, int) | |
| [ 2994] 2994 X Code 0xffffff80008c04f0 0x0000000000000030 0x000f0000 IOFilterInterruptEventSource::_RESERVEDIOFilterInterruptEventSource0() | |
| [ 2995] 2995 X Code 0xffffff80008c0520 0x0000000000000030 0x000f0000 IOFilterInterruptEventSource::_RESERVEDIOFilterInterruptEventSource1() | |
| [ 2996] 2996 X Code 0xffffff80008c0550 0x0000000000000030 0x000f0000 IOFilterInterruptEventSource::_RESERVEDIOFilterInterruptEventSource2() | |
| [ 2997] 2997 X Code 0xffffff80008c0580 0x0000000000000030 0x000f0000 IOFilterInterruptEventSource::_RESERVEDIOFilterInterruptEventSource3() | |
| [ 2998] 2998 X Code 0xffffff80008c05b0 0x0000000000000030 0x000f0000 IOFilterInterruptEventSource::_RESERVEDIOFilterInterruptEventSource4() | |
| [ 2999] 2999 X Code 0xffffff80008c05e0 0x0000000000000030 0x000f0000 IOFilterInterruptEventSource::_RESERVEDIOFilterInterruptEventSource5() | |
| [ 3000] 3000 X Code 0xffffff80008c0610 0x0000000000000030 0x000f0000 IOFilterInterruptEventSource::_RESERVEDIOFilterInterruptEventSource6() | |
| [ 3001] 3001 X Code 0xffffff80008c0640 0x0000000000000030 0x000f0000 IOFilterInterruptEventSource::_RESERVEDIOFilterInterruptEventSource7() | |
| [ 3002] 3002 X Code 0xffffff80008c0050 0x0000000000000010 0x000f0000 IOFilterInterruptEventSource::init(OSObject*, void (*)(OSObject*, IOInterruptEventSource*, int), IOService*, int) | |
| [ 3003] 3003 X Code 0xffffff80008c03b0 0x0000000000000050 0x000f0000 IOFilterInterruptEventSource::init(OSObject*, void (*)(OSObject*, IOInterruptEventSource*, int), bool (*)(OSObject*, IOFilterInterruptEventSource*), IOService*, int) | |
| [ 3004] 3004 X Code 0xffffff80008c0aa0 0x0000000000000040 0x000f0000 IOFilterInterruptEventSource::MetaClass::MetaClass() | |
| [ 3005] 3005 X Code 0xffffff80008c0b30 0x0000000000000040 0x000f0000 IOFilterInterruptEventSource::MetaClass::MetaClass() | |
| [ 3006] 3006 X Invalid 0xffffff8000b22688 0x0000000000000008 0x000f0000 IOFilterInterruptEventSource::metaClass | |
| [ 3007] 3007 X Code 0xffffff80008c0b00 0x0000000000000020 0x000f0000 IOFilterInterruptEventSource::IOFilterInterruptEventSource(OSMetaClass const*) | |
| [ 3008] 3008 X Code 0xffffff80008c0b70 0x0000000000000040 0x000f0000 IOFilterInterruptEventSource::IOFilterInterruptEventSource() | |
| [ 3009] 3009 X Code 0xffffff80008c0ae0 0x0000000000000020 0x000f0000 IOFilterInterruptEventSource::IOFilterInterruptEventSource(OSMetaClass const*) | |
| [ 3010] 3010 X Code 0xffffff80008c0bb0 0x0000000000000040 0x000f0000 IOFilterInterruptEventSource::IOFilterInterruptEventSource() | |
| [ 3011] 3011 X Code 0xffffff80008c0000 0x0000000000000040 0x000f0000 IOFilterInterruptEventSource::~IOFilterInterruptEventSource() | |
| [ 3012] 3012 X Code 0xffffff80008bfff0 0x0000000000000010 0x000f0000 IOFilterInterruptEventSource::~IOFilterInterruptEventSource() | |
| [ 3013] 3013 X Code 0xffffff80008c0b20 0x0000000000000010 0x000f0000 IOFilterInterruptEventSource::~IOFilterInterruptEventSource() | |
| [ 3014] 3014 X Data 0xffffff8000ac3140 0x0000000000000028 0x000f0000 IOInterleavedMemoryDescriptor::gMetaClass | |
| [ 3015] 3015 X Invalid 0xffffff8000b23490 0x0000000000000008 0x000f0000 IOInterleavedMemoryDescriptor::superClass | |
| [ 3016] 3016 X Code 0xffffff80008c6490 0x0000000000000090 0x000f0000 IOInterleavedMemoryDescriptor::withCapacity(unsigned long long, unsigned int) | |
| [ 3017] 3017 X Code 0xffffff80008c5cb0 0x00000000000000e0 0x000f0000 IOInterleavedMemoryDescriptor::initWithCapacity(unsigned long long, unsigned int) | |
| [ 3018] 3018 X Code 0xffffff80008c5ae0 0x00000000000000a0 0x000f0000 IOInterleavedMemoryDescriptor::getPhysicalSegment(unsigned long long, unsigned long long*, unsigned int) | |
| [ 3019] 3019 X Code 0xffffff80008c5e70 0x00000000000000a0 0x000f0000 IOInterleavedMemoryDescriptor::setMemoryDescriptor(IOMemoryDescriptor*, unsigned long long, unsigned long long) | |
| [ 3020] 3020 X Code 0xffffff80008c5d90 0x00000000000000e0 0x000f0000 IOInterleavedMemoryDescriptor::clearMemoryDescriptors(unsigned int) | |
| [ 3021] 3021 X Code 0xffffff80008c5a50 0x0000000000000090 0x000f0000 IOInterleavedMemoryDescriptor::free() | |
| [ 3022] 3022 X Code 0xffffff80008c5b80 0x00000000000000b0 0x000f0000 IOInterleavedMemoryDescriptor::prepare(unsigned int) | |
| [ 3023] 3023 X Code 0xffffff80008c5c30 0x0000000000000080 0x000f0000 IOInterleavedMemoryDescriptor::complete(unsigned int) | |
| [ 3024] 3024 X Code 0xffffff80008c6340 0x0000000000000040 0x000f0000 IOInterleavedMemoryDescriptor::MetaClass::MetaClass() | |
| [ 3025] 3025 X Code 0xffffff80008c63d0 0x0000000000000040 0x000f0000 IOInterleavedMemoryDescriptor::MetaClass::MetaClass() | |
| [ 3026] 3026 X Invalid 0xffffff8000b23488 0x0000000000000008 0x000f0000 IOInterleavedMemoryDescriptor::metaClass | |
| [ 3027] 3027 X Code 0xffffff80008c63a0 0x0000000000000020 0x000f0000 IOInterleavedMemoryDescriptor::IOInterleavedMemoryDescriptor(OSMetaClass const*) | |
| [ 3028] 3028 X Code 0xffffff80008c6410 0x0000000000000040 0x000f0000 IOInterleavedMemoryDescriptor::IOInterleavedMemoryDescriptor() | |
| [ 3029] 3029 X Code 0xffffff80008c6380 0x0000000000000020 0x000f0000 IOInterleavedMemoryDescriptor::IOInterleavedMemoryDescriptor(OSMetaClass const*) | |
| [ 3030] 3030 X Code 0xffffff80008c6450 0x0000000000000040 0x000f0000 IOInterleavedMemoryDescriptor::IOInterleavedMemoryDescriptor() | |
| [ 3031] 3031 X Code 0xffffff80008c5a00 0x0000000000000040 0x000f0000 IOInterleavedMemoryDescriptor::~IOInterleavedMemoryDescriptor() | |
| [ 3032] 3032 X Code 0xffffff80008c59f0 0x0000000000000010 0x000f0000 IOInterleavedMemoryDescriptor::~IOInterleavedMemoryDescriptor() | |
| [ 3033] 3033 X Code 0xffffff80008c63c0 0x0000000000000010 0x000f0000 IOInterleavedMemoryDescriptor::~IOInterleavedMemoryDescriptor() | |
| [ 3034] 3034 X Data 0xffffff8000ac3590 0x0000000000000028 0x000f0000 IOServiceMessageUserNotification::gMetaClass | |
| [ 3035] 3035 X Invalid 0xffffff8000b2cf58 0x0000000000000008 0x000f0000 IOServiceMessageUserNotification::superClass | |
| [ 3036] 3036 X Code 0xffffff80008e2660 0x0000000000000010 0x000f0000 IOServiceMessageUserNotification::getNextObject() | |
| [ 3037] 3037 X Code 0xffffff80008e25c0 0x00000000000000a0 0x000f0000 IOServiceMessageUserNotification::free() | |
| [ 3038] 3038 X Code 0xffffff80008e2670 0x0000000000000140 0x000f0000 IOServiceMessageUserNotification::init(ipc_port*, unsigned int, void*, unsigned long, unsigned long, bool) | |
| [ 3039] 3039 X Code 0xffffff80008e27b0 0x0000000000000340 0x000f0000 IOServiceMessageUserNotification::handler(void*, unsigned int, IOService*, void*, unsigned long) | |
| [ 3040] 3040 X Code 0xffffff80008e6c50 0x0000000000000020 0x000f0000 IOServiceMessageUserNotification::_handler(void*, void*, unsigned int, IOService*, void*, unsigned long) | |
| [ 3041] 3041 X Code 0xffffff80008e6b00 0x0000000000000040 0x000f0000 IOServiceMessageUserNotification::MetaClass::MetaClass() | |
| [ 3042] 3042 X Code 0xffffff80008e6b90 0x0000000000000040 0x000f0000 IOServiceMessageUserNotification::MetaClass::MetaClass() | |
| [ 3043] 3043 X Invalid 0xffffff8000b2cf60 0x0000000000000008 0x000f0000 IOServiceMessageUserNotification::metaClass | |
| [ 3044] 3044 X Code 0xffffff80008e6b60 0x0000000000000020 0x000f0000 IOServiceMessageUserNotification::IOServiceMessageUserNotification(OSMetaClass const*) | |
| [ 3045] 3045 X Code 0xffffff80008e6bd0 0x0000000000000040 0x000f0000 IOServiceMessageUserNotification::IOServiceMessageUserNotification() | |
| [ 3046] 3046 X Code 0xffffff80008e6b40 0x0000000000000020 0x000f0000 IOServiceMessageUserNotification::IOServiceMessageUserNotification(OSMetaClass const*) | |
| [ 3047] 3047 X Code 0xffffff80008e6c10 0x0000000000000040 0x000f0000 IOServiceMessageUserNotification::IOServiceMessageUserNotification() | |
| [ 3048] 3048 X Code 0xffffff80008e2570 0x0000000000000040 0x000f0000 IOServiceMessageUserNotification::~IOServiceMessageUserNotification() | |
| [ 3049] 3049 X Code 0xffffff80008e2560 0x0000000000000010 0x000f0000 IOServiceMessageUserNotification::~IOServiceMessageUserNotification() | |
| [ 3050] 3050 X Code 0xffffff80008e6b80 0x0000000000000010 0x000f0000 IOServiceMessageUserNotification::~IOServiceMessageUserNotification() | |
| [ 3051] 3051 X Data 0xffffff8000ac3440 0x0000000000000028 0x000f0000 IOCPU::gMetaClass | |
| [ 3052] 3052 X Invalid 0xffffff8000b29168 0x0000000000000008 0x000f0000 IOCPU::superClass | |
| [ 3053] 3053 X Code 0xffffff80008d9030 0x0000000000000010 0x000f0000 IOCPU::getCPUGroup() | |
| [ 3054] 3054 X Code 0xffffff80008d9020 0x0000000000000010 0x000f0000 IOCPU::getCPUState() | |
| [ 3055] 3055 X Code 0xffffff80008d8fa0 0x0000000000000020 0x000f0000 IOCPU::setCPUState(unsigned int) | |
| [ 3056] 3056 X Code 0xffffff80008d8c70 0x0000000000000020 0x000f0000 IOCPU::setProperty(OSSymbol const*, OSObject*) | |
| [ 3057] 3057 X Code 0xffffff80008d9010 0x0000000000000010 0x000f0000 IOCPU::getCPUNumber() | |
| [ 3058] 3058 X Code 0xffffff80008d8f80 0x0000000000000020 0x000f0000 IOCPU::setCPUNumber(unsigned int) | |
| [ 3059] 3059 X Code 0xffffff80008d8d40 0x00000000000000f0 0x000f0000 IOCPU::setProperties(OSObject*) | |
| [ 3060] 3060 X Code 0xffffff80008d9070 0x0000000000000030 0x000f0000 IOCPU::_RESERVEDIOCPU0() | |
| [ 3061] 3061 X Code 0xffffff80008d90a0 0x0000000000000030 0x000f0000 IOCPU::_RESERVEDIOCPU1() | |
| [ 3062] 3062 X Code 0xffffff80008d90d0 0x0000000000000030 0x000f0000 IOCPU::_RESERVEDIOCPU2() | |
| [ 3063] 3063 X Code 0xffffff80008d9100 0x0000000000000030 0x000f0000 IOCPU::_RESERVEDIOCPU3() | |
| [ 3064] 3064 X Code 0xffffff80008d9130 0x0000000000000030 0x000f0000 IOCPU::_RESERVEDIOCPU4() | |
| [ 3065] 3065 X Code 0xffffff80008d9160 0x0000000000000030 0x000f0000 IOCPU::_RESERVEDIOCPU5() | |
| [ 3066] 3066 X Code 0xffffff80008d9190 0x0000000000000030 0x000f0000 IOCPU::_RESERVEDIOCPU6() | |
| [ 3067] 3067 X Code 0xffffff80008d91c0 0x0000000000000030 0x000f0000 IOCPU::_RESERVEDIOCPU7() | |
| [ 3068] 3068 X Code 0xffffff80008d9040 0x0000000000000020 0x000f0000 IOCPU::getCPUGroupSize() | |
| [ 3069] 3069 X Code 0xffffff80008d8ff0 0x0000000000000010 0x000f0000 IOCPU::signalCPUCancel(IOCPU*) | |
| [ 3070] 3070 X Code 0xffffff80008d9060 0x0000000000000010 0x000f0000 IOCPU::getMachProcessor() | |
| [ 3071] 3071 X Code 0xffffff80008d9000 0x0000000000000010 0x000f0000 IOCPU::enableCPUTimeBase(bool) | |
| [ 3072] 3072 X Code 0xffffff80008d8fd0 0x0000000000000020 0x000f0000 IOCPU::signalCPUDeferred(IOCPU*) | |
| [ 3073] 3073 X Code 0xffffff80008d8e30 0x0000000000000150 0x000f0000 IOCPU::start(IOService*) | |
| [ 3074] 3074 X Code 0xffffff80008d91f0 0x0000000000000080 0x000f0000 IOCPU::initCPUs() | |
| [ 3075] 3075 X Code 0xffffff80008dac70 0x0000000000000040 0x000f0000 IOCPU::MetaClass::MetaClass() | |
| [ 3076] 3076 X Code 0xffffff80008dace0 0x0000000000000040 0x000f0000 IOCPU::MetaClass::MetaClass() | |
| [ 3077] 3077 X Invalid 0xffffff8000b29160 0x0000000000000008 0x000f0000 IOCPU::metaClass | |
| [ 3078] 3078 X Code 0xffffff80008d8fc0 0x0000000000000010 0x000f0000 IOCPU::signalCPU(IOCPU*) | |
| [ 3079] 3079 X Code 0xffffff80008dacb0 0x0000000000000020 0x000f0000 IOCPU::IOCPU(OSMetaClass const*) | |
| [ 3080] 3080 X Code 0xffffff80008d8c20 0x0000000000000040 0x000f0000 IOCPU::~IOCPU() | |
| [ 3081] 3081 X Code 0xffffff80008d8c10 0x0000000000000010 0x000f0000 IOCPU::~IOCPU() | |
| [ 3082] 3082 X Code 0xffffff80008dacd0 0x0000000000000010 0x000f0000 IOCPU::~IOCPU() | |
| [ 3083] 3083 X Data 0xffffff8000ac2728 0x0000000000000028 0x000f0000 OSSet::gMetaClass | |
| [ 3084] 3084 X Code 0xffffff80008560f0 0x0000000000000040 0x000f0000 OSSet::setOptions(unsigned int, unsigned int, void*) | |
| [ 3085] 3085 X Invalid 0xffffff8000b1ada0 0x0000000000000008 0x000f0000 OSSet::superClass | |
| [ 3086] 3086 X Code 0xffffff8000856430 0x0000000000000020 0x000f0000 OSSet::initWithSet(OSSet const*, unsigned int) | |
| [ 3087] 3087 X Code 0xffffff8000856f00 0x0000000000000090 0x000f0000 OSSet::withObjects(OSObject const**, unsigned int, unsigned int) | |
| [ 3088] 3088 X Code 0xffffff8000856580 0x00000000000000a0 0x000f0000 OSSet::removeObject(OSMetaClassBase const*) | |
| [ 3089] 3089 X Code 0xffffff8000856e80 0x0000000000000080 0x000f0000 OSSet::withCapacity(unsigned int) | |
| [ 3090] 3090 X Code 0xffffff8000856400 0x0000000000000030 0x000f0000 OSSet::initWithArray(OSArray const*, unsigned int) | |
| [ 3091] 3091 X Code 0xffffff8000856130 0x0000000000000200 0x000f0000 OSSet::copyCollection(OSDictionary*) | |
| [ 3092] 3092 X Code 0xffffff8000856080 0x0000000000000020 0x000f0000 OSSet::ensureCapacity(unsigned int) | |
| [ 3093] 3093 X Code 0xffffff8000856780 0x0000000000000030 0x000f0000 OSSet::_RESERVEDOSSet0() | |
| [ 3094] 3094 X Code 0xffffff80008567b0 0x0000000000000030 0x000f0000 OSSet::_RESERVEDOSSet1() | |
| [ 3095] 3095 X Code 0xffffff80008567e0 0x0000000000000030 0x000f0000 OSSet::_RESERVEDOSSet2() | |
| [ 3096] 3096 X Code 0xffffff8000856810 0x0000000000000030 0x000f0000 OSSet::_RESERVEDOSSet3() | |
| [ 3097] 3097 X Code 0xffffff8000856840 0x0000000000000030 0x000f0000 OSSet::_RESERVEDOSSet4() | |
| [ 3098] 3098 X Code 0xffffff8000856870 0x0000000000000030 0x000f0000 OSSet::_RESERVEDOSSet5() | |
| [ 3099] 3099 X Code 0xffffff80008568a0 0x0000000000000030 0x000f0000 OSSet::_RESERVEDOSSet6() | |
| [ 3100] 3100 X Code 0xffffff80008568d0 0x0000000000000030 0x000f0000 OSSet::_RESERVEDOSSet7() | |
| [ 3101] 3101 X Code 0xffffff80008560a0 0x0000000000000050 0x000f0000 OSSet::flushCollection() | |
| [ 3102] 3102 X Code 0xffffff8000856360 0x00000000000000a0 0x000f0000 OSSet::initWithObjects(OSObject const**, unsigned int, unsigned int) | |
| [ 3103] 3103 X Code 0xffffff8000856330 0x0000000000000030 0x000f0000 OSSet::initWithCapacity(unsigned int) | |
| [ 3104] 3104 X Code 0xffffff8000856060 0x0000000000000020 0x000f0000 OSSet::setCapacityIncrement(unsigned int) | |
| [ 3105] 3105 X Code 0xffffff8000855f80 0x0000000000000050 0x000f0000 OSSet::free() | |
| [ 3106] 3106 X Code 0xffffff80008564c0 0x00000000000000a0 0x000f0000 OSSet::merge(OSArray const*) | |
| [ 3107] 3107 X Code 0xffffff8000856560 0x0000000000000020 0x000f0000 OSSet::merge(OSSet const*) | |
| [ 3108] 3108 X Code 0xffffff8000857020 0x0000000000000090 0x000f0000 OSSet::withSet(OSSet const*, unsigned int) | |
| [ 3109] 3109 X Code 0xffffff8000856d30 0x0000000000000040 0x000f0000 OSSet::MetaClass::MetaClass() | |
| [ 3110] 3110 X Code 0xffffff8000856dc0 0x0000000000000040 0x000f0000 OSSet::MetaClass::MetaClass() | |
| [ 3111] 3111 X Invalid 0xffffff8000b1ad98 0x0000000000000008 0x000f0000 OSSet::metaClass | |
| [ 3112] 3112 X Code 0xffffff8000856450 0x0000000000000070 0x000f0000 OSSet::setObject(OSMetaClassBase const*) | |
| [ 3113] 3113 X Code 0xffffff8000856f90 0x0000000000000090 0x000f0000 OSSet::withArray(OSArray const*, unsigned int) | |
| [ 3114] 3114 X Code 0xffffff8000856d90 0x0000000000000020 0x000f0000 OSSet::OSSet(OSMetaClass const*) | |
| [ 3115] 3115 X Code 0xffffff8000856e00 0x0000000000000040 0x000f0000 OSSet::OSSet() | |
| [ 3116] 3116 X Code 0xffffff8000856d70 0x0000000000000020 0x000f0000 OSSet::OSSet(OSMetaClass const*) | |
| [ 3117] 3117 X Code 0xffffff8000856e40 0x0000000000000040 0x000f0000 OSSet::OSSet() | |
| [ 3118] 3118 X Code 0xffffff8000855e20 0x0000000000000040 0x000f0000 OSSet::~OSSet() | |
| [ 3119] 3119 X Code 0xffffff8000855e10 0x0000000000000010 0x000f0000 OSSet::~OSSet() | |
| [ 3120] 3120 X Code 0xffffff8000856db0 0x0000000000000010 0x000f0000 OSSet::~OSSet() | |
| [ 3121] 3121 X Code 0xffffff80008398c0 0x0000000000000080 0x000f0000 OSData::appendByte(unsigned char, unsigned int) | |
| [ 3122] 3122 X Data 0xffffff8000ac25c0 0x0000000000000028 0x000f0000 OSData::gMetaClass | |
| [ 3123] 3123 X Invalid 0xffffff8000b19560 0x0000000000000008 0x000f0000 OSData::superClass | |
| [ 3124] 3124 X Code 0xffffff8000839750 0x0000000000000020 0x000f0000 OSData::appendBytes(OSData const*) | |
| [ 3125] 3125 X Code 0xffffff80008396c0 0x0000000000000090 0x000f0000 OSData::appendBytes(void const*, unsigned int) | |
| [ 3126] 3126 X Code 0xffffff8000839440 0x0000000000000020 0x000f0000 OSData::initWithData(OSData const*) | |
| [ 3127] 3127 X Code 0xffffff8000839460 0x0000000000000040 0x000f0000 OSData::initWithData(OSData const*, unsigned int, unsigned int) | |
| [ 3128] 3128 X Code 0xffffff800083a070 0x0000000000000080 0x000f0000 OSData::withCapacity(unsigned int) | |
| [ 3129] 3129 X Code 0xffffff80008393c0 0x0000000000000060 0x000f0000 OSData::initWithBytes(void const*, unsigned int) | |
| [ 3130] 3130 X Code 0xffffff80008394e0 0x00000000000001e0 0x000f0000 OSData::ensureCapacity(unsigned int) | |
| [ 3131] 3131 X Code 0xffffff800083a380 0x0000000000000020 0x000f0000 OSData::isSerializable() | |
| [ 3132] 3132 X Code 0xffffff800083a320 0x0000000000000060 0x000f0000 OSData::setSerializable(bool) | |
| [ 3133] 3133 X Code 0xffffff800083a180 0x0000000000000090 0x000f0000 OSData::withBytesNoCopy(void*, unsigned int) | |
| [ 3134] 3134 X Code 0xffffff80008399a0 0x0000000000000030 0x000f0000 OSData::_RESERVEDOSData1() | |
| [ 3135] 3135 X Code 0xffffff80008399d0 0x0000000000000030 0x000f0000 OSData::_RESERVEDOSData2() | |
| [ 3136] 3136 X Code 0xffffff8000839a00 0x0000000000000030 0x000f0000 OSData::_RESERVEDOSData3() | |
| [ 3137] 3137 X Code 0xffffff8000839a30 0x0000000000000030 0x000f0000 OSData::_RESERVEDOSData4() | |
| [ 3138] 3138 X Code 0xffffff8000839a60 0x0000000000000030 0x000f0000 OSData::_RESERVEDOSData5() | |
| [ 3139] 3139 X Code 0xffffff8000839a90 0x0000000000000030 0x000f0000 OSData::_RESERVEDOSData6() | |
| [ 3140] 3140 X Code 0xffffff8000839ac0 0x0000000000000030 0x000f0000 OSData::_RESERVEDOSData7() | |
| [ 3141] 3141 X Code 0xffffff8000839240 0x0000000000000180 0x000f0000 OSData::initWithCapacity(unsigned int) | |
| [ 3142] 3142 X Code 0xffffff8000839940 0x0000000000000060 0x000f0000 OSData::setDeallocFunction(void (*)(void*, unsigned int)) | |
| [ 3143] 3143 X Code 0xffffff8000839420 0x0000000000000020 0x000f0000 OSData::initWithBytesNoCopy(void*, unsigned int) | |
| [ 3144] 3144 X Code 0xffffff80008394d0 0x0000000000000010 0x000f0000 OSData::setCapacityIncrement(unsigned int) | |
| [ 3145] 3145 X Code 0xffffff8000839180 0x00000000000000c0 0x000f0000 OSData::free() | |
| [ 3146] 3146 X Code 0xffffff800083a210 0x0000000000000080 0x000f0000 OSData::withData(OSData const*) | |
| [ 3147] 3147 X Code 0xffffff800083a290 0x0000000000000090 0x000f0000 OSData::withData(OSData const*, unsigned int, unsigned int) | |
| [ 3148] 3148 X Code 0xffffff8000839f20 0x0000000000000040 0x000f0000 OSData::MetaClass::MetaClass() | |
| [ 3149] 3149 X Code 0xffffff8000839fb0 0x0000000000000040 0x000f0000 OSData::MetaClass::MetaClass() | |
| [ 3150] 3150 X Invalid 0xffffff8000b19558 0x0000000000000008 0x000f0000 OSData::metaClass | |
| [ 3151] 3151 X Code 0xffffff800083a0f0 0x0000000000000090 0x000f0000 OSData::withBytes(void const*, unsigned int) | |
| [ 3152] 3152 X Code 0xffffff8000839f80 0x0000000000000020 0x000f0000 OSData::OSData(OSMetaClass const*) | |
| [ 3153] 3153 X Code 0xffffff8000839ff0 0x0000000000000040 0x000f0000 OSData::OSData() | |
| [ 3154] 3154 X Code 0xffffff8000839f60 0x0000000000000020 0x000f0000 OSData::OSData(OSMetaClass const*) | |
| [ 3155] 3155 X Code 0xffffff800083a030 0x0000000000000040 0x000f0000 OSData::OSData() | |
| [ 3156] 3156 X Code 0xffffff8000838e40 0x0000000000000040 0x000f0000 OSData::~OSData() | |
| [ 3157] 3157 X Code 0xffffff8000838e30 0x0000000000000010 0x000f0000 OSData::~OSData() | |
| [ 3158] 3158 X Code 0xffffff8000839fa0 0x0000000000000010 0x000f0000 OSData::~OSData() | |
| [ 3159] 3159 X Data 0xffffff8000ac2660 0x0000000000000028 0x000f0000 OSKext::gMetaClass | |
| [ 3160] 3160 X Code 0xffffff80008462c0 0x0000000000000010 0x000f0000 OSKext::getLoadTag() | |
| [ 3161] 3161 X Code 0xffffff8000846080 0x0000000000000010 0x000f0000 OSKext::getVersion() | |
| [ 3162] 3162 X Code 0xffffff800084a350 0x0000000000000520 0x000f0000 OSKext::initialize() | |
| [ 3163] 3163 X Code 0xffffff8000849150 0x0000000000000290 0x000f0000 OSKext::removeKext(OSKext*, bool) | |
| [ 3164] 3164 X Invalid 0xffffff8000b19e28 0x0000000000000008 0x000f0000 OSKext::superClass | |
| [ 3165] 3165 X Code 0xffffff80008462d0 0x0000000000000060 0x000f0000 OSKext::getSizeInfo(unsigned int*, unsigned int*) | |
| [ 3166] 3166 X Code 0xffffff80008466f0 0x0000000000000010 0x000f0000 OSKext::isInterface() | |
| [ 3167] 3167 X Code 0xffffff8000846860 0x0000000000000010 0x000f0000 OSKext::isPrelinked() | |
| [ 3168] 3168 X Code 0xffffff8000845a30 0x0000000000000100 0x000f0000 OSKext::removeClass(OSMetaClass*) | |
| [ 3169] 3169 X Code 0xffffff8000846720 0x0000000000000050 0x000f0000 OSKext::isExecutable() | |
| [ 3170] 3170 X Code 0xffffff80008516b0 0x0000000000000230 0x000f0000 OSKext::printSummary(_loaded_kext_summary*, int (*)(char const*, ...), bool) | |
| [ 3171] 3171 X Code 0xffffff800084b310 0x0000000000000320 0x000f0000 OSKext::willShutdown() | |
| [ 3172] 3172 X Code 0xffffff8000851010 0x0000000000000190 0x000f0000 OSKext::cancelRequest(unsigned int, void**) | |
| [ 3173] 3173 X Code 0xffffff8000841d10 0x00000000000001a0 0x000f0000 OSKext::getExecutable() | |
| [ 3174] 3174 X Code 0xffffff8000846050 0x0000000000000010 0x000f0000 OSKext::getIdentifier() | |
| [ 3175] 3175 X Code 0xffffff800084f000 0x0000000000000ce0 0x000f0000 OSKext::handleRequest(host*, unsigned int, char*, unsigned int, char**, unsigned int*, char**, unsigned int*) | |
| [ 3176] 3176 X Code 0xffffff800084c300 0x0000000000000550 0x000f0000 OSKext::loadFromMkext(unsigned int, char*, unsigned int, char**, unsigned int*) | |
| [ 3177] 3177 X Code 0xffffff8000848b10 0x00000000000001b0 0x000f0000 OSKext::lookupSection(char const*, char const*) | |
| [ 3178] 3178 X Code 0xffffff800083d800 0x0000000000000110 0x000f0000 OSKext::setExecutable(OSData*, OSData*, bool) | |
| [ 3179] 3179 X Code 0xffffff800084e540 0x00000000000000a0 0x000f0000 OSKext::autounloadKext(OSKext*) | |
| [ 3180] 3180 X Code 0xffffff800084b930 0x0000000000000080 0x000f0000 OSKext::getLoadEnabled() | |
| [ 3181] 3181 X Code 0xffffff8000845b90 0x0000000000000010 0x000f0000 OSKext::getMetaClasses() | |
| [ 3182] 3182 X Code 0xffffff8000851930 0x0000000000000090 0x000f0000 OSKext::kextForAddress(void const*) | |
| [ 3183] 3183 X Code 0xffffff8000840c80 0x0000000000000e70 0x000f0000 OSKext::loadExecutable() | |
| [ 3184] 3184 X Code 0xffffff800084b200 0x0000000000000090 0x000f0000 OSKext::setKextdActive(bool) | |
| [ 3185] 3185 X Code 0xffffff800084b630 0x00000000000000b0 0x000f0000 OSKext::setLoadEnabled(bool) | |
| [ 3186] 3186 X Code 0xffffff800084bd70 0x0000000000000090 0x000f0000 OSKext::withBooterData(OSString*, OSData*) | |
| [ 3187] 3187 X Code 0xffffff800084c270 0x0000000000000090 0x000f0000 OSKext::withMkext2Info(OSDictionary*, OSData*) | |
| [ 3188] 3188 X Code 0xffffff800084ec10 0x0000000000000220 0x000f0000 OSKext::considerUnloads(bool) | |
| [ 3189] 3189 X Code 0xffffff800083f5a0 0x0000000000000010 0x000f0000 OSKext::getDependencies() | |
| [ 3190] 3190 X Code 0xffffff800083dd50 0x00000000000001e0 0x000f0000 OSKext::isInExcludeList() | |
| [ 3191] 3191 X Code 0xffffff8000850830 0x0000000000000790 0x000f0000 OSKext::requestResource(char const*, char const*, void (*)(unsigned int, int, void const*, unsigned int, void*), void*, unsigned int*) | |
| [ 3192] 3192 X Code 0xffffff800084e240 0x00000000000000d0 0x000f0000 OSKext::savePanicString(bool) | |
| [ 3193] 3193 X Code 0xffffff80008426c0 0x00000000000002f0 0x000f0000 OSKext::setVMAttributes(bool, bool) | |
| [ 3194] 3194 X Code 0xffffff8000846e30 0x0000000000000480 0x000f0000 OSKext::dispatchResource(OSDictionary*) | |
| [ 3195] 3195 X Code 0xffffff800084b9b0 0x0000000000000080 0x000f0000 OSKext::getUnloadEnabled() | |
| [ 3196] 3196 X Code 0xffffff8000846890 0x0000000000000010 0x000f0000 OSKext::isCPPInitialized() | |
| [ 3197] 3197 X Code 0xffffff800084be00 0x00000000000000c0 0x000f0000 OSKext::readMkextArchive(OSData*, unsigned int*) | |
| [ 3198] 3198 X Code 0xffffff800084ce20 0x00000000000001a0 0x000f0000 OSKext::serializeLogInfo(OSArray*, char**, unsigned int*) | |
| [ 3199] 3199 X Code 0xffffff800084b6e0 0x00000000000000d0 0x000f0000 OSKext::setUnloadEnabled(bool) | |
| [ 3200] 3200 X Code 0xffffff800083f4f0 0x0000000000000090 0x000f0000 OSKext::flushDependencies(bool) | |
| [ 3201] 3201 X Code 0xffffff8000846710 0x0000000000000010 0x000f0000 OSKext::isKernelComponent() | |
| [ 3202] 3202 X Code 0xffffff800084bec0 0x00000000000003b0 0x000f0000 OSKext::readMkext2Archive(OSData*, OSDictionary**, unsigned int*) | |
| [ 3203] 3203 X Code 0xffffff8000845fb0 0x0000000000000020 0x000f0000 OSKext::setCPPInitialized(bool) | |
| [ 3204] 3204 X Code 0xffffff800084d550 0x0000000000000050 0x000f0000 OSKext::summaryForAddress(unsigned long) | |
| [ 3205] 3205 X Code 0xffffff800084fce0 0x0000000000000390 0x000f0000 OSKext::copyLoadedKextInfo(OSArray*, OSArray*) | |
| [ 3206] 3206 X Code 0xffffff80008466d0 0x0000000000000020 0x000f0000 OSKext::declaresExecutable() | |
| [ 3207] 3207 X Code 0xffffff800083f580 0x0000000000000020 0x000f0000 OSKext::getNumDependencies() | |
| [ 3208] 3208 X Code 0xffffff800083c8f0 0x0000000000000330 0x000f0000 OSKext::initWithBooterData(OSString*, OSData*) | |
| [ 3209] 3209 X Code 0xffffff800083d130 0x00000000000001f0 0x000f0000 OSKext::initWithMkext2Info(OSDictionary*, OSData*) | |
| [ 3210] 3210 X Code 0xffffff800084d5a0 0x0000000000000270 0x000f0000 OSKext::lookupKextWithUUID(unsigned char*) | |
| [ 3211] 3211 X Code 0xffffff800083d910 0x0000000000000440 0x000f0000 OSKext::registerIdentifier() | |
| [ 3212] 3212 X Code 0xffffff8000841f00 0x0000000000000070 0x000f0000 OSKext::registerWithDTrace() | |
| [ 3213] 3213 X Code 0xffffff800084bbc0 0x00000000000001b0 0x000f0000 OSKext::setAllVMAttributes() | |
| [ 3214] 3214 X Code 0xffffff800084abb0 0x0000000000000430 0x000f0000 OSKext::flushNonloadedKexts(bool) | |
| [ 3215] 3215 X Code 0xffffff80008519c0 0x0000000000000110 0x000f0000 OSKext::printKextPanicLists(int (*)(char const*, ...)) | |
| [ 3216] 3216 X Code 0xffffff800084a870 0x0000000000000340 0x000f0000 OSKext::removeKextBootstrap() | |
| [ 3217] 3217 X Code 0xffffff800083e440 0x0000000000000fc0 0x000f0000 OSKext::resolveDependencies(OSArray*) | |
| [ 3218] 3218 X Code 0xffffff8000841eb0 0x0000000000000050 0x000f0000 OSKext::setLinkedExecutable(OSData*) | |
| [ 3219] 3219 X Code 0xffffff80008486e0 0x0000000000000150 0x000f0000 OSKext::updateActiveAccount(OSKextActiveAccount*) | |
| [ 3220] 3220 X Code 0xffffff8000842a30 0x00000000000004c0 0x000f0000 OSKext::validateKextMapping(bool) | |
| [ 3221] 3221 X Code 0xffffff800084ba30 0x0000000000000080 0x000f0000 OSKext::getAutounloadEnabled() | |
| [ 3222] 3222 X Code 0xffffff8000846090 0x0000000000000010 0x000f0000 OSKext::getCompatibleVersion() | |
| [ 3223] 3223 X Code 0xffffff8000846060 0x0000000000000020 0x000f0000 OSKext::getIdentifierCString() | |
| [ 3224] 3224 X Code 0xffffff8000846770 0x00000000000000f0 0x000f0000 OSKext::isLoadableInSafeBoot() | |
| [ 3225] 3225 X Code 0xffffff80008429b0 0x0000000000000080 0x000f0000 OSKext::segmentShouldBeWired(segment_command_64*) | |
| [ 3226] 3226 X Code 0xffffff8000845fd0 0x0000000000000080 0x000f0000 OSKext::setAutounloadEnabled(bool) | |
| [ 3227] 3227 X Code 0xffffff80008518e0 0x0000000000000050 0x000f0000 OSKext::summaryIsInBacktrace(_loaded_kext_summary*, unsigned long*, unsigned int) | |
| [ 3228] 3228 X Code 0xffffff8000841f70 0x0000000000000030 0x000f0000 OSKext::unregisterWithDTrace() | |
| [ 3229] 3229 X Code 0xffffff8000842ef0 0x00000000000000b0 0x000f0000 OSKext::verifySegmentMapping(segment_command_64*) | |
| [ 3230] 3230 X Code 0xffffff8000845e30 0x0000000000000180 0x000f0000 OSKext::countRequestCallbacks() | |
| [ 3231] 3231 X Code 0xffffff800083df30 0x00000000000000c0 0x000f0000 OSKext::createMkext2FileEntry(OSData*, OSNumber*, char const*) | |
| [ 3232] 3232 X Code 0xffffff800083dff0 0x0000000000000450 0x000f0000 OSKext::extractMkext2FileData(unsigned char*, char const*, unsigned int, unsigned int) | |
| [ 3233] 3233 X Code 0xffffff80008514c0 0x0000000000000030 0x000f0000 OSKext::getUserSpaceLogFilter() | |
| [ 3234] 3234 X Code 0xffffff8000846cf0 0x0000000000000140 0x000f0000 OSKext::invokeRequestCallback(OSDictionary*, int) | |
| [ 3235] 3235 X Code 0xffffff8000847460 0x0000000000000150 0x000f0000 OSKext::lookupKextWithAddress(unsigned long) | |
| [ 3236] 3236 X Code 0xffffff800084d2b0 0x0000000000000120 0x000f0000 OSKext::lookupKextWithLoadTag(unsigned int) | |
| [ 3237] 3237 X Code 0xffffff80008514f0 0x00000000000001c0 0x000f0000 OSKext::printKextsInBacktrace(unsigned long*, unsigned int, int (*)(char const*, ...), bool, bool) | |
| [ 3238] 3238 X Code 0xffffff8000840590 0x0000000000000130 0x000f0000 OSKext::queueKextNotification(char const*, OSString*) | |
| [ 3239] 3239 X Code 0xffffff800084d9c0 0x0000000000000120 0x000f0000 OSKext::removeKextWithLoadTag(unsigned int, bool) | |
| [ 3240] 3240 X Code 0xffffff800084b7b0 0x00000000000000d0 0x000f0000 OSKext::setAutounloadsEnabled(bool) | |
| [ 3241] 3241 X Code 0xffffff800084c850 0x0000000000000110 0x000f0000 OSKext::setUserSpaceLogFilter(unsigned int, bool) | |
| [ 3242] 3242 X Code 0xffffff800084bb30 0x0000000000000090 0x000f0000 OSKext::withPrelinkedInfoDict(OSDictionary*, bool) | |
| [ 3243] 3243 X Code 0xffffff800084d3d0 0x0000000000000180 0x000f0000 OSKext::copyKextUUIDForAddress(OSNumber*) | |
| [ 3244] 3244 X Code 0xffffff8000846400 0x0000000000000230 0x000f0000 OSKext::copyPersonalitiesArray() | |
| [ 3245] 3245 X Code 0xffffff80008460f0 0x00000000000001d0 0x000f0000 OSKext::getPropertyForHostArch(char const*) | |
| [ 3246] 3246 X Code 0xffffff800084c960 0x00000000000003f0 0x000f0000 OSKext::loadKextWithIdentifier(OSString*, bool, bool, unsigned char, unsigned char, OSArray*) | |
| [ 3247] 3247 X Code 0xffffff800084e1d0 0x0000000000000070 0x000f0000 OSKext::loadKextWithIdentifier(char const*, bool, bool, unsigned char, unsigned char, OSArray*) | |
| [ 3248] 3248 X Code 0xffffff800084cd50 0x00000000000000d0 0x000f0000 OSKext::clearUserSpaceLogFilter() | |
| [ 3249] 3249 X Code 0xffffff8000845b30 0x0000000000000060 0x000f0000 OSKext::hasOSMetaClassInstances() | |
| [ 3250] 3250 X Code 0xffffff80008460c0 0x0000000000000030 0x000f0000 OSKext::isCompatibleWithVersion(long long) | |
| [ 3251] 3251 X Code 0xffffff8000841af0 0x0000000000000140 0x000f0000 OSKext::jettisonLinkeditSegment() | |
| [ 3252] 3252 X Code 0xffffff800084cfc0 0x0000000000000150 0x000f0000 OSKext::recordIdentifierRequest(OSString*) | |
| [ 3253] 3253 X Code 0xffffff800084e310 0x0000000000000120 0x000f0000 OSKext::registerKextsWithDTrace() | |
| [ 3254] 3254 X Code 0xffffff8000847f90 0x00000000000000f0 0x000f0000 OSKext::saveLoadedKextPanicList() | |
| [ 3255] 3255 X Code 0xffffff80008485e0 0x0000000000000100 0x000f0000 OSKext::updateLoadedKextSummary(_loaded_kext_summary*) | |
| [ 3256] 3256 X Code 0xffffff80008511a0 0x0000000000000250 0x000f0000 OSKext::copyAllKextPersonalities(bool) | |
| [ 3257] 3257 X Code 0xffffff8000850070 0x0000000000000500 0x000f0000 OSKext::copyLoadedKextInfoByUUID(OSArray*, OSArray*) | |
| [ 3258] 3258 X Code 0xffffff800084bab0 0x0000000000000080 0x000f0000 OSKext::getKernelRequestsEnabled() | |
| [ 3259] 3259 X Code 0xffffff800084d1e0 0x00000000000000d0 0x000f0000 OSKext::lookupKextWithIdentifier(OSString*) | |
| [ 3260] 3260 X Code 0xffffff800084d110 0x00000000000000d0 0x000f0000 OSKext::lookupKextWithIdentifier(char const*) | |
| [ 3261] 3261 X Code 0xffffff800084d8d0 0x00000000000000f0 0x000f0000 OSKext::removeKextWithIdentifier(char const*, bool) | |
| [ 3262] 3262 X Code 0xffffff800084b290 0x0000000000000080 0x000f0000 OSKext::setDeferredLoadSucceeded(bool) | |
| [ 3263] 3263 X Code 0xffffff800083d320 0x00000000000004e0 0x000f0000 OSKext::setInfoDictionaryAndPath(OSDictionary*, OSString*) | |
| [ 3264] 3264 X Code 0xffffff800084b880 0x00000000000000b0 0x000f0000 OSKext::setKernelRequestsEnabled(bool) | |
| [ 3265] 3265 X Code 0xffffff80008406c0 0x00000000000005c0 0x000f0000 OSKext::slidePrelinkedExecutable(bool) | |
| [ 3266] 3266 X Code 0xffffff800083cc20 0x0000000000000510 0x000f0000 OSKext::initWithPrelinkedInfoDict(OSDictionary*, bool) | |
| [ 3267] 3267 X Code 0xffffff8000848080 0x0000000000000560 0x000f0000 OSKext::updateLoadedKextSummaries() | |
| [ 3268] 3268 X Code 0xffffff800084d810 0x00000000000000c0 0x000f0000 OSKext::isKextWithIdentifierLoaded(char const*) | |
| [ 3269] 3269 X Code 0xffffff8000841c30 0x00000000000000e0 0x000f0000 OSKext::jettisonDATASegmentPadding() | |
| [ 3270] 3270 X Code 0xffffff800084eef0 0x0000000000000110 0x000f0000 OSKext::reportOSMetaClassInstances(char const*, unsigned int) | |
| [ 3271] 3271 X Code 0xffffff8000845ba0 0x00000000000000e0 0x000f0000 OSKext::reportOSMetaClassInstances(unsigned int) | |
| [ 3272] 3272 X Code 0xffffff8000842fa0 0x00000000000002f0 0x000f0000 OSKext::sendPersonalitiesToCatalog(bool, OSArray*) | |
| [ 3273] 3273 X Code 0xffffff800083f400 0x00000000000000f0 0x000f0000 OSKext::addBleedthroughDependencies(OSArray*) | |
| [ 3274] 3274 X Code 0xffffff800084e430 0x0000000000000110 0x000f0000 OSKext::canUnloadKextWithIdentifier(OSString*, bool) | |
| [ 3275] 3275 X Code 0xffffff80008494e0 0x0000000000000890 0x000f0000 OSKext::uniquePersonalityProperties(OSDictionary*) | |
| [ 3276] 3276 X Code 0xffffff80008472b0 0x00000000000001b0 0x000f0000 OSKext::dequeueCallbackForRequestTag(OSNumber*, OSDictionary**) | |
| [ 3277] 3277 X Code 0xffffff8000850fc0 0x0000000000000050 0x000f0000 OSKext::dequeueCallbackForRequestTag(unsigned int, OSDictionary**) | |
| [ 3278] 3278 X Code 0xffffff8000848830 0x00000000000002e0 0x000f0000 OSKext::saveLoadedKextPanicListTyped(char const*, int, int, char*, unsigned int) | |
| [ 3279] 3279 X Code 0xffffff800084afe0 0x0000000000000100 0x000f0000 OSKext::considerDestroyingLinkContext() | |
| [ 3280] 3280 X Code 0xffffff8000845c80 0x00000000000001b0 0x000f0000 OSKext::invokeOrCancelRequestCallbacks(int, bool) | |
| [ 3281] 3281 X Code 0xffffff8000846630 0x00000000000000a0 0x000f0000 OSKext::removePersonalitiesFromCatalog() | |
| [ 3282] 3282 X Code 0xffffff800084db90 0x0000000000000410 0x000f0000 OSKext::createExcludeListFromBooterData(OSDictionary*, OSCollectionIterator*) | |
| [ 3283] 3283 X Code 0xffffff800084e890 0x0000000000000380 0x000f0000 OSKext::considerRebuildOfPrelinkedKernel() | |
| [ 3284] 3284 X Code 0xffffff800084dfa0 0x0000000000000230 0x000f0000 OSKext::createExcludeListFromPrelinkInfo(OSArray*) | |
| [ 3285] 3285 X Code 0xffffff80008513f0 0x00000000000000d0 0x000f0000 OSKext::sendAllKextPersonalitiesToCatalog(bool) | |
| [ 3286] 3286 X Code 0xffffff800083c7a0 0x0000000000000150 0x000f0000 OSKext::free() | |
| [ 3287] 3287 X Code 0xffffff800083f5b0 0x00000000000007c0 0x000f0000 OSKext::load(unsigned char, unsigned char, OSArray*) | |
| [ 3288] 3288 X Code 0xffffff80008424c0 0x0000000000000200 0x000f0000 OSKext::stop() | |
| [ 3289] 3289 X Code 0xffffff8000841fa0 0x0000000000000520 0x000f0000 OSKext::start(bool) | |
| [ 3290] 3290 X Code 0xffffff800083fd70 0x0000000000000820 0x000f0000 OSKext::unload() | |
| [ 3291] 3291 X Code 0xffffff8000845870 0x00000000000001c0 0x000f0000 OSKext::addClass(OSMetaClass*, unsigned int) | |
| [ 3292] 3292 X Code 0xffffff8000843290 0x00000000000025e0 0x000f0000 OSKext::copyInfo(OSArray*) | |
| [ 3293] 3293 X Code 0xffffff8000846330 0x00000000000000d0 0x000f0000 OSKext::copyUUID() | |
| [ 3294] 3294 X Code 0xffffff8000846700 0x0000000000000010 0x000f0000 OSKext::isKernel() | |
| [ 3295] 3295 X Code 0xffffff8000846870 0x0000000000000010 0x000f0000 OSKext::isLoaded() | |
| [ 3296] 3296 X Code 0xffffff800084a200 0x0000000000000040 0x000f0000 OSKext::MetaClass::MetaClass() | |
| [ 3297] 3297 X Code 0xffffff800084a290 0x0000000000000040 0x000f0000 OSKext::MetaClass::MetaClass() | |
| [ 3298] 3298 X Code 0xffffff800084dae0 0x00000000000000b0 0x000f0000 OSKext::copyKexts() | |
| [ 3299] 3299 X Code 0xffffff80008460a0 0x0000000000000020 0x000f0000 OSKext::isLibrary() | |
| [ 3300] 3300 X Code 0xffffff8000846880 0x0000000000000010 0x000f0000 OSKext::isStarted() | |
| [ 3301] 3301 X Invalid 0xffffff8000b19e20 0x0000000000000008 0x000f0000 OSKext::metaClass | |
| [ 3302] 3302 X Code 0xffffff80008477f0 0x00000000000000e0 0x000f0000 OSKext::pingKextd() | |
| [ 3303] 3303 X Code 0xffffff800084a260 0x0000000000000020 0x000f0000 OSKext::OSKext(OSMetaClass const*) | |
| [ 3304] 3304 X Code 0xffffff800084a2d0 0x0000000000000040 0x000f0000 OSKext::OSKext() | |
| [ 3305] 3305 X Code 0xffffff800084a240 0x0000000000000020 0x000f0000 OSKext::OSKext(OSMetaClass const*) | |
| [ 3306] 3306 X Code 0xffffff800084a310 0x0000000000000040 0x000f0000 OSKext::OSKext() | |
| [ 3307] 3307 X Code 0xffffff800083c750 0x0000000000000040 0x000f0000 OSKext::~OSKext() | |
| [ 3308] 3308 X Code 0xffffff800083c740 0x0000000000000010 0x000f0000 OSKext::~OSKext() | |
| [ 3309] 3309 X Code 0xffffff800084a280 0x0000000000000010 0x000f0000 OSKext::~OSKext() | |
| [ 3310] 3310 X Data 0xffffff8000ac2520 0x0000000000000028 0x000f0000 OSArray::gMetaClass | |
| [ 3311] 3311 X Code 0xffffff8000836260 0x00000000000000b0 0x000f0000 OSArray::setOptions(unsigned int, unsigned int, void*) | |
| [ 3312] 3312 X Invalid 0xffffff8000b18a60 0x0000000000000008 0x000f0000 OSArray::superClass | |
| [ 3313] 3313 X Code 0xffffff8000837340 0x0000000000000090 0x000f0000 OSArray::withObjects(OSObject const**, unsigned int, unsigned int) | |
| [ 3314] 3314 X Code 0xffffff8000836960 0x0000000000000160 0x000f0000 OSArray::removeObject(unsigned int) | |
| [ 3315] 3315 X Code 0xffffff80008372c0 0x0000000000000080 0x000f0000 OSArray::withCapacity(unsigned int) | |
| [ 3316] 3316 X Code 0xffffff80008365f0 0x0000000000000030 0x000f0000 OSArray::initWithArray(OSArray const*, unsigned int) | |
| [ 3317] 3317 X Code 0xffffff80008368c0 0x00000000000000a0 0x000f0000 OSArray::replaceObject(unsigned int, OSMetaClassBase const*) | |
| [ 3318] 3318 X Code 0xffffff8000836310 0x00000000000001b0 0x000f0000 OSArray::copyCollection(OSDictionary*) | |
| [ 3319] 3319 X Code 0xffffff8000836110 0x00000000000000d0 0x000f0000 OSArray::ensureCapacity(unsigned int) | |
| [ 3320] 3320 X Code 0xffffff80008361e0 0x0000000000000080 0x000f0000 OSArray::flushCollection() | |
| [ 3321] 3321 X Code 0xffffff8000836550 0x00000000000000a0 0x000f0000 OSArray::initWithObjects(OSObject const**, unsigned int, unsigned int) | |
| [ 3322] 3322 X Code 0xffffff80008364c0 0x0000000000000090 0x000f0000 OSArray::initWithCapacity(unsigned int) | |
| [ 3323] 3323 X Code 0xffffff8000836bc0 0x0000000000000030 0x000f0000 OSArray::_RESERVEDOSArray0() | |
| [ 3324] 3324 X Code 0xffffff8000836bf0 0x0000000000000030 0x000f0000 OSArray::_RESERVEDOSArray1() | |
| [ 3325] 3325 X Code 0xffffff8000836c20 0x0000000000000030 0x000f0000 OSArray::_RESERVEDOSArray2() | |
| [ 3326] 3326 X Code 0xffffff8000836c50 0x0000000000000030 0x000f0000 OSArray::_RESERVEDOSArray3() | |
| [ 3327] 3327 X Code 0xffffff8000836c80 0x0000000000000030 0x000f0000 OSArray::_RESERVEDOSArray4() | |
| [ 3328] 3328 X Code 0xffffff8000836cb0 0x0000000000000030 0x000f0000 OSArray::_RESERVEDOSArray5() | |
| [ 3329] 3329 X Code 0xffffff8000836ce0 0x0000000000000030 0x000f0000 OSArray::_RESERVEDOSArray6() | |
| [ 3330] 3330 X Code 0xffffff8000836d10 0x0000000000000030 0x000f0000 OSArray::_RESERVEDOSArray7() | |
| [ 3331] 3331 X Code 0xffffff80008360f0 0x0000000000000020 0x000f0000 OSArray::setCapacityIncrement(unsigned int) | |
| [ 3332] 3332 X Code 0xffffff8000836010 0x0000000000000060 0x000f0000 OSArray::free() | |
| [ 3333] 3333 X Code 0xffffff80008367d0 0x00000000000000f0 0x000f0000 OSArray::merge(OSArray const*) | |
| [ 3334] 3334 X Code 0xffffff8000837170 0x0000000000000040 0x000f0000 OSArray::MetaClass::MetaClass() | |
| [ 3335] 3335 X Code 0xffffff8000837200 0x0000000000000040 0x000f0000 OSArray::MetaClass::MetaClass() | |
| [ 3336] 3336 X Invalid 0xffffff8000b18a58 0x0000000000000008 0x000f0000 OSArray::metaClass | |
| [ 3337] 3337 X Code 0xffffff8000836620 0x0000000000000020 0x000f0000 OSArray::setObject(OSMetaClassBase const*) | |
| [ 3338] 3338 X Code 0xffffff8000836640 0x0000000000000190 0x000f0000 OSArray::setObject(unsigned int, OSMetaClassBase const*) | |
| [ 3339] 3339 X Code 0xffffff80008373d0 0x0000000000000090 0x000f0000 OSArray::withArray(OSArray const*, unsigned int) | |
| [ 3340] 3340 X Code 0xffffff80008371d0 0x0000000000000020 0x000f0000 OSArray::OSArray(OSMetaClass const*) | |
| [ 3341] 3341 X Code 0xffffff8000837240 0x0000000000000040 0x000f0000 OSArray::OSArray() | |
| [ 3342] 3342 X Code 0xffffff80008371b0 0x0000000000000020 0x000f0000 OSArray::OSArray(OSMetaClass const*) | |
| [ 3343] 3343 X Code 0xffffff8000837280 0x0000000000000040 0x000f0000 OSArray::OSArray() | |
| [ 3344] 3344 X Code 0xffffff8000835ec0 0x0000000000000040 0x000f0000 OSArray::~OSArray() | |
| [ 3345] 3345 X Code 0xffffff8000835eb0 0x0000000000000010 0x000f0000 OSArray::~OSArray() | |
| [ 3346] 3346 X Code 0xffffff80008371f0 0x0000000000000010 0x000f0000 OSArray::~OSArray() | |
| [ 3347] 3347 X Data 0xffffff8000ac3168 0x0000000000000028 0x000f0000 IOMapper::gMetaClass | |
| [ 3348] 3348 X Invalid 0xffffff8000b237f8 0x0000000000000008 0x000f0000 IOMapper::superClass | |
| [ 3349] 3349 X Code 0xffffff80008c6e80 0x0000000000000070 0x000f0000 IOMapper::setMapperRequired(bool) | |
| [ 3350] 3350 X Code 0xffffff80008c6680 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper0() | |
| [ 3351] 3351 X Code 0xffffff80008c66b0 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper1() | |
| [ 3352] 3352 X Code 0xffffff80008c66e0 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper2() | |
| [ 3353] 3353 X Code 0xffffff80008c6710 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper3() | |
| [ 3354] 3354 X Code 0xffffff80008c6740 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper4() | |
| [ 3355] 3355 X Code 0xffffff80008c6770 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper5() | |
| [ 3356] 3356 X Code 0xffffff80008c67a0 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper6() | |
| [ 3357] 3357 X Code 0xffffff80008c67d0 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper7() | |
| [ 3358] 3358 X Code 0xffffff80008c6800 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper8() | |
| [ 3359] 3359 X Code 0xffffff80008c6830 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper9() | |
| [ 3360] 3360 X Code 0xffffff80008c6860 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper10() | |
| [ 3361] 3361 X Code 0xffffff80008c6890 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper11() | |
| [ 3362] 3362 X Code 0xffffff80008c68c0 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper12() | |
| [ 3363] 3363 X Code 0xffffff80008c68f0 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper13() | |
| [ 3364] 3364 X Code 0xffffff80008c6920 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper14() | |
| [ 3365] 3365 X Code 0xffffff80008c6950 0x0000000000000030 0x000f0000 IOMapper::_RESERVEDIOMapper15() | |
| [ 3366] 3366 X Code 0xffffff80008c6f60 0x0000000000000010 0x000f0000 IOMapper::copyMapperForDevice(IOService*) | |
| [ 3367] 3367 X Code 0xffffff80008c6ef0 0x0000000000000070 0x000f0000 IOMapper::waitForSystemMapper() | |
| [ 3368] 3368 X Code 0xffffff80008c6f70 0x0000000000000180 0x000f0000 IOMapper::copyMapperForDeviceWithIndex(IOService*, unsigned int) | |
| [ 3369] 3369 X Code 0xffffff80008c6580 0x0000000000000010 0x000f0000 IOMapper::free() | |
| [ 3370] 3370 X Code 0xffffff80008c6590 0x00000000000000f0 0x000f0000 IOMapper::start(IOService*) | |
| [ 3371] 3371 X Data 0xffffff8000a5d628 0x0000000000000018 0x000f0000 IOMapper::gSystem | |
| [ 3372] 3372 X Code 0xffffff80008c6dd0 0x0000000000000040 0x000f0000 IOMapper::MetaClass::MetaClass() | |
| [ 3373] 3373 X Code 0xffffff80008c6e40 0x0000000000000040 0x000f0000 IOMapper::MetaClass::MetaClass() | |
| [ 3374] 3374 X Invalid 0xffffff8000b237f0 0x0000000000000008 0x000f0000 IOMapper::metaClass | |
| [ 3375] 3375 X Code 0xffffff80008c6e10 0x0000000000000020 0x000f0000 IOMapper::IOMapper(OSMetaClass const*) | |
| [ 3376] 3376 X Code 0xffffff80008c6530 0x0000000000000040 0x000f0000 IOMapper::~IOMapper() | |
| [ 3377] 3377 X Code 0xffffff80008c6520 0x0000000000000010 0x000f0000 IOMapper::~IOMapper() | |
| [ 3378] 3378 X Code 0xffffff80008c6e30 0x0000000000000010 0x000f0000 IOMapper::~IOMapper() | |
| [ 3379] 3379 X Data 0xffffff8000ac3910 0x0000000000000030 0x000f0000 IOSyncer::gMetaClass | |
| [ 3380] 3380 X Invalid 0xffffff8000b32770 0x0000000000000008 0x000f0000 IOSyncer::superClass | |
| [ 3381] 3381 X Code 0xffffff80009014a0 0x00000000000000b0 0x000f0000 IOSyncer::privateSignal() | |
| [ 3382] 3382 X Code 0xffffff8000901450 0x0000000000000050 0x000f0000 IOSyncer::free() | |
| [ 3383] 3383 X Code 0xffffff8000901550 0x00000000000000a0 0x000f0000 IOSyncer::init(bool) | |
| [ 3384] 3384 X Code 0xffffff8000901680 0x0000000000000130 0x000f0000 IOSyncer::wait(bool) | |
| [ 3385] 3385 X Code 0xffffff8000901d60 0x0000000000000080 0x000f0000 IOSyncer::create(bool) | |
| [ 3386] 3386 X Code 0xffffff80009015f0 0x0000000000000090 0x000f0000 IOSyncer::reinit() | |
| [ 3387] 3387 X Code 0xffffff80009017b0 0x0000000000000030 0x000f0000 IOSyncer::signal(int, bool) | |
| [ 3388] 3388 X Code 0xffffff8000901c10 0x0000000000000040 0x000f0000 IOSyncer::MetaClass::MetaClass() | |
| [ 3389] 3389 X Code 0xffffff8000901ca0 0x0000000000000040 0x000f0000 IOSyncer::MetaClass::MetaClass() | |
| [ 3390] 3390 X Invalid 0xffffff8000b32768 0x0000000000000008 0x000f0000 IOSyncer::metaClass | |
| [ 3391] 3391 X Code 0xffffff8000901c70 0x0000000000000020 0x000f0000 IOSyncer::IOSyncer(OSMetaClass const*) | |
| [ 3392] 3392 X Code 0xffffff8000901ce0 0x0000000000000040 0x000f0000 IOSyncer::IOSyncer() | |
| [ 3393] 3393 X Code 0xffffff8000901c50 0x0000000000000020 0x000f0000 IOSyncer::IOSyncer(OSMetaClass const*) | |
| [ 3394] 3394 X Code 0xffffff8000901d20 0x0000000000000040 0x000f0000 IOSyncer::IOSyncer() | |
| [ 3395] 3395 X Code 0xffffff8000901400 0x0000000000000040 0x000f0000 IOSyncer::~IOSyncer() | |
| [ 3396] 3396 X Code 0xffffff80009013f0 0x0000000000000010 0x000f0000 IOSyncer::~IOSyncer() | |
| [ 3397] 3397 X Code 0xffffff8000901c90 0x0000000000000010 0x000f0000 IOSyncer::~IOSyncer() | |
| [ 3398] 3398 X Data 0xffffff8000ac2688 0x0000000000000028 0x000f0000 OSNumber::gMetaClass | |
| [ 3399] 3399 X Invalid 0xffffff8000b1a288 0x0000000000000008 0x000f0000 OSNumber::superClass | |
| [ 3400] 3400 X Code 0xffffff8000852830 0x0000000000000090 0x000f0000 OSNumber::withNumber(char const*, unsigned int) | |
| [ 3401] 3401 X Code 0xffffff80008527a0 0x0000000000000090 0x000f0000 OSNumber::withNumber(unsigned long long, unsigned int) | |
| [ 3402] 3402 X Code 0xffffff80008520a0 0x0000000000000030 0x000f0000 OSNumber::_RESERVEDOSNumber0() | |
| [ 3403] 3403 X Code 0xffffff80008520d0 0x0000000000000030 0x000f0000 OSNumber::_RESERVEDOSNumber1() | |
| [ 3404] 3404 X Code 0xffffff8000852100 0x0000000000000030 0x000f0000 OSNumber::_RESERVEDOSNumber2() | |
| [ 3405] 3405 X Code 0xffffff8000852130 0x0000000000000030 0x000f0000 OSNumber::_RESERVEDOSNumber3() | |
| [ 3406] 3406 X Code 0xffffff8000852160 0x0000000000000030 0x000f0000 OSNumber::_RESERVEDOSNumber4() | |
| [ 3407] 3407 X Code 0xffffff8000852190 0x0000000000000030 0x000f0000 OSNumber::_RESERVEDOSNumber5() | |
| [ 3408] 3408 X Code 0xffffff80008521c0 0x0000000000000030 0x000f0000 OSNumber::_RESERVEDOSNumber6() | |
| [ 3409] 3409 X Code 0xffffff80008521f0 0x0000000000000030 0x000f0000 OSNumber::_RESERVEDOSNumber7() | |
| [ 3410] 3410 X Code 0xffffff8000851f20 0x0000000000000030 0x000f0000 OSNumber::free() | |
| [ 3411] 3411 X Code 0xffffff8000851f80 0x0000000000000050 0x000f0000 OSNumber::init(char const*, unsigned int) | |
| [ 3412] 3412 X Code 0xffffff8000851f50 0x0000000000000030 0x000f0000 OSNumber::init(unsigned long long, unsigned int) | |
| [ 3413] 3413 X Code 0xffffff8000852030 0x0000000000000030 0x000f0000 OSNumber::addValue(long long) | |
| [ 3414] 3414 X Code 0xffffff8000852060 0x0000000000000020 0x000f0000 OSNumber::setValue(unsigned long long) | |
| [ 3415] 3415 X Code 0xffffff8000852650 0x0000000000000040 0x000f0000 OSNumber::MetaClass::MetaClass() | |
| [ 3416] 3416 X Code 0xffffff80008526e0 0x0000000000000040 0x000f0000 OSNumber::MetaClass::MetaClass() | |
| [ 3417] 3417 X Invalid 0xffffff8000b1a280 0x0000000000000008 0x000f0000 OSNumber::metaClass | |
| [ 3418] 3418 X Code 0xffffff80008526b0 0x0000000000000020 0x000f0000 OSNumber::OSNumber(OSMetaClass const*) | |
| [ 3419] 3419 X Code 0xffffff8000852720 0x0000000000000040 0x000f0000 OSNumber::OSNumber() | |
| [ 3420] 3420 X Code 0xffffff8000852690 0x0000000000000020 0x000f0000 OSNumber::OSNumber(OSMetaClass const*) | |
| [ 3421] 3421 X Code 0xffffff8000852760 0x0000000000000040 0x000f0000 OSNumber::OSNumber() | |
| [ 3422] 3422 X Code 0xffffff8000851d60 0x0000000000000040 0x000f0000 OSNumber::~OSNumber() | |
| [ 3423] 3423 X Code 0xffffff8000851d50 0x0000000000000010 0x000f0000 OSNumber::~OSNumber() | |
| [ 3424] 3424 X Code 0xffffff80008526d0 0x0000000000000010 0x000f0000 OSNumber::~OSNumber() | |
| [ 3425] 3425 X Data 0xffffff8000ac24f8 0x0000000000000028 0x000f0000 OSObject::gMetaClass | |
| [ 3426] 3426 X Data 0xffffff8000950508 0x0000000000004648 0x000f0000 OSObject::superClass | |
| [ 3427] 3427 X Code 0xffffff8000835620 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject0() | |
| [ 3428] 3428 X Code 0xffffff8000835650 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject1() | |
| [ 3429] 3429 X Code 0xffffff8000835680 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject2() | |
| [ 3430] 3430 X Code 0xffffff80008356b0 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject3() | |
| [ 3431] 3431 X Code 0xffffff80008356e0 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject4() | |
| [ 3432] 3432 X Code 0xffffff8000835710 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject5() | |
| [ 3433] 3433 X Code 0xffffff8000835740 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject6() | |
| [ 3434] 3434 X Code 0xffffff8000835770 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject7() | |
| [ 3435] 3435 X Code 0xffffff80008357a0 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject8() | |
| [ 3436] 3436 X Code 0xffffff80008357d0 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject9() | |
| [ 3437] 3437 X Code 0xffffff8000835800 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject10() | |
| [ 3438] 3438 X Code 0xffffff8000835830 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject11() | |
| [ 3439] 3439 X Code 0xffffff8000835860 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject12() | |
| [ 3440] 3440 X Code 0xffffff8000835890 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject13() | |
| [ 3441] 3441 X Code 0xffffff80008358c0 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject14() | |
| [ 3442] 3442 X Code 0xffffff80008358f0 0x0000000000000030 0x000f0000 OSObject::_RESERVEDOSObject15() | |
| [ 3443] 3443 X Code 0xffffff80008355f0 0x0000000000000030 0x000f0000 OSObject::free() | |
| [ 3444] 3444 X Code 0xffffff80008355e0 0x0000000000000010 0x000f0000 OSObject::init() | |
| [ 3445] 3445 X Code 0xffffff8000835d00 0x0000000000000030 0x000f0000 OSObject::MetaClass::MetaClass() | |
| [ 3446] 3446 X Code 0xffffff8000835d70 0x0000000000000030 0x000f0000 OSObject::MetaClass::MetaClass() | |
| [ 3447] 3447 X Invalid 0xffffff8000b18838 0x0000000000000008 0x000f0000 OSObject::metaClass | |
| [ 3448] 3448 X Code 0xffffff8000835e90 0x0000000000000020 0x000f0000 OSObject::OSObject(OSMetaClass const*) | |
| [ 3449] 3449 X Code 0xffffff8000835e50 0x0000000000000020 0x000f0000 OSObject::OSObject() | |
| [ 3450] 3450 X Code 0xffffff8000835e70 0x0000000000000020 0x000f0000 OSObject::OSObject(OSMetaClass const*) | |
| [ 3451] 3451 X Code 0xffffff8000835e30 0x0000000000000020 0x000f0000 OSObject::OSObject() | |
| [ 3452] 3452 X Code 0xffffff8000835310 0x0000000000000040 0x000f0000 OSObject::~OSObject() | |
| [ 3453] 3453 X Code 0xffffff8000835300 0x0000000000000010 0x000f0000 OSObject::~OSObject() | |
| [ 3454] 3454 X Code 0xffffff8000835d30 0x0000000000000010 0x000f0000 OSObject::~OSObject() | |
| [ 3455] 3455 X Code 0xffffff8000835d40 0x0000000000000030 0x000f0000 OSObject::operator delete(void*, unsigned long) | |
| [ 3456] 3456 X Code 0xffffff8000835dc0 0x0000000000000070 0x000f0000 OSObject::operator new(unsigned long) | |
| [ 3457] 3457 X Data 0xffffff8000ac2750 0x0000000000000028 0x000f0000 OSString::gMetaClass | |
| [ 3458] 3458 X Invalid 0xffffff8000b1b0f0 0x0000000000000008 0x000f0000 OSString::superClass | |
| [ 3459] 3459 X Code 0xffffff8000857f20 0x0000000000000080 0x000f0000 OSString::withString(OSString const*) | |
| [ 3460] 3460 X Code 0xffffff8000857fa0 0x0000000000000080 0x000f0000 OSString::withCString(char const*) | |
| [ 3461] 3461 X Code 0xffffff8000857330 0x0000000000000020 0x000f0000 OSString::initWithString(OSString const*) | |
| [ 3462] 3462 X Code 0xffffff8000857350 0x00000000000000d0 0x000f0000 OSString::initWithCString(char const*) | |
| [ 3463] 3463 X Code 0xffffff8000858020 0x0000000000000080 0x000f0000 OSString::withCStringNoCopy(char const*) | |
| [ 3464] 3464 X Code 0xffffff80008575d0 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString0() | |
| [ 3465] 3465 X Code 0xffffff8000857600 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString1() | |
| [ 3466] 3466 X Code 0xffffff8000857630 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString2() | |
| [ 3467] 3467 X Code 0xffffff8000857660 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString3() | |
| [ 3468] 3468 X Code 0xffffff8000857690 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString4() | |
| [ 3469] 3469 X Code 0xffffff80008576c0 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString5() | |
| [ 3470] 3470 X Code 0xffffff80008576f0 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString6() | |
| [ 3471] 3471 X Code 0xffffff8000857720 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString7() | |
| [ 3472] 3472 X Code 0xffffff8000857750 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString8() | |
| [ 3473] 3473 X Code 0xffffff8000857780 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString9() | |
| [ 3474] 3474 X Code 0xffffff80008580a0 0x0000000000000090 0x000f0000 OSString::withStringOfLength(char const*, unsigned long) | |
| [ 3475] 3475 X Code 0xffffff80008577b0 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString10() | |
| [ 3476] 3476 X Code 0xffffff80008577e0 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString11() | |
| [ 3477] 3477 X Code 0xffffff8000857810 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString12() | |
| [ 3478] 3478 X Code 0xffffff8000857840 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString13() | |
| [ 3479] 3479 X Code 0xffffff8000857870 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString14() | |
| [ 3480] 3480 X Code 0xffffff80008578a0 0x0000000000000030 0x000f0000 OSString::_RESERVEDOSString15() | |
| [ 3481] 3481 X Code 0xffffff8000857420 0x0000000000000050 0x000f0000 OSString::initWithCStringNoCopy(char const*) | |
| [ 3482] 3482 X Code 0xffffff8000857e50 0x00000000000000d0 0x000f0000 OSString::initWithStringOfLength(char const*, unsigned long) | |
| [ 3483] 3483 X Code 0xffffff80008572d0 0x0000000000000060 0x000f0000 OSString::free() | |
| [ 3484] 3484 X Code 0xffffff80008574a0 0x0000000000000030 0x000f0000 OSString::setChar(char, unsigned int) | |
| [ 3485] 3485 X Code 0xffffff8000857d00 0x0000000000000040 0x000f0000 OSString::MetaClass::MetaClass() | |
| [ 3486] 3486 X Code 0xffffff8000857d90 0x0000000000000040 0x000f0000 OSString::MetaClass::MetaClass() | |
| [ 3487] 3487 X Invalid 0xffffff8000b1b0e8 0x0000000000000008 0x000f0000 OSString::metaClass | |
| [ 3488] 3488 X Code 0xffffff8000857d60 0x0000000000000020 0x000f0000 OSString::OSString(OSMetaClass const*) | |
| [ 3489] 3489 X Code 0xffffff8000857dd0 0x0000000000000040 0x000f0000 OSString::OSString() | |
| [ 3490] 3490 X Code 0xffffff8000857d40 0x0000000000000020 0x000f0000 OSString::OSString(OSMetaClass const*) | |
| [ 3491] 3491 X Code 0xffffff8000857e10 0x0000000000000040 0x000f0000 OSString::OSString() | |
| [ 3492] 3492 X Code 0xffffff80008570c0 0x0000000000000040 0x000f0000 OSString::~OSString() | |
| [ 3493] 3493 X Code 0xffffff80008570b0 0x0000000000000010 0x000f0000 OSString::~OSString() | |
| [ 3494] 3494 X Code 0xffffff8000857d80 0x0000000000000010 0x000f0000 OSString::~OSString() | |
| [ 3495] 3495 X Data 0xffffff8000ac2778 0x0000000000000028 0x000f0000 OSSymbol::gMetaClass | |
| [ 3496] 3496 X Code 0xffffff8000859010 0x00000000000000c0 0x000f0000 OSSymbol::initialize() | |
| [ 3497] 3497 X Invalid 0xffffff8000b1b408 0x0000000000000008 0x000f0000 OSSymbol::superClass | |
| [ 3498] 3498 X Code 0xffffff8000859810 0x0000000000000080 0x000f0000 OSSymbol::withString(OSString const*) | |
| [ 3499] 3499 X Code 0xffffff80008599c0 0x00000000000000e0 0x000f0000 OSSymbol::withCString(char const*) | |
| [ 3500] 3500 X Code 0xffffff80008583c0 0x0000000000000010 0x000f0000 OSSymbol::initWithString(OSString const*) | |
| [ 3501] 3501 X Code 0xffffff80008583d0 0x0000000000000010 0x000f0000 OSSymbol::initWithCString(char const*) | |
| [ 3502] 3502 X Code 0xffffff8000859890 0x0000000000000130 0x000f0000 OSSymbol::withCStringNoCopy(char const*) | |
| [ 3503] 3503 X Code 0xffffff8000858440 0x0000000000000030 0x000f0000 OSSymbol::_RESERVEDOSSymbol0() | |
| [ 3504] 3504 X Code 0xffffff8000858470 0x0000000000000030 0x000f0000 OSSymbol::_RESERVEDOSSymbol1() | |
| [ 3505] 3505 X Code 0xffffff80008584a0 0x0000000000000030 0x000f0000 OSSymbol::_RESERVEDOSSymbol2() | |
| [ 3506] 3506 X Code 0xffffff80008584d0 0x0000000000000030 0x000f0000 OSSymbol::_RESERVEDOSSymbol3() | |
| [ 3507] 3507 X Code 0xffffff8000858500 0x0000000000000030 0x000f0000 OSSymbol::_RESERVEDOSSymbol4() | |
| [ 3508] 3508 X Code 0xffffff8000858530 0x0000000000000030 0x000f0000 OSSymbol::_RESERVEDOSSymbol5() | |
| [ 3509] 3509 X Code 0xffffff8000858560 0x0000000000000030 0x000f0000 OSSymbol::_RESERVEDOSSymbol6() | |
| [ 3510] 3510 X Code 0xffffff8000858590 0x0000000000000030 0x000f0000 OSSymbol::_RESERVEDOSSymbol7() | |
| [ 3511] 3511 X Code 0xffffff8000859aa0 0x00000000000000d0 0x000f0000 OSSymbol::checkForPageUnload(void*, void*) | |
| [ 3512] 3512 X Code 0xffffff80008583e0 0x0000000000000010 0x000f0000 OSSymbol::initWithCStringNoCopy(char const*) | |
| [ 3513] 3513 X Code 0xffffff8000858390 0x0000000000000030 0x000f0000 OSSymbol::free() | |
| [ 3514] 3514 X Code 0xffffff8000859b70 0x0000000000000040 0x000f0000 OSSymbol::bsearch(void const*, void const*, unsigned int, unsigned long) | |
| [ 3515] 3515 X Code 0xffffff80008596c0 0x0000000000000040 0x000f0000 OSSymbol::MetaClass::MetaClass() | |
| [ 3516] 3516 X Code 0xffffff8000859750 0x0000000000000040 0x000f0000 OSSymbol::MetaClass::MetaClass() | |
| [ 3517] 3517 X Invalid 0xffffff8000b1b410 0x0000000000000008 0x000f0000 OSSymbol::metaClass | |
| [ 3518] 3518 X Code 0xffffff8000859720 0x0000000000000020 0x000f0000 OSSymbol::OSSymbol(OSMetaClass const*) | |
| [ 3519] 3519 X Code 0xffffff8000859790 0x0000000000000040 0x000f0000 OSSymbol::OSSymbol() | |
| [ 3520] 3520 X Code 0xffffff8000859700 0x0000000000000020 0x000f0000 OSSymbol::OSSymbol(OSMetaClass const*) | |
| [ 3521] 3521 X Code 0xffffff80008597d0 0x0000000000000040 0x000f0000 OSSymbol::OSSymbol() | |
| [ 3522] 3522 X Code 0xffffff8000858230 0x0000000000000040 0x000f0000 OSSymbol::~OSSymbol() | |
| [ 3523] 3523 X Code 0xffffff8000858220 0x0000000000000010 0x000f0000 OSSymbol::~OSSymbol() | |
| [ 3524] 3524 X Code 0xffffff8000859740 0x0000000000000010 0x000f0000 OSSymbol::~OSSymbol() | |
| [ 3525] 3525 X Data 0xffffff8000ac3028 0x0000000000000028 0x000f0000 IOCommand::gMetaClass | |
| [ 3526] 3526 X Invalid 0xffffff8000b21ea8 0x0000000000000008 0x000f0000 IOCommand::superClass | |
| [ 3527] 3527 X Code 0xffffff80008be370 0x0000000000000020 0x000f0000 IOCommand::init() | |
| [ 3528] 3528 X Code 0xffffff80008be7c0 0x0000000000000040 0x000f0000 IOCommand::MetaClass::MetaClass() | |
| [ 3529] 3529 X Code 0xffffff80008be850 0x0000000000000040 0x000f0000 IOCommand::MetaClass::MetaClass() | |
| [ 3530] 3530 X Invalid 0xffffff8000b21ea0 0x0000000000000008 0x000f0000 IOCommand::metaClass | |
| [ 3531] 3531 X Code 0xffffff80008be820 0x0000000000000020 0x000f0000 IOCommand::IOCommand(OSMetaClass const*) | |
| [ 3532] 3532 X Code 0xffffff80008be890 0x0000000000000040 0x000f0000 IOCommand::IOCommand() | |
| [ 3533] 3533 X Code 0xffffff80008be800 0x0000000000000020 0x000f0000 IOCommand::IOCommand(OSMetaClass const*) | |
| [ 3534] 3534 X Code 0xffffff80008be8d0 0x0000000000000040 0x000f0000 IOCommand::IOCommand() | |
| [ 3535] 3535 X Code 0xffffff80008be320 0x0000000000000040 0x000f0000 IOCommand::~IOCommand() | |
| [ 3536] 3536 X Code 0xffffff80008be310 0x0000000000000010 0x000f0000 IOCommand::~IOCommand() | |
| [ 3537] 3537 X Code 0xffffff80008be840 0x0000000000000010 0x000f0000 IOCommand::~IOCommand() | |
| [ 3538] 3538 X Data 0xffffff8000ac3490 0x0000000000000028 0x000f0000 IODTNVRAM::gMetaClass | |
| [ 3539] 3539 X Code 0xffffff80008ddc40 0x0000000000000060 0x000f0000 IODTNVRAM::safeToSync() | |
| [ 3540] 3540 X Invalid 0xffffff8000b2a5d8 0x0000000000000008 0x000f0000 IODTNVRAM::superClass | |
| [ 3541] 3541 X Code 0xffffff80008dd990 0x0000000000000010 0x000f0000 IODTNVRAM::writeXPRAM(unsigned long long, unsigned char*, unsigned long long) | |
| [ 3542] 3542 X Code 0xffffff80008db320 0x00000000000002c0 0x000f0000 IODTNVRAM::setProperty(OSSymbol const*, OSObject*) | |
| [ 3543] 3543 X Code 0xffffff80008de9b0 0x0000000000000050 0x000f0000 IODTNVRAM::syncInternal(bool) | |
| [ 3544] 3544 X Code 0xffffff80008de310 0x0000000000000120 0x000f0000 IODTNVRAM::initProxyData() | |
| [ 3545] 3545 X Code 0xffffff80008ddba0 0x00000000000000a0 0x000f0000 IODTNVRAM::savePanicInfo(unsigned char*, unsigned long long) | |
| [ 3546] 3546 X Code 0xffffff80008dbb20 0x00000000000002d0 0x000f0000 IODTNVRAM::setProperties(OSObject*) | |
| [ 3547] 3547 X Code 0xffffff80008ddca0 0x0000000000000670 0x000f0000 IODTNVRAM::initNVRAMImage() | |
| [ 3548] 3548 X Code 0xffffff80008db5e0 0x0000000000000140 0x000f0000 IODTNVRAM::removeProperty(OSSymbol const*) | |
| [ 3549] 3549 X Code 0xffffff80008dbf10 0x00000000000002e0 0x000f0000 IODTNVRAM::initOFVariables() | |
| [ 3550] 3550 X Code 0xffffff80008dc1f0 0x00000000000001f0 0x000f0000 IODTNVRAM::syncOFVariables() | |
| [ 3551] 3551 X Code 0xffffff80008dd0a0 0x0000000000000170 0x000f0000 IODTNVRAM::escapeDataToData(OSData*) | |
| [ 3552] 3552 X Code 0xffffff80008dcc70 0x0000000000000320 0x000f0000 IODTNVRAM::updateOWBootArgs(OSSymbol const*, OSObject*) | |
| [ 3553] 3553 X Code 0xffffff80008dc480 0x00000000000000a0 0x000f0000 IODTNVRAM::getOWVariableInfo(unsigned int, OSSymbol const**, unsigned int*, unsigned int*) | |
| [ 3554] 3554 X Code 0xffffff80008dd9a0 0x0000000000000020 0x000f0000 IODTNVRAM::readNVRAMProperty(IORegistryEntry*, OSSymbol const**, OSData**) | |
| [ 3555] 3555 X Code 0xffffff80008dcbc0 0x0000000000000050 0x000f0000 IODTNVRAM::generateOWChecksum(unsigned char*) | |
| [ 3556] 3556 X Code 0xffffff80008dd9e0 0x0000000000000010 0x000f0000 IODTNVRAM::getNVRAMPartitions() | |
| [ 3557] 3557 X Code 0xffffff80008dd9f0 0x00000000000000c0 0x000f0000 IODTNVRAM::readNVRAMPartition(OSSymbol const*, unsigned long long, unsigned char*, unsigned long long) | |
| [ 3558] 3558 X Code 0xffffff80008dcc10 0x0000000000000060 0x000f0000 IODTNVRAM::validateOWChecksum(unsigned char*) | |
| [ 3559] 3559 X Code 0xffffff80008dd9c0 0x0000000000000020 0x000f0000 IODTNVRAM::writeNVRAMProperty(IORegistryEntry*, OSSymbol const*, OSData*) | |
| [ 3560] 3560 X Code 0xffffff80008dc680 0x0000000000000540 0x000f0000 IODTNVRAM::convertObjectToProp(unsigned char*, unsigned int*, OSSymbol const*, OSObject*) | |
| [ 3561] 3561 X Code 0xffffff80008dc520 0x0000000000000160 0x000f0000 IODTNVRAM::convertPropToObject(unsigned char*, unsigned int, unsigned char*, unsigned int, OSSymbol const**, OSObject**) | |
| [ 3562] 3562 X Code 0xffffff80008dcf90 0x0000000000000010 0x000f0000 IODTNVRAM::searchNVRAMProperty(IONVRAMDescriptor*, unsigned int*) | |
| [ 3563] 3563 X Code 0xffffff80008dcfc0 0x00000000000000e0 0x000f0000 IODTNVRAM::unescapeBytesToData(unsigned char const*, unsigned int) | |
| [ 3564] 3564 X Code 0xffffff80008ddab0 0x00000000000000f0 0x000f0000 IODTNVRAM::writeNVRAMPartition(OSSymbol const*, unsigned long long, unsigned char*, unsigned long long) | |
| [ 3565] 3565 X Code 0xffffff80008dcfa0 0x0000000000000010 0x000f0000 IODTNVRAM::readNVRAMPropertyType0(IORegistryEntry*, OSSymbol const**, OSData**) | |
| [ 3566] 3566 X Code 0xffffff80008dd210 0x0000000000000210 0x000f0000 IODTNVRAM::readNVRAMPropertyType1(IORegistryEntry*, OSSymbol const**, OSData**) | |
| [ 3567] 3567 X Code 0xffffff80008dd8f0 0x0000000000000070 0x000f0000 IODTNVRAM::registerNVRAMController(IONVRAMController*) | |
| [ 3568] 3568 X Code 0xffffff80008dcfb0 0x0000000000000010 0x000f0000 IODTNVRAM::writeNVRAMPropertyType0(IORegistryEntry*, OSSymbol const*, OSData*) | |
| [ 3569] 3569 X Code 0xffffff80008dd420 0x00000000000004d0 0x000f0000 IODTNVRAM::writeNVRAMPropertyType1(IORegistryEntry*, OSSymbol const*, OSData*) | |
| [ 3570] 3570 X Code 0xffffff80008dbeb0 0x0000000000000060 0x000f0000 IODTNVRAM::calculatePartitionChecksum(unsigned char*) | |
| [ 3571] 3571 X Code 0xffffff80008dbdf0 0x00000000000000c0 0x000f0000 IODTNVRAM::init(IORegistryEntry*, IORegistryPlane const*) | |
| [ 3572] 3572 X Code 0xffffff80008dd960 0x0000000000000020 0x000f0000 IODTNVRAM::sync() | |
| [ 3573] 3573 X Code 0xffffff80008de860 0x0000000000000040 0x000f0000 IODTNVRAM::MetaClass::MetaClass() | |
| [ 3574] 3574 X Code 0xffffff80008de8f0 0x0000000000000040 0x000f0000 IODTNVRAM::MetaClass::MetaClass() | |
| [ 3575] 3575 X Invalid 0xffffff8000b2a5d0 0x0000000000000008 0x000f0000 IODTNVRAM::metaClass | |
| [ 3576] 3576 X Code 0xffffff80008dd980 0x0000000000000010 0x000f0000 IODTNVRAM::readXPRAM(unsigned long long, unsigned char*, unsigned long long) | |
| [ 3577] 3577 X Code 0xffffff80008de8c0 0x0000000000000020 0x000f0000 IODTNVRAM::IODTNVRAM(OSMetaClass const*) | |
| [ 3578] 3578 X Code 0xffffff80008de930 0x0000000000000040 0x000f0000 IODTNVRAM::IODTNVRAM() | |
| [ 3579] 3579 X Code 0xffffff80008de8a0 0x0000000000000020 0x000f0000 IODTNVRAM::IODTNVRAM(OSMetaClass const*) | |
| [ 3580] 3580 X Code 0xffffff80008de970 0x0000000000000040 0x000f0000 IODTNVRAM::IODTNVRAM() | |
| [ 3581] 3581 X Code 0xffffff80008db2d0 0x0000000000000040 0x000f0000 IODTNVRAM::~IODTNVRAM() | |
| [ 3582] 3582 X Code 0xffffff80008db2c0 0x0000000000000010 0x000f0000 IODTNVRAM::~IODTNVRAM() | |
| [ 3583] 3583 X Code 0xffffff80008de8e0 0x0000000000000010 0x000f0000 IODTNVRAM::~IODTNVRAM() | |
| [ 3584] 3584 X Code 0xffffff8000893e40 0x00000000000001b0 0x000f0000 IOService::actionStop(IOService*, IOService*, void*, void*, void*) | |
| [ 3585] 3585 X Code 0xffffff800088fc30 0x0000000000000040 0x000f0000 IOService::adjustBusy(int) | |
| [ 3586] 3586 X Data 0xffffff8000ac2a08 0x0000000000000028 0x000f0000 IOService::gMetaClass | |
| [ 3587] 3587 X Code 0xffffff800088f480 0x0000000000000070 0x000f0000 IOService::handleOpen(IOService*, unsigned int, void*) | |
| [ 3588] 3588 X Code 0xffffff800089c2f0 0x00000000000007a0 0x000f0000 IOService::initialize() | |
| [ 3589] 3589 X Code 0xffffff80008acbd0 0x0000000000000030 0x000f0000 IOService::joinPMtree(IOService*) | |
| [ 3590] 3590 X Code 0xffffff80008aea10 0x00000000000000e0 0x000f0000 IOService::makeUsable() | |
| [ 3591] 3591 X Invalid 0xffffff8000b1c4d0 0x0000000000000008 0x000f0000 IOService::superClass | |
| [ 3592] 3592 X Code 0xffffff80008921f0 0x0000000000000290 0x000f0000 IOService::_adjustBusy(int) | |
| [ 3593] 3593 X Code 0xffffff800089e130 0x0000000000000050 0x000f0000 IOService::addLocation(OSDictionary*) | |
| [ 3594] 3594 X Code 0xffffff800089d970 0x0000000000000010 0x000f0000 IOService::cpusRunning() | |
| [ 3595] 3595 X Code 0xffffff800089cea0 0x0000000000000010 0x000f0000 IOService::getPlatform() | |
| [ 3596] 3596 X Code 0xffffff800088f4f0 0x0000000000000020 0x000f0000 IOService::handleClose(IOService*, unsigned int) | |
| [ 3597] 3597 X Code 0xffffff80008a4a90 0x0000000000000140 0x000f0000 IOService::isPMBlocked(IOPMRequest*, int) | |
| [ 3598] 3598 X Code 0xffffff80008a69d0 0x00000000000001a0 0x000f0000 IOService::notifyChild(IOPowerConnection*) | |
| [ 3599] 3599 X Code 0xffffff800089ced0 0x0000000000000100 0x000f0000 IOService::setPlatform(IOPlatformExpert*) | |
| [ 3600] 3600 X Code 0xffffff80008b0010 0x0000000000000160 0x000f0000 IOService::tellClients(int) | |
| [ 3601] 3601 X Code 0xffffff80008aaf00 0x0000000000000110 0x000f0000 IOService::OurSyncStart() | |
| [ 3602] 3602 X Code 0xffffff80008a40a0 0x0000000000000640 0x000f0000 IOService::ackTimerTick() | |
| [ 3603] 3603 X Code 0xffffff80008aff80 0x0000000000000080 0x000f0000 IOService::checkForDone() | |
| [ 3604] 3604 X Code 0xffffff800088e270 0x0000000000000090 0x000f0000 IOService::didTerminate(IOService*, unsigned int, bool*) | |
| [ 3605] 3605 X Code 0xffffff800088fc20 0x0000000000000010 0x000f0000 IOService::getBusyState() | |
| [ 3606] 3606 X Code 0xffffff8000890770 0x0000000000000010 0x000f0000 IOService::getResources() | |
| [ 3607] 3607 X Code 0xffffff80008a9160 0x0000000000000350 0x000f0000 IOService::handlePMstop(IOPMRequest*) | |
| [ 3608] 3608 X Code 0xffffff8000894cf0 0x00000000000004f0 0x000f0000 IOService::matchPassive(OSDictionary*, unsigned int) | |
| [ 3609] 3609 X Code 0xffffff800089dec0 0x0000000000000050 0x000f0000 IOService::nameMatching(OSString const*, OSDictionary*) | |
| [ 3610] 3610 X Code 0xffffff800089df10 0x0000000000000070 0x000f0000 IOService::nameMatching(char const*, OSDictionary*) | |
| [ 3611] 3611 X Code 0xffffff800089e180 0x0000000000000010 0x000f0000 IOService::passiveMatch(OSDictionary*, bool) | |
| [ 3612] 3612 X Code 0xffffff8000890c20 0x0000000000000010 0x000f0000 IOService::requestProbe(unsigned int) | |
| [ 3613] 3613 X Code 0xffffff8000893ff0 0x00000000000001b0 0x000f0000 IOService::scheduleStop(IOService*) | |
| [ 3614] 3614 X Code 0xffffff80008b04f0 0x0000000000000010 0x000f0000 IOService::tellChangeUp(unsigned long) | |
| [ 3615] 3615 X Code 0xffffff800088e5f0 0x00000000000001e0 0x000f0000 IOService::updateReport(IOReportChannelList*, unsigned int, void*, void*) | |
| [ 3616] 3616 X Code 0xffffff800089d350 0x0000000000000020 0x000f0000 IOService::waitForState(unsigned int, unsigned int, mach_timespec*) | |
| [ 3617] 3617 X Code 0xffffff800089d370 0x0000000000000120 0x000f0000 IOService::waitForState(unsigned int, unsigned int, unsigned long long) | |
| [ 3618] 3618 X Code 0xffffff8000893b30 0x0000000000000230 0x000f0000 IOService::actionDidStop(IOService*, unsigned int, void*, void*, void*) | |
| [ 3619] 3619 X Code 0xffffff80008acec0 0x00000000000005a0 0x000f0000 IOService::addPowerChild(IOService*) | |
| [ 3620] 3620 X Code 0xffffff80008aff00 0x0000000000000010 0x000f0000 IOService::askChangeDown(unsigned long) | |
| [ 3621] 3621 X Code 0xffffff8000897460 0x0000000000000220 0x000f0000 IOService::checkResource(OSObject*) | |
| [ 3622] 3622 X Code 0xffffff80008af7a0 0x0000000000000020 0x000f0000 IOService::getPowerState() | |
| [ 3623] 3623 X Code 0xffffff8000895ff0 0x00000000000000e0 0x000f0000 IOService::instanceMatch(OSObject const*, void*) | |
| [ 3624] 3624 X Code 0xffffff80008951e0 0x0000000000000190 0x000f0000 IOService::invokeNotifer(_IOServiceNotifier*) | |
| [ 3625] 3625 X Code 0xffffff8000895370 0x0000000000000870 0x000f0000 IOService::matchInternal(OSDictionary*, unsigned int, unsigned int*) | |
| [ 3626] 3626 X Code 0xffffff800088fca0 0x0000000000000040 0x000f0000 IOService::matchLocation(IOService*) | |
| [ 3627] 3627 X Code 0xffffff8000890c40 0x0000000000000230 0x000f0000 IOService::messageClient(unsigned int, OSObject*, void*, unsigned long) | |
| [ 3628] 3628 X Code 0xffffff8000891020 0x00000000000001e0 0x000f0000 IOService::newUserClient(task*, void*, unsigned int, OSDictionary*, IOUserClient**) | |
| [ 3629] 3629 X Code 0xffffff8000891200 0x0000000000000010 0x000f0000 IOService::newUserClient(task*, void*, unsigned int, IOUserClient**) | |
| [ 3630] 3630 X Code 0xffffff80008abaa0 0x0000000000000290 0x000f0000 IOService::responseValid(unsigned int, int) | |
| [ 3631] 3631 X Code 0xffffff80008aae00 0x0000000000000100 0x000f0000 IOService::setParentInfo(unsigned long, IOPowerConnection*, bool) | |
| [ 3632] 3632 X Code 0xffffff80008b0da0 0x0000000000000010 0x000f0000 IOService::setPowerState(unsigned long, IOService*) | |
| [ 3633] 3633 X Code 0xffffff8000896100 0x0000000000000220 0x000f0000 IOService::startMatching(unsigned int) | |
| [ 3634] 3634 X Code 0xffffff800089d890 0x00000000000000e0 0x000f0000 IOService::waitMatchIdle(unsigned int) | |
| [ 3635] 3635 X Code 0xffffff800088e260 0x0000000000000010 0x000f0000 IOService::willTerminate(IOService*, unsigned int) | |
| [ 3636] 3636 X Code 0xffffff80008ab010 0x0000000000000360 0x000f0000 IOService::OurChangeStart() | |
| [ 3637] 3637 X Code 0xffffff8000893d60 0x00000000000000e0 0x000f0000 IOService::actionFinalize(IOService*, unsigned int, void*, void*, void*) | |
| [ 3638] 3638 X Code 0xffffff8000893550 0x00000000000001c0 0x000f0000 IOService::actionWillStop(IOService*, unsigned int, void*, void*, void*) | |
| [ 3639] 3639 X Code 0xffffff80008af2e0 0x00000000000001d0 0x000f0000 IOService::activityTickle(unsigned long, unsigned long) | |
| [ 3640] 3640 X Code 0xffffff80008a94b0 0x00000000000001f0 0x000f0000 IOService::addPowerChild1(IOPMRequest*) | |
| [ 3641] 3641 X Code 0xffffff80008a96a0 0x00000000000002b0 0x000f0000 IOService::addPowerChild2(IOPMRequest*) | |
| [ 3642] 3642 X Code 0xffffff80008a9950 0x00000000000000f0 0x000f0000 IOService::addPowerChild3(IOPMRequest*) | |
| [ 3643] 3643 X Code 0xffffff8000890fa0 0x0000000000000020 0x000f0000 IOService::applyToClients(void (*)(IOService*, void*), void*) | |
| [ 3644] 3644 X Code 0xffffff8000890bb0 0x0000000000000070 0x000f0000 IOService::causeInterrupt(int) | |
| [ 3645] 3645 X Code 0xffffff8000897390 0x00000000000000d0 0x000f0000 IOService::checkResources() | |
| [ 3646] 3646 X Code 0xffffff80008963d0 0x00000000000002f0 0x000f0000 IOService::doServiceMatch(unsigned int) | |
| [ 3647] 3647 X Code 0xffffff800089cbf0 0x0000000000000010 0x000f0000 IOService::getServiceRoot() | |
| [ 3648] 3648 X Code 0xffffff8000890e70 0x0000000000000050 0x000f0000 IOService::messageClients(unsigned int, void*, unsigned long) | |
| [ 3649] 3649 X Code 0xffffff80008a6700 0x00000000000002d0 0x000f0000 IOService::notifyChildren() | |
| [ 3650] 3650 X Code 0xffffff8000897290 0x0000000000000100 0x000f0000 IOService::startCandidate(IOService*) | |
| [ 3651] 3651 X Code 0xffffff80008ad9c0 0x0000000000000040 0x000f0000 IOService::stop_ack_timer() | |
| [ 3652] 3652 X Code 0xffffff80008aff10 0x0000000000000010 0x000f0000 IOService::tellChangeDown(unsigned long) | |
| [ 3653] 3653 X Code 0xffffff800089d290 0x0000000000000060 0x000f0000 IOService::waitForService(OSDictionary*, mach_timespec*) | |
| [ 3654] 3654 X Code 0xffffff80008afa90 0x0000000000000010 0x000f0000 IOService::OurChangeFinish() | |
| [ 3655] 3655 X Code 0xffffff800089dc70 0x0000000000000050 0x000f0000 IOService::addNotification(OSSymbol const*, OSDictionary*, bool (*)(void*, void*, IOService*), void*, void*, int) | |
| [ 3656] 3656 X Code 0xffffff800088fe50 0x0000000000000070 0x000f0000 IOService::compareProperty(OSDictionary*, OSString const*) | |
| [ 3657] 3657 X Code 0xffffff800088fde0 0x0000000000000070 0x000f0000 IOService::compareProperty(OSDictionary*, char const*) | |
| [ 3658] 3658 X Code 0xffffff800088e3f0 0x0000000000000200 0x000f0000 IOService::configureReport(IOReportChannelList*, unsigned int, void*, void*) | |
| [ 3659] 3659 X Code 0xffffff8000890ad0 0x0000000000000070 0x000f0000 IOService::enableInterrupt(int) | |
| [ 3660] 3660 X Code 0xffffff80008912a0 0x00000000000001b0 0x000f0000 IOService::errnoFromReturn(int) | |
| [ 3661] 3661 X Code 0xffffff8000890890 0x0000000000000050 0x000f0000 IOService::getDeviceMemory() | |
| [ 3662] 3662 X Code 0xffffff80008afef0 0x0000000000000010 0x000f0000 IOService::getIOPMWorkloop() | |
| [ 3663] 3663 X Code 0xffffff800089ceb0 0x0000000000000010 0x000f0000 IOService::getPMRootDomain() | |
| [ 3664] 3664 X Code 0xffffff800089e1d0 0x00000000000000a0 0x000f0000 IOService::lookupInterrupt(int, bool, IOInterruptController**) | |
| [ 3665] 3665 X Code 0xffffff80008af720 0x0000000000000040 0x000f0000 IOService::nextIdleTimeout(unsigned long long, unsigned long long, unsigned int) | |
| [ 3666] 3666 X Code 0xffffff80008a29d0 0x0000000000000090 0x000f0000 IOService::pmDriverCallout(IOService*) | |
| [ 3667] 3667 X Code 0xffffff80008b0fb0 0x0000000000000010 0x000f0000 IOService::powerChangeDone(unsigned long) | |
| [ 3668] 3668 X Code 0xffffff80008966c0 0x0000000000000b80 0x000f0000 IOService::probeCandidates(OSOrderedSet*) | |
| [ 3669] 3669 X Code 0xffffff800089d1a0 0x0000000000000060 0x000f0000 IOService::publishResource(OSSymbol const*, OSObject*) | |
| [ 3670] 3670 X Code 0xffffff800089d050 0x0000000000000080 0x000f0000 IOService::publishResource(char const*, OSObject*) | |
| [ 3671] 3671 X Code 0xffffff800088f080 0x00000000000001f0 0x000f0000 IOService::registerService(unsigned int) | |
| [ 3672] 3672 X Code 0xffffff800089ddd0 0x0000000000000070 0x000f0000 IOService::serviceMatching(OSString const*, OSDictionary*) | |
| [ 3673] 3673 X Code 0xffffff800089de40 0x0000000000000080 0x000f0000 IOService::serviceMatching(char const*, OSDictionary*) | |
| [ 3674] 3674 X Code 0xffffff80008908e0 0x0000000000000020 0x000f0000 IOService::setDeviceMemory(OSArray*) | |
| [ 3675] 3675 X Code 0xffffff8000897890 0x0000000000000180 0x000f0000 IOService::setNotification(OSSymbol const*, OSDictionary*, bool (*)(void*, void*, IOService*, IONotifier*), void*, void*, int) | |
| [ 3676] 3676 X Code 0xffffff800089cfd0 0x0000000000000080 0x000f0000 IOService::setPMRootDomain(IOPMrootDomain*) | |
| [ 3677] 3677 X Code 0xffffff80008a8520 0x00000000000000b0 0x000f0000 IOService::start_ack_timer(unsigned int, unsigned int) | |
| [ 3678] 3678 X Code 0xffffff80008af7c0 0x0000000000000060 0x000f0000 IOService::start_ack_timer() | |
| [ 3679] 3679 X Code 0xffffff80008a3d50 0x00000000000001a0 0x000f0000 IOService::submitPMRequest(IOPMRequest*) | |
| [ 3680] 3680 X Code 0xffffff80008afb90 0x0000000000000020 0x000f0000 IOService::tellChangeDown1(unsigned long) | |
| [ 3681] 3681 X Code 0xffffff80008afc10 0x0000000000000020 0x000f0000 IOService::tellChangeDown2(unsigned long) | |
| [ 3682] 3682 X Code 0xffffff800088fbd0 0x0000000000000050 0x000f0000 IOService::terminateClient(IOService*, unsigned int) | |
| [ 3683] 3683 X Code 0xffffff80008941a0 0x0000000000000950 0x000f0000 IOService::terminatePhase1(unsigned int) | |
| [ 3684] 3684 X Code 0xffffff8000892900 0x0000000000000090 0x000f0000 IOService::terminateThread(void*, int) | |
| [ 3685] 3685 X Code 0xffffff8000892990 0x0000000000000bc0 0x000f0000 IOService::terminateWorker(unsigned int) | |
| [ 3686] 3686 X Code 0xffffff80008a3c20 0x0000000000000130 0x000f0000 IOService::acquirePMRequest(IOService*, unsigned int, IOPMRequest*) | |
| [ 3687] 3687 X Code 0xffffff80008ad760 0x0000000000000090 0x000f0000 IOService::adjustPowerState(unsigned int) | |
| [ 3688] 3688 X Code 0xffffff80008b0500 0x0000000000000060 0x000f0000 IOService::allowPowerChange(unsigned long) | |
| [ 3689] 3689 X Code 0xffffff8000890f80 0x0000000000000020 0x000f0000 IOService::applyToProviders(void (*)(IOService*, void*), void*) | |
| [ 3690] 3690 X Code 0xffffff800089ca90 0x0000000000000010 0x000f0000 IOService::consoleLockTimer(void*, void*) | |
| [ 3691] 3691 X Code 0xffffff8000890b40 0x0000000000000070 0x000f0000 IOService::disableInterrupt(int) | |
| [ 3692] 3692 X Code 0xffffff80008a4bd0 0x0000000000000300 0x000f0000 IOService::executePMRequest(IOPMRequest*) | |
| [ 3693] 3693 X Code 0xffffff800089e1a0 0x0000000000000030 0x000f0000 IOService::getCPUSnoopDelay() | |
| [ 3694] 3694 X Code 0xffffff8000890a30 0x00000000000000a0 0x000f0000 IOService::getInterruptType(int, int*) | |
| [ 3695] 3695 X Code 0xffffff80008a3ab0 0x0000000000000170 0x000f0000 IOService::idleTimerExpired() | |
| [ 3696] 3696 X Code 0xffffff80008af820 0x0000000000000060 0x000f0000 IOService::notifyRootDomain() | |
| [ 3697] 3697 X Code 0xffffff800089e030 0x0000000000000090 0x000f0000 IOService::propertyMatching(OSSymbol const*, OSObject const*, OSDictionary*) | |
| [ 3698] 3698 X Code 0xffffff80008af020 0x0000000000000140 0x000f0000 IOService::quiescePowerTree(void*, void (*)(void*, void*), void*) | |
| [ 3699] 3699 X Code 0xffffff8000890ec0 0x00000000000000c0 0x000f0000 IOService::registerInterest(OSSymbol const*, int (*)(void*, void*, unsigned int, IOService*, void*, unsigned long), void*, void*) | |
| [ 3700] 3700 X Code 0xffffff80008ad6b0 0x00000000000000b0 0x000f0000 IOService::releasePMRequest(IOPMRequest*) | |
| [ 3701] 3701 X Code 0xffffff80008ad7f0 0x00000000000001d0 0x000f0000 IOService::removePowerChild(IOPowerConnection*) | |
| [ 3702] 3702 X Code 0xffffff800088e200 0x0000000000000060 0x000f0000 IOService::requestTerminate(IOService*, unsigned int) | |
| [ 3703] 3703 X Code 0xffffff8000891c80 0x00000000000001f0 0x000f0000 IOService::resolveInterrupt(IOService*, int) | |
| [ 3704] 3704 X Code 0xffffff800089d200 0x0000000000000090 0x000f0000 IOService::resourceMatching(OSString const*, OSDictionary*) | |
| [ 3705] 3705 X Code 0xffffff800089df80 0x00000000000000b0 0x000f0000 IOService::resourceMatching(char const*, OSDictionary*) | |
| [ 3706] 3706 X Code 0xffffff80008af270 0x0000000000000060 0x000f0000 IOService::restartIdleTimer() | |
| [ 3707] 3707 X Code 0xffffff8000892780 0x0000000000000180 0x000f0000 IOService::scheduleFinalize(bool) | |
| [ 3708] 3708 X Code 0xffffff800089e190 0x0000000000000010 0x000f0000 IOService::setCPUSnoopDelay(unsigned int) | |
| [ 3709] 3709 X Code 0xffffff80008a9f40 0x00000000000001c0 0x000f0000 IOService::startPowerChange(unsigned int, unsigned long, unsigned long, IOPowerConnection*, unsigned long) | |
| [ 3710] 3710 X Code 0xffffff80008afca0 0x0000000000000010 0x000f0000 IOService::startSettleTimer() | |
| [ 3711] 3711 X Code 0xffffff8000891210 0x0000000000000090 0x000f0000 IOService::stringFromReturn(int) | |
| [ 3712] 3712 X Code 0xffffff80008ad460 0x0000000000000230 0x000f0000 IOService::submitPMRequests(IOPMRequest**, unsigned int) | |
| [ 3713] 3713 X Code 0xffffff80008b0000 0x0000000000000010 0x000f0000 IOService::tellNoChangeDown(unsigned long) | |
| [ 3714] 3714 X Code 0xffffff80008ab370 0x0000000000000520 0x000f0000 IOService::ParentChangeStart() | |
| [ 3715] 3715 X Code 0xffffff80008a28d0 0x0000000000000050 0x000f0000 IOService::ack_timer_expired(void*, void*) | |
| [ 3716] 3716 X Code 0xffffff800088fce0 0x0000000000000100 0x000f0000 IOService::addNeededResource(char const*) | |
| [ 3717] 3717 X Code 0xffffff8000890fc0 0x0000000000000050 0x000f0000 IOService::applyToInterested(OSSymbol const*, void (*)(OSObject*, void*), void*) | |
| [ 3718] 3718 X Code 0xffffff80008b0560 0x0000000000000100 0x000f0000 IOService::cancelPowerChange(unsigned long) | |
| [ 3719] 3719 X Code 0xffffff800089cc00 0x0000000000000200 0x000f0000 IOService::catalogNewDrivers(OSOrderedSet*) | |
| [ 3720] 3720 X Code 0xffffff800088fec0 0x00000000000000e0 0x000f0000 IOService::compareProperties(OSDictionary*, OSCollection*) | |
| [ 3721] 3721 X Code 0xffffff80008aeaf0 0x0000000000000020 0x000f0000 IOService::currentCapability() | |
| [ 3722] 3722 X Code 0xffffff80008af770 0x0000000000000030 0x000f0000 IOService::getAggressiveness(unsigned long, unsigned long*) | |
| [ 3723] 3723 X Code 0xffffff8000890900 0x00000000000000c0 0x000f0000 IOService::registerInterrupt(int, OSObject*, void (*)(OSObject*, void*, IOService*, int), void*) | |
| [ 3724] 3724 X Code 0xffffff80008af160 0x0000000000000030 0x000f0000 IOService::removePowerClient(OSSymbol const*) | |
| [ 3725] 3725 X Code 0xffffff80008ae920 0x00000000000000f0 0x000f0000 IOService::requestPowerState(OSSymbol const*, unsigned int) | |
| [ 3726] 3726 X Code 0xffffff80008af760 0x0000000000000010 0x000f0000 IOService::setAggressiveness(unsigned long, unsigned long) | |
| [ 3727] 3727 X Code 0xffffff800089d0d0 0x0000000000000090 0x000f0000 IOService::setTerminateDefer(IOService*, bool) | |
| [ 3728] 3728 X Code 0xffffff80008a8b10 0x0000000000000120 0x000f0000 IOService::updatePowerClient(OSSymbol const*, unsigned int) | |
| [ 3729] 3729 X Code 0xffffff80008938e0 0x0000000000000250 0x000f0000 IOService::actionDidTerminate(IOService*, unsigned int, void*, void*, void*) | |
| [ 3730] 3730 X Code 0xffffff80008a1240 0x00000000000008a0 0x000f0000 IOService::actionPMReplyQueue(IOPMRequest*, IOPMRequestQueue*) | |
| [ 3731] 3731 X Code 0xffffff80008a3690 0x00000000000000f0 0x000f0000 IOService::assertPMDriverCall(IOPMDriverCallEntry*, unsigned int, IOPMinformee*) | |
| [ 3732] 3732 X Code 0xffffff80008aeb10 0x0000000000000110 0x000f0000 IOService::changePowerStateTo(unsigned long) | |
| [ 3733] 3733 X Code 0xffffff800089d160 0x0000000000000010 0x000f0000 IOService::doServiceTerminate(unsigned int) | |
| [ 3734] 3734 X Code 0xffffff800089e770 0x0000000000000010 0x000f0000 IOService::getAuthorizationID() | |
| [ 3735] 3735 X Code 0xffffff80008aff20 0x0000000000000060 0x000f0000 IOService::getIOMessageString(unsigned int) | |
| [ 3736] 3736 X Code 0xffffff800089cec0 0x0000000000000010 0x000f0000 IOService::getResourceService() | |
| [ 3737] 3737 X Code 0xffffff800088f750 0x0000000000000310 0x000f0000 IOService::lockForArbitration(bool) | |
| [ 3738] 3738 X Code 0xffffff800088fc90 0x0000000000000010 0x000f0000 IOService::matchPropertyTable(OSDictionary*) | |
| [ 3739] 3739 X Code 0xffffff800088fc70 0x0000000000000020 0x000f0000 IOService::matchPropertyTable(OSDictionary*, int*) | |
| [ 3740] 3740 X Code 0xffffff80008ab940 0x0000000000000160 0x000f0000 IOService::requestDomainPower(unsigned long, unsigned int) | |
| [ 3741] 3741 X Code 0xffffff800089cb30 0x0000000000000010 0x000f0000 IOService::requireMaxBusStall(unsigned int) | |
| [ 3742] 3742 X Code 0xffffff800089e780 0x0000000000000070 0x000f0000 IOService::setAuthorizationID(unsigned long long) | |
| [ 3743] 3743 X Code 0xffffff80008af4b0 0x0000000000000160 0x000f0000 IOService::setIdleTimerPeriod(unsigned long) | |
| [ 3744] 3744 X Code 0xffffff80008af610 0x0000000000000110 0x000f0000 IOService::setIgnoreIdleTimer(bool) | |
| [ 3745] 3745 X Code 0xffffff80008a4020 0x0000000000000030 0x000f0000 IOService::settleTimerExpired() | |
| [ 3746] 3746 X Code 0xffffff80008b0fc0 0x0000000000000020 0x000f0000 IOService::systemWillShutdown(unsigned int) | |
| [ 3747] 3747 X Code 0xffffff8000899db0 0x0000000000000580 0x000f0000 IOService::updateConsoleUsers(OSArray*, unsigned int) | |
| [ 3748] 3748 X Code 0xffffff800088e7d0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService2() | |
| [ 3749] 3749 X Code 0xffffff800088e800 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService3() | |
| [ 3750] 3750 X Code 0xffffff800088e830 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService4() | |
| [ 3751] 3751 X Code 0xffffff800088e860 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService5() | |
| [ 3752] 3752 X Code 0xffffff800088e890 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService6() | |
| [ 3753] 3753 X Code 0xffffff800088e8c0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService7() | |
| [ 3754] 3754 X Code 0xffffff800088e8f0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService8() | |
| [ 3755] 3755 X Code 0xffffff800088e920 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService9() | |
| [ 3756] 3756 X Code 0xffffff8000893710 0x00000000000001d0 0x000f0000 IOService::actionWillTerminate(IOService*, unsigned int, OSArray*, void*, void*) | |
| [ 3757] 3757 X Code 0xffffff80008a8c30 0x0000000000000530 0x000f0000 IOService::computeDesiredState(unsigned long, bool) | |
| [ 3758] 3758 X Code 0xffffff800089da00 0x0000000000000080 0x000f0000 IOService::copyMatchingService(OSDictionary*) | |
| [ 3759] 3759 X Code 0xffffff8000894af0 0x0000000000000200 0x000f0000 IOService::deliverNotification(OSSymbol const*, unsigned int, unsigned int) | |
| [ 3760] 3760 X Code 0xffffff80008a2ad0 0x00000000000004b0 0x000f0000 IOService::driverSetPowerState() | |
| [ 3761] 3761 X Code 0xffffff800089d980 0x0000000000000080 0x000f0000 IOService::getMatchingServices(OSDictionary*) | |
| [ 3762] 3762 X Code 0xffffff800089db20 0x0000000000000150 0x000f0000 IOService::installNotification(OSSymbol const*, OSDictionary*, bool (*)(void*, void*, IOService*, IONotifier*), void*, void*, int, OSIterator**) | |
| [ 3763] 3763 X Code 0xffffff80008af190 0x0000000000000070 0x000f0000 IOService::powerOverrideOnPriv() | |
| [ 3764] 3764 X Code 0xffffff80008ada10 0x00000000000004d0 0x000f0000 IOService::registerPowerDriver(IOService*, IOPMPowerState*, unsigned long) | |
| [ 3765] 3765 X Code 0xffffff80008a3ef0 0x0000000000000130 0x000f0000 IOService::start_PM_idle_timer() | |
| [ 3766] 3766 X Code 0xffffff80008af9c0 0x0000000000000040 0x000f0000 IOService::stop_spindump_timer() | |
| [ 3767] 3767 X Code 0xffffff80008afe50 0x0000000000000050 0x000f0000 IOService::stop_watchdog_timer() | |
| [ 3768] 3768 X Code 0xffffff80008909c0 0x0000000000000070 0x000f0000 IOService::unregisterInterrupt(int) | |
| [ 3769] 3769 X Code 0xffffff80008acd10 0x00000000000001b0 0x000f0000 IOService::waitForPMDriverCall(IOService*) | |
| [ 3770] 3770 X Code 0xffffff800088e950 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService10() | |
| [ 3771] 3771 X Code 0xffffff800088e980 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService11() | |
| [ 3772] 3772 X Code 0xffffff800088e9b0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService12() | |
| [ 3773] 3773 X Code 0xffffff800088e9e0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService13() | |
| [ 3774] 3774 X Code 0xffffff800088ea10 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService14() | |
| [ 3775] 3775 X Code 0xffffff800088ea40 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService15() | |
| [ 3776] 3776 X Code 0xffffff800088ea70 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService16() | |
| [ 3777] 3777 X Code 0xffffff800088eaa0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService17() | |
| [ 3778] 3778 X Code 0xffffff800088ead0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService18() | |
| [ 3779] 3779 X Code 0xffffff800088eb00 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService19() | |
| [ 3780] 3780 X Code 0xffffff800088eb30 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService20() | |
| [ 3781] 3781 X Code 0xffffff800088eb60 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService21() | |
| [ 3782] 3782 X Code 0xffffff800088eb90 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService22() | |
| [ 3783] 3783 X Code 0xffffff800088ebc0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService23() | |
| [ 3784] 3784 X Code 0xffffff800088ebf0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService24() | |
| [ 3785] 3785 X Code 0xffffff800088ec20 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService25() | |
| [ 3786] 3786 X Code 0xffffff800088ec50 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService26() | |
| [ 3787] 3787 X Code 0xffffff800088ec80 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService27() | |
| [ 3788] 3788 X Code 0xffffff800088ecb0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService28() | |
| [ 3789] 3789 X Code 0xffffff800088ece0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService29() | |
| [ 3790] 3790 X Code 0xffffff800088ed10 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService30() | |
| [ 3791] 3791 X Code 0xffffff800088ed40 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService31() | |
| [ 3792] 3792 X Code 0xffffff800088ed70 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService32() | |
| [ 3793] 3793 X Code 0xffffff800088eda0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService33() | |
| [ 3794] 3794 X Code 0xffffff800088edd0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService34() | |
| [ 3795] 3795 X Code 0xffffff800088ee00 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService35() | |
| [ 3796] 3796 X Code 0xffffff800088ee30 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService36() | |
| [ 3797] 3797 X Code 0xffffff800088ee60 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService37() | |
| [ 3798] 3798 X Code 0xffffff800088ee90 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService38() | |
| [ 3799] 3799 X Code 0xffffff800088eec0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService39() | |
| [ 3800] 3800 X Code 0xffffff800088eef0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService40() | |
| [ 3801] 3801 X Code 0xffffff800088ef20 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService41() | |
| [ 3802] 3802 X Code 0xffffff800088ef50 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService42() | |
| [ 3803] 3803 X Code 0xffffff800088ef80 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService43() | |
| [ 3804] 3804 X Code 0xffffff800088efb0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService44() | |
| [ 3805] 3805 X Code 0xffffff800088efe0 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService45() | |
| [ 3806] 3806 X Code 0xffffff800088f010 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService46() | |
| [ 3807] 3807 X Code 0xffffff800088f040 0x0000000000000030 0x000f0000 IOService::_RESERVEDIOService47() | |
| [ 3808] 3808 X Code 0xffffff80008a1100 0x0000000000000140 0x000f0000 IOService::actionPMRequestQueue(IOPMRequest*, IOPMRequestQueue*) | |
| [ 3809] 3809 X Code 0xffffff8000890630 0x00000000000000c0 0x000f0000 IOService::callPlatformFunction(OSSymbol const*, bool, void*, void*, void*, void*) | |
| [ 3810] 3810 X Code 0xffffff80008906f0 0x0000000000000080 0x000f0000 IOService::callPlatformFunction(char const*, bool, void*, void*, void*, void*) | |
| [ 3811] 3811 X Code 0xffffff80008a47b0 0x0000000000000150 0x000f0000 IOService::cleanClientResponses(bool) | |
| [ 3812] 3812 X Code 0xffffff8000895d30 0x00000000000002c0 0x000f0000 IOService::copyExistingServices(OSDictionary*, unsigned int, unsigned int) | |
| [ 3813] 3813 X Code 0xffffff80008afa00 0x0000000000000090 0x000f0000 IOService::deassertPMDriverCall(IOPMDriverCallEntry*) | |
| [ 3814] 3814 X Code 0xffffff8000890780 0x0000000000000060 0x000f0000 IOService::getDeviceMemoryCount() | |
| [ 3815] 3815 X Code 0xffffff80008aabd0 0x0000000000000230 0x000f0000 IOService::handleActivityTickle(IOPMRequest*) | |
| [ 3816] 3816 X Code 0xffffff80008af880 0x0000000000000030 0x000f0000 IOService::notifyRootDomainDone() | |
| [ 3817] 3817 X Code 0xffffff80008af200 0x0000000000000070 0x000f0000 IOService::powerOverrideOffPriv() | |
| [ 3818] 3818 X Code 0xffffff80008afea0 0x0000000000000050 0x000f0000 IOService::reset_watchdog_timer() | |
| [ 3819] 3819 X Code 0xffffff80008a3780 0x0000000000000330 0x000f0000 IOService::start_spindump_timer(char const*) | |
| [ 3820] 3820 X Code 0xffffff80008a46e0 0x00000000000000d0 0x000f0000 IOService::start_watchdog_timer() | |
| [ 3821] 3821 X Code 0xffffff80008ae2e0 0x00000000000001c0 0x000f0000 IOService::synchronizePowerTree(unsigned int, IOService*) | |
| [ 3822] 3822 X Code 0xffffff800088fa60 0x0000000000000170 0x000f0000 IOService::unlockForArbitration() | |
| [ 3823] 3823 X Code 0xffffff80008a4050 0x0000000000000050 0x000f0000 IOService::actionAckTimerExpired(OSObject*, void*, void*, void*, void*) | |
| [ 3824] 3824 X Code 0xffffff800089da80 0x00000000000000a0 0x000f0000 IOService::doInstallNotification(OSSymbol const*, OSDictionary*, bool (*)(void*, void*, IOService*, IONotifier*), void*, void*, int, OSIterator**) | |
| [ 3825] 3825 X Code 0xffffff800089d170 0x0000000000000030 0x000f0000 IOService::getClientWithCategory(OSSymbol const*) | |
| [ 3826] 3826 X Code 0xffffff80008ac320 0x00000000000001a0 0x000f0000 IOService::handleInterestChanged(IOPMRequest*) | |
| [ 3827] 3827 X Code 0xffffff80008a6b70 0x00000000000000c0 0x000f0000 IOService::notifyChildrenDelayed() | |
| [ 3828] 3828 X Code 0xffffff80008af8b0 0x00000000000000a0 0x000f0000 IOService::notifyChildrenOrdered() | |
| [ 3829] 3829 X Code 0xffffff80008a6c30 0x0000000000000310 0x000f0000 IOService::pmTellAppWithResponse(OSObject*, void*) | |
| [ 3830] 3830 X Code 0xffffff80008b0fa0 0x0000000000000010 0x000f0000 IOService::powerStateDidChangeTo(unsigned long, unsigned long, IOService*) | |
| [ 3831] 3831 X Code 0xffffff80008ae900 0x0000000000000020 0x000f0000 IOService::temporaryPowerClampOn() | |
| [ 3832] 3832 X Code 0xffffff800089cb50 0x00000000000000a0 0x000f0000 IOService::unregisterAllInterest() | |
| [ 3833] 3833 X Code 0xffffff80008afc30 0x0000000000000050 0x000f0000 IOService::OurChangeSetPowerState() | |
| [ 3834] 3834 X Code 0xffffff80008ae220 0x0000000000000060 0x000f0000 IOService::acknowledgePowerChange(IOService*) | |
| [ 3835] 3835 X Code 0xffffff800089e270 0x00000000000003d0 0x000f0000 IOService::addInterruptStatistics(IOInterruptAccountingData*, int) | |
| [ 3836] 3836 X Code 0xffffff80008aec20 0x0000000000000110 0x000f0000 IOService::changePowerStateToPriv(unsigned long) | |
| [ 3837] 3837 X Code 0xffffff800088e300 0x00000000000000f0 0x000f0000 IOService::copyClientWithCategory(OSSymbol const*) | |
| [ 3838] 3838 X Code 0xffffff800089d2f0 0x0000000000000060 0x000f0000 IOService::getAccumulatedBusyTime() | |
| [ 3839] 3839 X Code 0xffffff80008adee0 0x0000000000000040 0x000f0000 IOService::getPowerStateForClient(OSSymbol const*) | |
| [ 3840] 3840 X Code 0xffffff80008b0f90 0x0000000000000010 0x000f0000 IOService::powerStateWillChangeTo(unsigned long, unsigned long, IOService*) | |
| [ 3841] 3841 X Code 0xffffff80008a2a60 0x0000000000000050 0x000f0000 IOService::spindump_timer_expired(void*, void*) | |
| [ 3842] 3842 X Code 0xffffff8000897680 0x0000000000000180 0x000f0000 IOService::waitForMatchingService(OSDictionary*, unsigned long long) | |
| [ 3843] 3843 X Code 0xffffff80008a2870 0x0000000000000060 0x000f0000 IOService::watchdog_timer_expired(void*, void*) | |
| [ 3844] 3844 X Code 0xffffff8000891010 0x0000000000000010 0x000f0000 IOService::acknowledgeNotification(void*, unsigned int) | |
| [ 3845] 3845 X Code 0xffffff80008a3660 0x0000000000000030 0x000f0000 IOService::actionDriverCalloutDone(OSObject*, void*, void*, void*, void*) | |
| [ 3846] 3846 X Code 0xffffff80008a27a0 0x00000000000000d0 0x000f0000 IOService::actionPMCompletionQueue(IOPMRequest*, IOPMCompletionQueue*) | |
| [ 3847] 3847 X Code 0xffffff80008a1ae0 0x0000000000000b40 0x000f0000 IOService::actionPMWorkQueueInvoke(IOPMRequest*, IOPMWorkQueue*) | |
| [ 3848] 3848 X Code 0xffffff80008a2620 0x0000000000000180 0x000f0000 IOService::actionPMWorkQueueRetire(IOPMRequest*, IOPMWorkQueue*) | |
| [ 3849] 3849 X Code 0xffffff800089dcc0 0x0000000000000110 0x000f0000 IOService::addMatchingNotification(OSSymbol const*, OSDictionary*, bool (*)(void*, void*, IOService*, IONotifier*), void*, void*, int) | |
| [ 3850] 3850 X Code 0xffffff80008ae280 0x0000000000000020 0x000f0000 IOService::currentPowerConsumption() | |
| [ 3851] 3851 X Code 0xffffff80008a2f80 0x00000000000006e0 0x000f0000 IOService::driverInformPowerChange() | |
| [ 3852] 3852 X Code 0xffffff80008aa850 0x0000000000000160 0x000f0000 IOService::handleRequestPowerState(IOPMRequest*) | |
| [ 3853] 3853 X Code 0xffffff80008a5e70 0x00000000000000c0 0x000f0000 IOService::notifyControllingDriver() | |
| [ 3854] 3854 X Code 0xffffff80008a6280 0x0000000000000190 0x000f0000 IOService::notifyInterestedDrivers() | |
| [ 3855] 3855 X Code 0xffffff800089e0c0 0x0000000000000070 0x000f0000 IOService::registryEntryIDMatching(unsigned long long, OSDictionary*) | |
| [ 3856] 3856 X Code 0xffffff80008ae520 0x00000000000003e0 0x000f0000 IOService::requestPowerDomainState(unsigned long, IOPowerConnection*, unsigned long) | |
| [ 3857] 3857 X Code 0xffffff8000892480 0x0000000000000300 0x000f0000 IOService::scheduleTerminatePhase2(unsigned int) | |
| [ 3858] 3858 X Code 0xffffff80008af2d0 0x0000000000000010 0x000f0000 IOService::setAdvisoryTickleEnable(bool) | |
| [ 3859] 3859 X Code 0xffffff8000897800 0x0000000000000090 0x000f0000 IOService::syncNotificationHandler(void*, void*, IOService*, IONotifier*) | |
| [ 3860] 3860 X Code 0xffffff80008a58b0 0x0000000000000500 0x000f0000 IOService::tellClientsWithResponse(int) | |
| [ 3861] 3861 X Code 0xffffff80008b09d0 0x0000000000000190 0x000f0000 IOService::updatePowerStatesReport(unsigned int, void*, void*) | |
| [ 3862] 3862 X Code 0xffffff80008b0b90 0x0000000000000210 0x000f0000 IOService::updateSimplePowerReport(unsigned int, void*, void*) | |
| [ 3863] 3863 X Code 0xffffff80008ae2a0 0x0000000000000040 0x000f0000 IOService::acknowledgeSetPowerState() | |
| [ 3864] 3864 X Code 0xffffff80008907e0 0x0000000000000070 0x000f0000 IOService::getDeviceMemoryWithIndex(unsigned int) | |
| [ 3865] 3865 X Code 0xffffff8000890850 0x0000000000000040 0x000f0000 IOService::mapDeviceMemoryWithIndex(unsigned int, unsigned int) | |
| [ 3866] 3866 X Code 0xffffff80008a72e0 0x0000000000000900 0x000f0000 IOService::pmTellClientWithResponse(OSObject*, void*) | |
| [ 3867] 3867 X Code 0xffffff80008b0f20 0x0000000000000070 0x000f0000 IOService::powerStateForDomainState(unsigned long) | |
| [ 3868] 3868 X Code 0xffffff80008adf20 0x00000000000001c0 0x000f0000 IOService::registerInterestedDriver(IOService*) | |
| [ 3869] 3869 X Code 0xffffff800089cb40 0x0000000000000010 0x000f0000 IOService::requireMaxInterruptDelay(unsigned int) | |
| [ 3870] 3870 X Code 0xffffff80008afd30 0x0000000000000050 0x000f0000 IOService::ParentChangeSetPowerState() | |
| [ 3871] 3871 X Code 0xffffff80008a9a40 0x0000000000000500 0x000f0000 IOService::handleRegisterPowerDriver(IOPMRequest*) | |
| [ 3872] 3872 X Code 0xffffff800089e640 0x0000000000000130 0x000f0000 IOService::removeInterruptStatistics(int) | |
| [ 3873] 3873 X Code 0xffffff80008a8890 0x0000000000000280 0x000f0000 IOService::ParentChangeRootChangeDown() | |
| [ 3874] 3874 X Code 0xffffff80008a2ab0 0x0000000000000020 0x000f0000 IOService::actionSpinDumpTimerExpired(OSObject*, void*, void*, void*, void*) | |
| [ 3875] 3875 X Code 0xffffff80008b0660 0x0000000000000370 0x000f0000 IOService::configurePowerStatesReport(unsigned int, void*) | |
| [ 3876] 3876 X Code 0xffffff80008b0b60 0x0000000000000030 0x000f0000 IOService::configureSimplePowerReport(unsigned int, void*) | |
| [ 3877] 3877 X Code 0xffffff80008ae0e0 0x0000000000000140 0x000f0000 IOService::deRegisterInterestedDriver(IOService*) | |
| [ 3878] 3878 X Code 0xffffff80008aa9b0 0x0000000000000220 0x000f0000 IOService::handlePowerOverrideChanged(IOPMRequest*) | |
| [ 3879] 3879 X Code 0xffffff80008ae4a0 0x0000000000000080 0x000f0000 IOService::handleSynchronizePowerTree(IOPMRequest*) | |
| [ 3880] 3880 X Code 0xffffff80008915f0 0x00000000000002b0 0x000f0000 IOService::registerInterestForNotifer(IONotifier*, OSSymbol const*, int (*)(void*, void*, unsigned int, IOService*, void*, unsigned long), void*, void*) | |
| [ 3881] 3881 X Code 0xffffff80008afb00 0x0000000000000050 0x000f0000 IOService::tellSystemCapabilityChange(unsigned int) | |
| [ 3882] 3882 X Code 0xffffff80008a8720 0x00000000000000c0 0x000f0000 IOService::trackSystemSleepPreventers(unsigned long, unsigned long, unsigned int) | |
| [ 3883] 3883 X Code 0xffffff80008afc80 0x0000000000000020 0x000f0000 IOService::OurChangeWaitForPowerSettle() | |
| [ 3884] 3884 X Code 0xffffff80008b0db0 0x0000000000000070 0x000f0000 IOService::getPowerStateForDomainFlags(unsigned long) | |
| [ 3885] 3885 X Code 0xffffff80008b0e20 0x0000000000000070 0x000f0000 IOService::maxCapabilityForDomainState(unsigned long) | |
| [ 3886] 3886 X Code 0xffffff80008a5f30 0x00000000000001c0 0x000f0000 IOService::notifyControllingDriverDone() | |
| [ 3887] 3887 X Code 0xffffff80008a6410 0x0000000000000250 0x000f0000 IOService::notifyInterestedDriversDone() | |
| [ 3888] 3888 X Code 0xffffff80008abd30 0x00000000000005f0 0x000f0000 IOService::handleAcknowledgePowerChange(IOPMRequest*) | |
| [ 3889] 3889 X Code 0xffffff80008aa3f0 0x0000000000000460 0x000f0000 IOService::handlePowerDomainDidChangeTo(IOPMRequest*) | |
| [ 3890] 3890 X Code 0xffffff80008afb50 0x0000000000000040 0x000f0000 IOService::OurChangeTellClientsPowerDown() | |
| [ 3891] 3891 X Code 0xffffff80008aef10 0x0000000000000110 0x000f0000 IOService::changePowerStateForRootDomain(unsigned long) | |
| [ 3892] 3892 X Code 0xffffff80008aa100 0x00000000000002f0 0x000f0000 IOService::handlePowerDomainWillChangeTo(IOPMRequest*) | |
| [ 3893] 3893 X Code 0xffffff80008afd80 0x0000000000000020 0x000f0000 IOService::ParentChangeWaitForPowerSettle() | |
| [ 3894] 3894 X Code 0xffffff80008aed30 0x00000000000001e0 0x000f0000 IOService::changePowerStateWithOverrideTo(unsigned long, unsigned int) | |
| [ 3895] 3895 X Code 0xffffff80008b0e90 0x0000000000000090 0x000f0000 IOService::initialPowerStateForDomainState(unsigned long) | |
| [ 3896] 3896 X Code 0xffffff80008a6f40 0x00000000000003a0 0x000f0000 IOService::pmTellCapabilityAppWithResponse(OSObject*, void*) | |
| [ 3897] 3897 X Code 0xffffff80008a61b0 0x00000000000000d0 0x000f0000 IOService::OurChangeTellCapabilityDidChange() | |
| [ 3898] 3898 X Code 0xffffff80008afaa0 0x0000000000000060 0x000f0000 IOService::OurChangeTellCapabilityWillChange() | |
| [ 3899] 3899 X Code 0xffffff80008afbb0 0x0000000000000030 0x000f0000 IOService::OurChangeTellUserPMPolicyPowerDown() | |
| [ 3900] 3900 X Code 0xffffff80008a6660 0x00000000000000a0 0x000f0000 IOService::ParentChangeAcknowledgePowerChange() | |
| [ 3901] 3901 X Code 0xffffff80008a7be0 0x0000000000000940 0x000f0000 IOService::pmTellCapabilityClientWithResponse(OSObject*, void*) | |
| [ 3902] 3902 X Code 0xffffff80008afdf0 0x0000000000000060 0x000f0000 IOService::ParentChangeTellCapabilityDidChange() | |
| [ 3903] 3903 X Code 0xffffff80008ab890 0x00000000000000b0 0x000f0000 IOService::ParentChangeTellCapabilityWillChange() | |
| [ 3904] 3904 X Code 0xffffff80008afbe0 0x0000000000000030 0x000f0000 IOService::OurChangeTellPriorityClientsPowerDown() | |
| [ 3905] 3905 X Code 0xffffff80008afcb0 0x0000000000000030 0x000f0000 IOService::ParentChangeTellPriorityClientsPowerDown() | |
| [ 3906] 3906 X Code 0xffffff80008a60f0 0x00000000000000c0 0x000f0000 IOService::OurChangeNotifyInterestedDriversDidChange() | |
| [ 3907] 3907 X Code 0xffffff80008a5db0 0x00000000000000c0 0x000f0000 IOService::OurChangeNotifyInterestedDriversWillChange() | |
| [ 3908] 3908 X Code 0xffffff80008afda0 0x0000000000000050 0x000f0000 IOService::ParentChangeNotifyInterestedDriversDidChange() | |
| [ 3909] 3909 X Code 0xffffff80008afce0 0x0000000000000050 0x000f0000 IOService::ParentChangeNotifyInterestedDriversWillChange() | |
| [ 3910] 3910 X Code 0xffffff800088df20 0x0000000000000190 0x000f0000 IOService::free() | |
| [ 3911] 3911 X Code 0xffffff800088e0b0 0x00000000000000a0 0x000f0000 IOService::init(OSDictionary*) | |
| [ 3912] 3912 X Code 0xffffff800088e160 0x00000000000000a0 0x000f0000 IOService::init(IORegistryEntry*, IORegistryPlane const*) | |
| [ 3913] 3913 X Code 0xffffff800088f2a0 0x00000000000000b0 0x000f0000 IOService::open(IOService*, unsigned int, void*) | |
| [ 3914] 3914 X Code 0xffffff800088f290 0x0000000000000010 0x000f0000 IOService::stop(IOService*) | |
| [ 3915] 3915 X Code 0xffffff800088f350 0x00000000000000e0 0x000f0000 IOService::close(IOService*, unsigned int) | |
| [ 3916] 3916 X Code 0xffffff800088f270 0x0000000000000010 0x000f0000 IOService::probe(IOService*, int*) | |
| [ 3917] 3917 X Code 0xffffff800088f280 0x0000000000000010 0x000f0000 IOService::start(IOService*) | |
| [ 3918] 3918 X Code 0xffffff80008ac790 0x0000000000000290 0x000f0000 IOService::PMfree() | |
| [ 3919] 3919 X Code 0xffffff80008a0880 0x0000000000000880 0x000f0000 IOService::PMinit() | |
| [ 3920] 3920 X Code 0xffffff80008acc00 0x0000000000000110 0x000f0000 IOService::PMstop() | |
| [ 3921] 3921 X Code 0xffffff800088ffa0 0x00000000000001d0 0x000f0000 IOService::attach(IOService*) | |
| [ 3922] 3922 X Code 0xffffff8000890170 0x0000000000000270 0x000f0000 IOService::detach(IOService*) | |
| [ 3923] 3923 X Code 0xffffff80008aca20 0x0000000000000080 0x000f0000 IOService::PMDebug(unsigned int, unsigned long, unsigned long) | |
| [ 3924] 3924 X Code 0xffffff8000890c30 0x0000000000000010 0x000f0000 IOService::message(unsigned int, IOService*, void*) | |
| [ 3925] 3925 X Code 0xffffff80008a4ed0 0x00000000000009e0 0x000f0000 IOService::all_done() | |
| [ 3926] 3926 X Code 0xffffff800088f540 0x0000000000000210 0x000f0000 IOService::finalize(unsigned int) | |
| [ 3927] 3927 X Code 0xffffff800089b7a0 0x0000000000000040 0x000f0000 IOService::MetaClass::MetaClass() | |
| [ 3928] 3928 X Code 0xffffff800089b830 0x0000000000000040 0x000f0000 IOService::MetaClass::MetaClass() | |
| [ 3929] 3929 X Invalid 0xffffff8000b1c4c8 0x0000000000000008 0x000f0000 IOService::metaClass | |
| [ 3930] 3930 X Code 0xffffff80008af950 0x0000000000000050 0x000f0000 IOService::notifyAll(unsigned int) | |
| [ 3931] 3931 X Code 0xffffff800088f530 0x0000000000000010 0x000f0000 IOService::terminate(unsigned int) | |
| [ 3932] 3932 X Code 0xffffff800089d860 0x0000000000000030 0x000f0000 IOService::waitQuiet(mach_timespec*) | |
| [ 3933] 3933 X Code 0xffffff800089d490 0x00000000000003d0 0x000f0000 IOService::waitQuiet(unsigned long long) | |
| [ 3934] 3934 X Code 0xffffff800089b800 0x0000000000000020 0x000f0000 IOService::IOService(OSMetaClass const*) | |
| [ 3935] 3935 X Code 0xffffff800089b870 0x0000000000000040 0x000f0000 IOService::IOService() | |
| [ 3936] 3936 X Code 0xffffff800089b7e0 0x0000000000000020 0x000f0000 IOService::IOService(OSMetaClass const*) | |
| [ 3937] 3937 X Code 0xffffff800089b8b0 0x0000000000000040 0x000f0000 IOService::IOService() | |
| [ 3938] 3938 X Code 0xffffff800088ded0 0x0000000000000040 0x000f0000 IOService::~IOService() | |
| [ 3939] 3939 X Code 0xffffff800088dec0 0x0000000000000010 0x000f0000 IOService::~IOService() | |
| [ 3940] 3940 X Code 0xffffff800089b820 0x0000000000000010 0x000f0000 IOService::~IOService() | |
| [ 3941] 3941 X Data 0xffffff8000ac2548 0x0000000000000028 0x000f0000 OSBoolean::gMetaClass | |
| [ 3942] 3942 X Code 0xffffff8000837a60 0x00000000000001a0 0x000f0000 OSBoolean::initialize() | |
| [ 3943] 3943 X Invalid 0xffffff8000b18db0 0x0000000000000008 0x000f0000 OSBoolean::superClass | |
| [ 3944] 3944 X Code 0xffffff8000837e90 0x0000000000000020 0x000f0000 OSBoolean::withBoolean(bool) | |
| [ 3945] 3945 X Code 0xffffff80008375f0 0x0000000000000030 0x000f0000 OSBoolean::_RESERVEDOSBoolean0() | |
| [ 3946] 3946 X Code 0xffffff8000837620 0x0000000000000030 0x000f0000 OSBoolean::_RESERVEDOSBoolean1() | |
| [ 3947] 3947 X Code 0xffffff8000837650 0x0000000000000030 0x000f0000 OSBoolean::_RESERVEDOSBoolean2() | |
| [ 3948] 3948 X Code 0xffffff8000837680 0x0000000000000030 0x000f0000 OSBoolean::_RESERVEDOSBoolean3() | |
| [ 3949] 3949 X Code 0xffffff80008376b0 0x0000000000000030 0x000f0000 OSBoolean::_RESERVEDOSBoolean4() | |
| [ 3950] 3950 X Code 0xffffff80008376e0 0x0000000000000030 0x000f0000 OSBoolean::_RESERVEDOSBoolean5() | |
| [ 3951] 3951 X Code 0xffffff8000837710 0x0000000000000030 0x000f0000 OSBoolean::_RESERVEDOSBoolean6() | |
| [ 3952] 3952 X Code 0xffffff8000837740 0x0000000000000030 0x000f0000 OSBoolean::_RESERVEDOSBoolean7() | |
| [ 3953] 3953 X Code 0xffffff8000837590 0x0000000000000020 0x000f0000 OSBoolean::free() | |
| [ 3954] 3954 X Code 0xffffff8000837d40 0x0000000000000040 0x000f0000 OSBoolean::MetaClass::MetaClass() | |
| [ 3955] 3955 X Code 0xffffff8000837dd0 0x0000000000000040 0x000f0000 OSBoolean::MetaClass::MetaClass() | |
| [ 3956] 3956 X Invalid 0xffffff8000b18da8 0x0000000000000008 0x000f0000 OSBoolean::metaClass | |
| [ 3957] 3957 X Code 0xffffff8000837da0 0x0000000000000020 0x000f0000 OSBoolean::OSBoolean(OSMetaClass const*) | |
| [ 3958] 3958 X Code 0xffffff8000837e10 0x0000000000000040 0x000f0000 OSBoolean::OSBoolean() | |
| [ 3959] 3959 X Code 0xffffff8000837d80 0x0000000000000020 0x000f0000 OSBoolean::OSBoolean(OSMetaClass const*) | |
| [ 3960] 3960 X Code 0xffffff8000837e50 0x0000000000000040 0x000f0000 OSBoolean::OSBoolean() | |
| [ 3961] 3961 X Code 0xffffff8000837470 0x0000000000000040 0x000f0000 OSBoolean::~OSBoolean() | |
| [ 3962] 3962 X Code 0xffffff8000837460 0x0000000000000010 0x000f0000 OSBoolean::~OSBoolean() | |
| [ 3963] 3963 X Code 0xffffff8000837dc0 0x0000000000000010 0x000f0000 OSBoolean::~OSBoolean() | |
| [ 3964] 3964 X Code 0xffffff80008e1190 0x0000000000000010 0x000f0000 IOMachPort::getMetaClass() const | |
| [ 3965] 3965 X Code 0xffffff80008e1440 0x0000000000000050 0x000f0000 IOMachPort::MetaClass::alloc() const | |
| [ 3966] 3966 X Code 0xffffff800089a8e0 0x0000000000000010 0x000f0000 IONotifier::getMetaClass() const | |
| [ 3967] 3967 X Code 0xffffff800089ab50 0x0000000000000010 0x000f0000 IONotifier::MetaClass::alloc() const | |
| [ 3968] 3968 X Code 0xffffff80008f62c0 0x0000000000000010 0x000f0000 IOReporter::getMetaClass() const | |
| [ 3969] 3969 X Code 0xffffff80008f7690 0x0000000000000050 0x000f0000 IOReporter::MetaClass::alloc() const | |
| [ 3970] 3970 X Code 0xffffff80008b9c20 0x0000000000000010 0x000f0000 IOWorkLoop::getMetaClass() const | |
| [ 3971] 3971 X Code 0xffffff80008ba6a0 0x0000000000000070 0x000f0000 IOWorkLoop::enableAllInterrupts() const | |
| [ 3972] 3972 X Code 0xffffff80008ba710 0x0000000000000070 0x000f0000 IOWorkLoop::disableAllInterrupts() const | |
| [ 3973] 3973 X Code 0xffffff80008ba5c0 0x0000000000000070 0x000f0000 IOWorkLoop::enableAllEventSources() const | |
| [ 3974] 3974 X Code 0xffffff80008ba630 0x0000000000000070 0x000f0000 IOWorkLoop::disableAllEventSources() const | |
| [ 3975] 3975 X Code 0xffffff80008ba4a0 0x0000000000000020 0x000f0000 IOWorkLoop::inGate() const | |
| [ 3976] 3976 X Code 0xffffff80008ba480 0x0000000000000020 0x000f0000 IOWorkLoop::onThread() const | |
| [ 3977] 3977 X Code 0xffffff80008bb2d0 0x0000000000000050 0x000f0000 IOWorkLoop::MetaClass::alloc() const | |
| [ 3978] 3978 X Code 0xffffff80008ba470 0x0000000000000010 0x000f0000 IOWorkLoop::getThread() const | |
| [ 3979] 3979 X Code 0xffffff800083c1d0 0x0000000000000010 0x000f0000 OSIterator::getMetaClass() const | |
| [ 3980] 3980 X Code 0xffffff800083c500 0x0000000000000010 0x000f0000 OSIterator::MetaClass::alloc() const | |
| [ 3981] 3981 X Code 0xffffff80008b3470 0x0000000000000010 0x000f0000 IOCatalogue::getMetaClass() const | |
| [ 3982] 3982 X Code 0xffffff80008b48c0 0x0000000000000020 0x000f0000 IOCatalogue::unloadModule(OSString*) const | |
| [ 3983] 3983 X Code 0xffffff80008b50d0 0x0000000000000010 0x000f0000 IOCatalogue::serializeData(unsigned int, OSSerialize*) const | |
| [ 3984] 3984 X Code 0xffffff80008b4560 0x0000000000000100 0x000f0000 IOCatalogue::isModuleLoaded(OSDictionary*) const | |
| [ 3985] 3985 X Code 0xffffff80008b44b0 0x0000000000000060 0x000f0000 IOCatalogue::isModuleLoaded(OSString*) const | |
| [ 3986] 3986 X Code 0xffffff80008b4510 0x0000000000000050 0x000f0000 IOCatalogue::isModuleLoaded(char const*) const | |
| [ 3987] 3987 X Code 0xffffff80008b3f10 0x0000000000000010 0x000f0000 IOCatalogue::getGenerationCount() const | |
| [ 3988] 3988 X Code 0xffffff80008b3700 0x0000000000000050 0x000f0000 IOCatalogue::MetaClass::alloc() const | |
| [ 3989] 3989 X Code 0xffffff80008b3450 0x0000000000000020 0x000f0000 IOCatalogue::serialize(OSSerialize*) const | |
| [ 3990] 3990 X Code 0xffffff80008eeb80 0x0000000000000010 0x000f0000 IODataQueue::getMetaClass() const | |
| [ 3991] 3991 X Code 0xffffff80008ef110 0x0000000000000050 0x000f0000 IODataQueue::MetaClass::alloc() const | |
| [ 3992] 3992 X Code 0xffffff80008cf190 0x0000000000000010 0x000f0000 IOMemoryMap::getMetaClass() const | |
| [ 3993] 3993 X Code 0xffffff80008cf1a0 0x0000000000000090 0x000f0000 IOMemoryMap::taggedRelease(void const*) const | |
| [ 3994] 3994 X Code 0xffffff80008d0220 0x0000000000000050 0x000f0000 IOMemoryMap::MetaClass::alloc() const | |
| [ 3995] 3995 X Code 0xffffff800089e840 0x0000000000000010 0x000f0000 IOPMRequest::getMetaClass() const | |
| [ 3996] 3996 X Code 0xffffff800089eab0 0x0000000000000050 0x000f0000 IOPMRequest::MetaClass::alloc() const | |
| [ 3997] 3997 X Code 0xffffff8000899d60 0x0000000000000040 0x000f0000 IOResources::getWorkLoop() const | |
| [ 3998] 3998 X Code 0xffffff8000899880 0x0000000000000010 0x000f0000 IOResources::getMetaClass() const | |
| [ 3999] 3999 X Code 0xffffff800089a590 0x0000000000000050 0x000f0000 IOResources::MetaClass::alloc() const | |
| [ 4000] 4000 X Code 0xffffff800089fa40 0x0000000000000010 0x000f0000 IOServicePM::getMetaClass() const | |
| [ 4001] 4001 X Code 0xffffff800089fa50 0x00000000000004d0 0x000f0000 IOServicePM::gatedSerialize(OSSerialize*) const | |
| [ 4002] 4002 X Code 0xffffff80008acb90 0x0000000000000040 0x000f0000 IOServicePM::pmPrint(unsigned int, unsigned long, unsigned long) const | |
| [ 4003] 4003 X Code 0xffffff80008acaa0 0x00000000000000f0 0x000f0000 IOServicePM::pmTrace(unsigned int, unsigned int, unsigned long, unsigned long) const | |
| [ 4004] 4004 X Code 0xffffff80008a0180 0x0000000000000050 0x000f0000 IOServicePM::MetaClass::alloc() const | |
| [ 4005] 4005 X Code 0xffffff800089f9d0 0x0000000000000070 0x000f0000 IOServicePM::serialize(OSSerialize*) const | |
| [ 4006] 4006 X Code 0xffffff8000834890 0x00000000000000a0 0x000f0000 OSMetaClass::addInstance(OSObject const*, bool) const | |
| [ 4007] 4007 X Code 0xffffff80008350d0 0x0000000000000030 0x000f0000 OSMetaClass::getKmodName() const | |
| [ 4008] 4008 X Code 0xffffff80008341e0 0x0000000000000020 0x000f0000 OSMetaClass::getClassName() const | |
| [ 4009] 4009 X Code 0xffffff8000834210 0x0000000000000010 0x000f0000 OSMetaClass::getClassSize() const | |
| [ 4010] 4010 X Code 0xffffff80008336d0 0x0000000000000010 0x000f0000 OSMetaClass::getMetaClass() const | |
| [ 4011] 4011 X Code 0xffffff80008336e0 0x0000000000000010 0x000f0000 OSMetaClass::taggedRetain(void const*) const | |
| [ 4012] 4012 X Code 0xffffff8000833ce0 0x0000000000000040 0x000f0000 OSMetaClass::checkMetaCast(OSMetaClassBase const*) const | |
| [ 4013] 4013 X Code 0xffffff80008350c0 0x0000000000000010 0x000f0000 OSMetaClass::getSuperClass() const | |
| [ 4014] 4014 X Code 0xffffff80008336f0 0x0000000000000010 0x000f0000 OSMetaClass::taggedRelease(void const*) const | |
| [ 4015] 4015 X Code 0xffffff8000833700 0x0000000000000010 0x000f0000 OSMetaClass::taggedRelease(void const*, int) const | |
| [ 4016] 4016 X Code 0xffffff8000833680 0x0000000000000010 0x000f0000 OSMetaClass::getRetainCount() const | |
| [ 4017] 4017 X Code 0xffffff8000834930 0x00000000000000c0 0x000f0000 OSMetaClass::removeInstance(OSObject const*, bool) const | |
| [ 4018] 4018 X Code 0xffffff8000835080 0x0000000000000040 0x000f0000 OSMetaClass::reservedCalled(int) const | |
| [ 4019] 4019 X Code 0xffffff8000834c30 0x0000000000000050 0x000f0000 OSMetaClass::applyToInstances(bool (*)(OSObject const*, void*), void*) const | |
| [ 4020] 4020 X Code 0xffffff8000835100 0x0000000000000010 0x000f0000 OSMetaClass::getInstanceCount() const | |
| [ 4021] 4021 X Code 0xffffff8000834200 0x0000000000000010 0x000f0000 OSMetaClass::getClassNameSymbol() const | |
| [ 4022] 4022 X Code 0xffffff80008347b0 0x0000000000000090 0x000f0000 OSMetaClass::instanceDestructed() const | |
| [ 4023] 4023 X Code 0xffffff8000834780 0x0000000000000030 0x000f0000 OSMetaClass::instanceConstructed() const | |
| [ 4024] 4024 X Code 0xffffff8000833690 0x0000000000000010 0x000f0000 OSMetaClass::retain() const | |
| [ 4025] 4025 X Code 0xffffff8000833670 0x0000000000000010 0x000f0000 OSMetaClass::release(int) const | |
| [ 4026] 4026 X Code 0xffffff80008336a0 0x0000000000000010 0x000f0000 OSMetaClass::release() const | |
| [ 4027] 4027 X Code 0xffffff80008336b0 0x0000000000000020 0x000f0000 OSMetaClass::serialize(OSSerialize*) const | |
| [ 4028] 4028 X Code 0xffffff8000854f30 0x0000000000000010 0x000f0000 OSSerialize::getCapacity() const | |
| [ 4029] 4029 X Code 0xffffff80008549a0 0x0000000000000010 0x000f0000 OSSerialize::getMetaClass() const | |
| [ 4030] 4030 X Code 0xffffff8000854f40 0x0000000000000010 0x000f0000 OSSerialize::getCapacityIncrement() const | |
| [ 4031] 4031 X Code 0xffffff8000854a20 0x0000000000000010 0x000f0000 OSSerialize::text() const | |
| [ 4032] 4032 X Code 0xffffff8000855400 0x0000000000000050 0x000f0000 OSSerialize::MetaClass::alloc() const | |
| [ 4033] 4033 X Code 0xffffff8000854f20 0x0000000000000010 0x000f0000 OSSerialize::getLength() const | |
| [ 4034] 4034 X Code 0xffffff80008c3300 0x0000000000000010 0x000f0000 IODMACommand::getMetaClass() const | |
| [ 4035] 4035 X Code 0xffffff80008c3690 0x0000000000000010 0x000f0000 IODMACommand::getMemoryDescriptor() const | |
| [ 4036] 4036 X Code 0xffffff80008c57d0 0x0000000000000020 0x000f0000 IODMACommand::getIOMemoryDescriptor() const | |
| [ 4037] 4037 X Code 0xffffff80008c52b0 0x0000000000000050 0x000f0000 IODMACommand::MetaClass::alloc() const | |
| [ 4038] 4038 X Code 0xffffff80008b1ab0 0x0000000000000010 0x000f0000 IOPMinformee::getMetaClass() const | |
| [ 4039] 4039 X Code 0xffffff80008b1d60 0x0000000000000050 0x000f0000 IOPMinformee::MetaClass::alloc() const | |
| [ 4040] 4040 X Code 0xffffff800090a630 0x00000000000002c0 0x000f0000 IORootParent::copyProperty(char const*) const | |
| [ 4041] 4041 X Code 0xffffff800090a620 0x0000000000000010 0x000f0000 IORootParent::getMetaClass() const | |
| [ 4042] 4042 X Code 0xffffff800090fa20 0x0000000000000050 0x000f0000 IORootParent::MetaClass::alloc() const | |
| [ 4043] 4043 X Code 0xffffff80008e2df0 0x0000000000000010 0x000f0000 IOUserClient::getMetaClass() const | |
| [ 4044] 4044 X Code 0xffffff80008e5500 0x0000000000000010 0x000f0000 IOUserClient::MetaClass::alloc() const | |
| [ 4045] 4045 X Code 0xffffff8000837f00 0x0000000000000010 0x000f0000 OSCollection::getMetaClass() const | |
| [ 4046] 4046 X Code 0xffffff8000838300 0x0000000000000010 0x000f0000 OSCollection::MetaClass::alloc() const | |
| [ 4047] 4047 X Code 0xffffff800083a720 0x0000000000000010 0x000f0000 OSDictionary::getCapacity() const | |
| [ 4048] 4048 X Code 0xffffff800083a5f0 0x0000000000000010 0x000f0000 OSDictionary::getMetaClass() const | |
| [ 4049] 4049 X Code 0xffffff800083a6d0 0x0000000000000010 0x000f0000 OSDictionary::initIterator(void*) const | |
| [ 4050] 4050 X Code 0xffffff800083a6c0 0x0000000000000010 0x000f0000 OSDictionary::iteratorSize() const | |
| [ 4051] 4051 X Code 0xffffff800083a730 0x0000000000000010 0x000f0000 OSDictionary::getCapacityIncrement() const | |
| [ 4052] 4052 X Code 0xffffff800083a6e0 0x0000000000000030 0x000f0000 OSDictionary::getNextObjectForIterator(void*, OSObject**) const | |
| [ 4053] 4053 X Code 0xffffff800083a710 0x0000000000000010 0x000f0000 OSDictionary::getCount() const | |
| [ 4054] 4054 X Code 0xffffff800083bb90 0x0000000000000050 0x000f0000 OSDictionary::MetaClass::alloc() const | |
| [ 4055] 4055 X Code 0xffffff800083b330 0x0000000000000040 0x000f0000 OSDictionary::getObject(OSString const*) const | |
| [ 4056] 4056 X Code 0xffffff800083b270 0x00000000000000c0 0x000f0000 OSDictionary::getObject(OSSymbol const*) const | |
| [ 4057] 4057 X Code 0xffffff800083b370 0x0000000000000040 0x000f0000 OSDictionary::getObject(char const*) const | |
| [ 4058] 4058 X Code 0xffffff800083a600 0x0000000000000060 0x000f0000 OSDictionary::isEqualTo(OSMetaClassBase const*) const | |
| [ 4059] 4059 X Code 0xffffff800083b4d0 0x00000000000000a0 0x000f0000 OSDictionary::isEqualTo(OSDictionary const*) const | |
| [ 4060] 4060 X Code 0xffffff800083b3b0 0x0000000000000120 0x000f0000 OSDictionary::isEqualTo(OSDictionary const*, OSCollection const*) const | |
| [ 4061] 4061 X Code 0xffffff800083a3f0 0x0000000000000200 0x000f0000 OSDictionary::serialize(OSSerialize*) const | |
| [ 4062] 4062 X Code 0xffffff8000852a40 0x0000000000000010 0x000f0000 OSOrderedSet::getCapacity() const | |
| [ 4063] 4063 X Code 0xffffff8000852910 0x0000000000000010 0x000f0000 OSOrderedSet::getMetaClass() const | |
| [ 4064] 4064 X Code 0xffffff80008529f0 0x0000000000000010 0x000f0000 OSOrderedSet::initIterator(void*) const | |
| [ 4065] 4065 X Code 0xffffff80008529e0 0x0000000000000010 0x000f0000 OSOrderedSet::iteratorSize() const | |
| [ 4066] 4066 X Code 0xffffff8000853130 0x0000000000000020 0x000f0000 OSOrderedSet::getLastObject() const | |
| [ 4067] 4067 X Code 0xffffff80008530b0 0x0000000000000020 0x000f0000 OSOrderedSet::containsObject(OSMetaClassBase const*) const | |
| [ 4068] 4068 X Code 0xffffff8000853110 0x0000000000000020 0x000f0000 OSOrderedSet::getFirstObject() const | |
| [ 4069] 4069 X Code 0xffffff8000852a50 0x0000000000000010 0x000f0000 OSOrderedSet::getCapacityIncrement() const | |
| [ 4070] 4070 X Code 0xffffff8000852a00 0x0000000000000030 0x000f0000 OSOrderedSet::getNextObjectForIterator(void*, OSObject**) const | |
| [ 4071] 4071 X Code 0xffffff80008530d0 0x0000000000000040 0x000f0000 OSOrderedSet::member(OSMetaClassBase const*) const | |
| [ 4072] 4072 X Code 0xffffff8000852a30 0x0000000000000010 0x000f0000 OSOrderedSet::getCount() const | |
| [ 4073] 4073 X Code 0xffffff80008537b0 0x0000000000000050 0x000f0000 OSOrderedSet::MetaClass::alloc() const | |
| [ 4074] 4074 X Code 0xffffff8000853310 0x0000000000000020 0x000f0000 OSOrderedSet::getObject(unsigned int) const | |
| [ 4075] 4075 X Code 0xffffff8000852920 0x0000000000000060 0x000f0000 OSOrderedSet::isEqualTo(OSMetaClassBase const*) const | |
| [ 4076] 4076 X Code 0xffffff8000853340 0x0000000000000090 0x000f0000 OSOrderedSet::isEqualTo(OSOrderedSet const*) const | |
| [ 4077] 4077 X Code 0xffffff80008554c0 0x0000000000000010 0x000f0000 OSSerializer::getMetaClass() const | |
| [ 4078] 4078 X Code 0xffffff8000855730 0x0000000000000050 0x000f0000 OSSerializer::MetaClass::alloc() const | |
| [ 4079] 4079 X Code 0xffffff80008554a0 0x0000000000000020 0x000f0000 OSSerializer::serialize(OSSerialize*) const | |
| [ 4080] 4080 X Code 0xffffff8000859560 0x0000000000000160 0x000f0000 OSSymbolPool::findSymbol(char const*) const | |
| [ 4081] 4081 X Code 0xffffff80009025e0 0x0000000000000010 0x000f0000 PMHaltWorker::getMetaClass() const | |
| [ 4082] 4082 X Code 0xffffff80009028e0 0x0000000000000050 0x000f0000 PMHaltWorker::MetaClass::alloc() const | |
| [ 4083] 4083 X Code 0xffffff80008bd3d0 0x0000000000000010 0x000f0000 IOCommandGate::getMetaClass() const | |
| [ 4084] 4084 X Code 0xffffff80008bdf60 0x0000000000000050 0x000f0000 IOCommandGate::MetaClass::alloc() const | |
| [ 4085] 4085 X Code 0xffffff80008be960 0x0000000000000010 0x000f0000 IOCommandPool::getMetaClass() const | |
| [ 4086] 4086 X Code 0xffffff80008befb0 0x0000000000000050 0x000f0000 IOCommandPool::MetaClass::alloc() const | |
| [ 4087] 4087 X Code 0xffffff80008bb9d0 0x0000000000000010 0x000f0000 IOEventSource::getWorkLoop() const | |
| [ 4088] 4088 X Code 0xffffff80008bb830 0x0000000000000010 0x000f0000 IOEventSource::getMetaClass() const | |
| [ 4089] 4089 X Code 0xffffff80008bb960 0x0000000000000010 0x000f0000 IOEventSource::getNext() const | |
| [ 4090] 4090 X Code 0xffffff80008bb9e0 0x0000000000000020 0x000f0000 IOEventSource::onThread() const | |
| [ 4091] 4091 X Code 0xffffff80008bbde0 0x0000000000000010 0x000f0000 IOEventSource::MetaClass::alloc() const | |
| [ 4092] 4092 X Code 0xffffff80008bb980 0x0000000000000010 0x000f0000 IOEventSource::getAction() const | |
| [ 4093] 4093 X Code 0xffffff80008bb9c0 0x0000000000000010 0x000f0000 IOEventSource::isEnabled() const | |
| [ 4094] 4094 X Code 0xffffff800089f000 0x0000000000000010 0x000f0000 IOPMWorkQueue::getMetaClass() const | |
| [ 4095] 4095 X Code 0xffffff800089f540 0x0000000000000050 0x000f0000 IOPMWorkQueue::MetaClass::alloc() const | |
| [ 4096] 4096 X Code 0xffffff800090e800 0x0000000000000010 0x000f0000 PMTraceWorker::getMetaClass() const | |
| [ 4097] 4097 X Code 0xffffff800090ea70 0x0000000000000050 0x000f0000 PMTraceWorker::MetaClass::alloc() const | |
| [ 4098] 4098 X Code 0xffffff800090e7b0 0x0000000000000050 0x000f0000 PMTraceWorker::serialize(OSSerialize*) const | |
| [ 4099] 4099 X Code 0xffffff8000898220 0x0000000000000010 0x000f0000 _IOServiceJob::getMetaClass() const | |
| [ 4100] 4100 X Code 0xffffff80008997e0 0x0000000000000050 0x000f0000 _IOServiceJob::MetaClass::alloc() const | |
| [ 4101] 4101 X Code 0xffffff80008c7900 0x0000000000000010 0x000f0000 IOMemoryCursor::getMetaClass() const | |
| [ 4102] 4102 X Code 0xffffff80008c7e10 0x0000000000000050 0x000f0000 IOMemoryCursor::MetaClass::alloc() const | |
| [ 4103] 4103 X Code 0xffffff8000902990 0x0000000000000490 0x000f0000 IOPMrootDomain::copyProperty(char const*) const | |
| [ 4104] 4104 X Code 0xffffff8000902980 0x0000000000000010 0x000f0000 IOPMrootDomain::getMetaClass() const | |
| [ 4105] 4105 X Code 0xffffff8000902e20 0x0000000000000030 0x000f0000 IOPMrootDomain::serializeProperties(OSSerialize*) const | |
| [ 4106] 4106 X Code 0xffffff800090e460 0x0000000000000050 0x000f0000 IOPMrootDomain::MetaClass::alloc() const | |
| [ 4107] 4107 X Code 0xffffff80008fb430 0x0000000000000010 0x000f0000 IOReportLegend::getMetaClass() const | |
| [ 4108] 4108 X Code 0xffffff80008fb6e0 0x0000000000000050 0x000f0000 IOReportLegend::MetaClass::alloc() const | |
| [ 4109] 4109 X Code 0xffffff80008e14e0 0x0000000000000010 0x000f0000 IOUserIterator::getMetaClass() const | |
| [ 4110] 4110 X Code 0xffffff80008e18c0 0x0000000000000050 0x000f0000 IOUserIterator::MetaClass::alloc() const | |
| [ 4111] 4111 X Code 0xffffff8000884420 0x0000000000000010 0x000f0000 IOConditionLock::getCondition() const | |
| [ 4112] 4112 X Code 0xffffff80008841d0 0x0000000000000010 0x000f0000 IOConditionLock::getMetaClass() const | |
| [ 4113] 4113 X Code 0xffffff8000884410 0x0000000000000010 0x000f0000 IOConditionLock::getInterruptible() const | |
| [ 4114] 4114 X Code 0xffffff8000884790 0x0000000000000050 0x000f0000 IOConditionLock::MetaClass::alloc() const | |
| [ 4115] 4115 X Code 0xffffff80008dea50 0x0000000000000010 0x000f0000 IODMAController::getMetaClass() const | |
| [ 4116] 4116 X Code 0xffffff80008dee00 0x0000000000000010 0x000f0000 IODMAController::MetaClass::alloc() const | |
| [ 4117] 4117 X Code 0xffffff80008b5130 0x0000000000000010 0x000f0000 IOPMPowerSource::getMetaClass() const | |
| [ 4118] 4118 X Code 0xffffff80008b57e0 0x0000000000000050 0x000f0000 IOPMPowerSource::MetaClass::alloc() const | |
| [ 4119] 4119 X Code 0xffffff80008d6d70 0x0000000000000010 0x000f0000 IOPanicPlatform::getMetaClass() const | |
| [ 4120] 4120 X Code 0xffffff80008d7020 0x0000000000000050 0x000f0000 IOPanicPlatform::MetaClass::alloc() const | |
| [ 4121] 4121 X Code 0xffffff800088aab0 0x0000000000000060 0x000f0000 IORegistryEntry::compareName(OSString*, OSString**) const | |
| [ 4122] 4122 X Code 0xffffff800088ac60 0x0000000000000040 0x000f0000 IORegistryEntry::getLocation(IORegistryPlane const*) const | |
| [ 4123] 4123 X Code 0xffffff8000889220 0x0000000000000040 0x000f0000 IORegistryEntry::getProperty(OSString const*) const | |
| [ 4124] 4124 X Code 0xffffff8000889340 0x00000000000000a0 0x000f0000 IORegistryEntry::getProperty(OSString const*, IORegistryPlane const*, unsigned int) const | |
| [ 4125] 4125 X Code 0xffffff8000889190 0x0000000000000090 0x000f0000 IORegistryEntry::getProperty(OSSymbol const*) const | |
| [ 4126] 4126 X Code 0xffffff80008892a0 0x00000000000000a0 0x000f0000 IORegistryEntry::getProperty(OSSymbol const*, IORegistryPlane const*, unsigned int) const | |
| [ 4127] 4127 X Code 0xffffff8000889260 0x0000000000000040 0x000f0000 IORegistryEntry::getProperty(char const*) const | |
| [ 4128] 4128 X Code 0xffffff80008893e0 0x00000000000000a0 0x000f0000 IORegistryEntry::getProperty(char const*, IORegistryPlane const*, unsigned int) const | |
| [ 4129] 4129 X Code 0xffffff800088a990 0x0000000000000120 0x000f0000 IORegistryEntry::compareNames(OSObject*, OSString**) const | |
| [ 4130] 4130 X Code 0xffffff800088aca0 0x0000000000000080 0x000f0000 IORegistryEntry::copyLocation(IORegistryPlane const*) const | |
| [ 4131] 4131 X Code 0xffffff8000889510 0x0000000000000090 0x000f0000 IORegistryEntry::copyProperty(OSString const*) const | |
| [ 4132] 4132 X Code 0xffffff80008881e0 0x00000000000000a0 0x000f0000 IORegistryEntry::copyProperty(OSString const*, IORegistryPlane const*, unsigned int) const | |
| [ 4133] 4133 X Code 0xffffff8000889480 0x0000000000000090 0x000f0000 IORegistryEntry::copyProperty(OSSymbol const*) const | |
| [ 4134] 4134 X Code 0xffffff8000888280 0x00000000000000a0 0x000f0000 IORegistryEntry::copyProperty(OSSymbol const*, IORegistryPlane const*, unsigned int) const | |
| [ 4135] 4135 X Code 0xffffff80008895a0 0x0000000000000090 0x000f0000 IORegistryEntry::copyProperty(char const*) const | |
| [ 4136] 4136 X Code 0xffffff8000888140 0x00000000000000a0 0x000f0000 IORegistryEntry::copyProperty(char const*, IORegistryPlane const*, unsigned int) const | |
| [ 4137] 4137 X Code 0xffffff8000888040 0x0000000000000010 0x000f0000 IORegistryEntry::getMetaClass() const | |
| [ 4138] 4138 X Code 0xffffff800088dce0 0x0000000000000070 0x000f0000 IORegistryEntry::getChildCount(IORegistryPlane const*) const | |
| [ 4139] 4139 X Code 0xffffff8000889a90 0x0000000000000030 0x000f0000 IORegistryEntry::getChildEntry(IORegistryPlane const*) const | |
| [ 4140] 4140 X Code 0xffffff8000889820 0x00000000000000d0 0x000f0000 IORegistryEntry::applyToParents(void (*)(IORegistryEntry*, void*), void*, IORegistryPlane const*) const | |
| [ 4141] 4141 X Code 0xffffff8000888390 0x0000000000000070 0x000f0000 IORegistryEntry::copyChildEntry(IORegistryPlane const*) const | |
| [ 4142] 4142 X Code 0xffffff80008898f0 0x0000000000000030 0x000f0000 IORegistryEntry::getParentEntry(IORegistryPlane const*) const | |
| [ 4143] 4143 X Code 0xffffff80008899c0 0x00000000000000d0 0x000f0000 IORegistryEntry::applyToChildren(void (*)(IORegistryEntry*, void*), void*, IORegistryPlane const*) const | |
| [ 4144] 4144 X Code 0xffffff8000888320 0x0000000000000070 0x000f0000 IORegistryEntry::copyParentEntry(IORegistryPlane const*) const | |
| [ 4145] 4145 X Code 0xffffff800088dc40 0x0000000000000080 0x000f0000 IORegistryEntry::copyPropertyKeys() const | |
| [ 4146] 4146 X Code 0xffffff8000889920 0x00000000000000a0 0x000f0000 IORegistryEntry::getChildIterator(IORegistryPlane const*) const | |
| [ 4147] 4147 X Code 0xffffff800088b1e0 0x0000000000000170 0x000f0000 IORegistryEntry::getPathComponent(char*, int*, IORegistryPlane const*) const | |
| [ 4148] 4148 X Code 0xffffff800088dc30 0x0000000000000010 0x000f0000 IORegistryEntry::getPropertyTable() const | |
| [ 4149] 4149 X Code 0xffffff8000889780 0x00000000000000a0 0x000f0000 IORegistryEntry::getParentIterator(IORegistryPlane const*) const | |
| [ 4150] 4150 X Code 0xffffff80008896c0 0x00000000000000b0 0x000f0000 IORegistryEntry::serializeProperties(OSSerialize*) const | |
| [ 4151] 4151 X Code 0xffffff800088dc10 0x0000000000000020 0x000f0000 IORegistryEntry::getChildSetReference(IORegistryPlane const*) const | |
| [ 4152] 4152 X Code 0xffffff800088db30 0x0000000000000020 0x000f0000 IORegistryEntry::getParentSetReference(IORegistryPlane const*) const | |
| [ 4153] 4153 X Code 0xffffff8000889630 0x0000000000000090 0x000f0000 IORegistryEntry::dictionaryWithProperties() const | |
| [ 4154] 4154 X Code 0xffffff800088d860 0x0000000000000010 0x000f0000 IORegistryEntry::getRegistryEntryGenerationCount() const | |
| [ 4155] 4155 X Code 0xffffff800088a840 0x00000000000000a0 0x000f0000 IORegistryEntry::getName(IORegistryPlane const*) const | |
| [ 4156] 4156 X Code 0xffffff800088ade0 0x0000000000000400 0x000f0000 IORegistryEntry::getPath(char*, int*, IORegistryPlane const*) const | |
| [ 4157] 4157 X Code 0xffffff8000889d40 0x00000000000001c0 0x000f0000 IORegistryEntry::inPlane(IORegistryPlane const*) const | |
| [ 4158] 4158 X Code 0xffffff8000889ac0 0x0000000000000140 0x000f0000 IORegistryEntry::isChild(IORegistryEntry*, IORegistryPlane const*, bool) const | |
| [ 4159] 4159 X Code 0xffffff800088a8e0 0x00000000000000b0 0x000f0000 IORegistryEntry::copyName(IORegistryPlane const*) const | |
| [ 4160] 4160 X Code 0xffffff8000889f00 0x0000000000000100 0x000f0000 IORegistryEntry::getDepth(IORegistryPlane const*) const | |
| [ 4161] 4161 X Code 0xffffff800088bf70 0x0000000000000140 0x000f0000 IORegistryEntry::hasAlias(IORegistryPlane const*, char*, int*) const | |
| [ 4162] 4162 X Code 0xffffff8000889c00 0x0000000000000140 0x000f0000 IORegistryEntry::isParent(IORegistryEntry*, IORegistryPlane const*, bool) const | |
| [ 4163] 4163 X Code 0xffffff800088b6d0 0x0000000000000100 0x000f0000 IORegistryEntry::makeLink(IORegistryEntry*, unsigned int, IORegistryPlane const*) const | |
| [ 4164] 4164 X Code 0xffffff800088c880 0x0000000000000050 0x000f0000 IORegistryEntry::MetaClass::alloc() const | |
| [ 4165] 4165 X Code 0xffffff800088db50 0x00000000000000c0 0x000f0000 IORegistryEntry::breakLink(IORegistryEntry*, unsigned int, IORegistryPlane const*) const | |
| [ 4166] 4166 X Code 0xffffff800088c940 0x0000000000000010 0x000f0000 IORegistryPlane::getMetaClass() const | |
| [ 4167] 4167 X Code 0xffffff800088cbb0 0x0000000000000050 0x000f0000 IORegistryPlane::MetaClass::alloc() const | |
| [ 4168] 4168 X Code 0xffffff800088c920 0x0000000000000020 0x000f0000 IORegistryPlane::serialize(OSSerialize*) const | |
| [ 4169] 4169 X Code 0xffffff8000900060 0x0000000000000010 0x000f0000 IOSKMemoryArray::getMetaClass() const | |
| [ 4170] 4170 X Code 0xffffff80009002d0 0x0000000000000050 0x000f0000 IOSKMemoryArray::MetaClass::alloc() const | |
| [ 4171] 4171 X Code 0xffffff80008f89c0 0x0000000000000010 0x000f0000 IOStateReporter::getMetaClass() const | |
| [ 4172] 4172 X Code 0xffffff80008f97c0 0x0000000000000050 0x000f0000 IOStateReporter::MetaClass::alloc() const | |
| [ 4173] 4173 X Code 0xffffff80008ff8b0 0x0000000000000010 0x000f0000 IOWatchDogTimer::getMetaClass() const | |
| [ 4174] 4174 X Code 0xffffff80008ffdd0 0x0000000000000010 0x000f0000 IOWatchDogTimer::MetaClass::alloc() const | |
| [ 4175] 4175 X Code 0xffffff8000833b30 0x0000000000000040 0x000f0000 OSMetaClassBase::metaCast(OSMetaClass const*) const | |
| [ 4176] 4176 X Code 0xffffff8000833e40 0x00000000000000b0 0x000f0000 OSMetaClassBase::metaCast(OSString const*) const | |
| [ 4177] 4177 X Code 0xffffff8000833d20 0x0000000000000090 0x000f0000 OSMetaClassBase::metaCast(OSSymbol const*) const | |
| [ 4178] 4178 X Code 0xffffff8000833ef0 0x00000000000000b0 0x000f0000 OSMetaClassBase::metaCast(char const*) const | |
| [ 4179] 4179 X Code 0xffffff8000833480 0x0000000000000010 0x000f0000 OSMetaClassBase::isEqualTo(OSMetaClassBase const*) const | |
| [ 4180] 4180 X Code 0xffffff8000833710 0x0000000000000010 0x000f0000 OSMetaClassMeta::alloc() const | |
| [ 4181] 4181 X Code 0xffffff800090eb10 0x0000000000000010 0x000f0000 PMSettingHandle::getMetaClass() const | |
| [ 4182] 4182 X Code 0xffffff800090efc0 0x0000000000000050 0x000f0000 PMSettingHandle::MetaClass::alloc() const | |
| [ 4183] 4183 X Code 0xffffff800090f060 0x0000000000000010 0x000f0000 PMSettingObject::getMetaClass() const | |
| [ 4184] 4184 X Code 0xffffff800090f770 0x0000000000000050 0x000f0000 PMSettingObject::MetaClass::alloc() const | |
| [ 4185] 4185 X Code 0xffffff8000898180 0x0000000000000010 0x000f0000 _IOConfigThread::getMetaClass() const | |
| [ 4186] 4186 X Code 0xffffff8000899530 0x0000000000000050 0x000f0000 _IOConfigThread::MetaClass::alloc() const | |
| [ 4187] 4187 X Code 0xffffff80008bf430 0x0000000000000010 0x000f0000 IODMAEventSource::getMetaClass() const | |
| [ 4188] 4188 X Code 0xffffff80008bfc20 0x0000000000000050 0x000f0000 IODMAEventSource::MetaClass::alloc() const | |
| [ 4189] 4189 X Code 0xffffff80008edbd0 0x0000000000000010 0x000f0000 IOKitDiagnostics::getMetaClass() const | |
| [ 4190] 4190 X Code 0xffffff80008ede40 0x0000000000000050 0x000f0000 IOKitDiagnostics::MetaClass::alloc() const | |
| [ 4191] 4191 X Code 0xffffff80008eda90 0x0000000000000140 0x000f0000 IOKitDiagnostics::serialize(OSSerialize*) const | |
| [ 4192] 4192 X Code 0xffffff800089eb50 0x0000000000000010 0x000f0000 IOPMRequestQueue::getMetaClass() const | |
| [ 4193] 4193 X Code 0xffffff800089ef60 0x0000000000000050 0x000f0000 IOPMRequestQueue::MetaClass::alloc() const | |
| [ 4194] 4194 X Code 0xffffff80008b2170 0x0000000000000010 0x000f0000 IOPMinformeeList::getMetaClass() const | |
| [ 4195] 4195 X Code 0xffffff80008b2430 0x0000000000000050 0x000f0000 IOPMinformeeList::MetaClass::alloc() const | |
| [ 4196] 4196 X Code 0xffffff80008d5390 0x0000000000000040 0x000f0000 IOPlatformDevice::compareName(OSString*, OSString**) const | |
| [ 4197] 4197 X Code 0xffffff80008d5380 0x0000000000000010 0x000f0000 IOPlatformDevice::getMetaClass() const | |
| [ 4198] 4198 X Code 0xffffff80008d6cd0 0x0000000000000050 0x000f0000 IOPlatformDevice::MetaClass::alloc() const | |
| [ 4199] 4199 X Code 0xffffff80008d3f80 0x0000000000000010 0x000f0000 IOPlatformExpert::getMetaClass() const | |
| [ 4200] 4200 X Code 0xffffff80008d4940 0x0000000000000070 0x000f0000 IOPlatformExpert::compareNubName(IOService const*, OSString*, OSString**) const | |
| [ 4201] 4201 X Code 0xffffff80008d5730 0x0000000000000050 0x000f0000 IOPlatformExpert::MetaClass::alloc() const | |
| [ 4202] 4202 X Code 0xffffff80008d2890 0x0000000000000010 0x000f0000 IORangeAllocator::getMetaClass() const | |
| [ 4203] 4203 X Code 0xffffff80008d3250 0x0000000000000050 0x000f0000 IORangeAllocator::MetaClass::alloc() const | |
| [ 4204] 4204 X Code 0xffffff80008d2770 0x0000000000000120 0x000f0000 IORangeAllocator::serialize(OSSerialize*) const | |
| [ 4205] 4205 X Code 0xffffff8000900370 0x0000000000000010 0x000f0000 IOSKMemoryBuffer::getMetaClass() const | |
| [ 4206] 4206 X Code 0xffffff80009005e0 0x0000000000000050 0x000f0000 IOSKMemoryBuffer::MetaClass::alloc() const | |
| [ 4207] 4207 X Code 0xffffff80008f8110 0x0000000000000010 0x000f0000 IOSimpleReporter::getMetaClass() const | |
| [ 4208] 4208 X Code 0xffffff80008f83a0 0x0000000000000050 0x000f0000 IOSimpleReporter::MetaClass::alloc() const | |
| [ 4209] 4209 X Code 0xffffff80008c82a0 0x0000000000000010 0x000f0000 IOBigMemoryCursor::getMetaClass() const | |
| [ 4210] 4210 X Code 0xffffff80008c85f0 0x0000000000000050 0x000f0000 IOBigMemoryCursor::MetaClass::alloc() const | |
| [ 4211] 4211 X Code 0xffffff80008b7640 0x0000000000000010 0x000f0000 IOPolledInterface::getMetaClass() const | |
| [ 4212] 4212 X Code 0xffffff80008b7bb0 0x0000000000000010 0x000f0000 IOPolledInterface::MetaClass::alloc() const | |
| [ 4213] 4213 X Code 0xffffff80008ff190 0x0000000000000010 0x000f0000 IOPowerConnection::getMetaClass() const | |
| [ 4214] 4214 X Code 0xffffff80008ff850 0x0000000000000010 0x000f0000 IOPowerConnection::getReadyFlag() const | |
| [ 4215] 4215 X Code 0xffffff80008ff400 0x0000000000000050 0x000f0000 IOPowerConnection::MetaClass::alloc() const | |
| [ 4216] 4216 X Code 0xffffff80008ef590 0x0000000000000010 0x000f0000 IOSharedDataQueue::getMetaClass() const | |
| [ 4217] 4217 X Code 0xffffff80008efe10 0x0000000000000050 0x000f0000 IOSharedDataQueue::MetaClass::alloc() const | |
| [ 4218] 4218 X Code 0xffffff80008d57d0 0x0000000000000010 0x000f0000 IODTPlatformExpert::getMetaClass() const | |
| [ 4219] 4219 X Code 0xffffff80008d5870 0x0000000000000080 0x000f0000 IODTPlatformExpert::compareNubName(IOService const*, OSString*, OSString**) const | |
| [ 4220] 4220 X Code 0xffffff80008d6390 0x0000000000000010 0x000f0000 IODTPlatformExpert::MetaClass::alloc() const | |
| [ 4221] 4221 X Code 0xffffff80008c9fd0 0x0000000000000010 0x000f0000 IOMemoryDescriptor::getDirection() const | |
| [ 4222] 4222 X Code 0xffffff80008c9770 0x0000000000000010 0x000f0000 IOMemoryDescriptor::getMetaClass() const | |
| [ 4223] 4223 X Code 0xffffff80008c9b50 0x0000000000000190 0x000f0000 IOMemoryDescriptor::dmaCommandOperation(unsigned int, void*, unsigned int) const | |
| [ 4224] 4224 X Code 0xffffff80008cfd00 0x0000000000000010 0x000f0000 IOMemoryDescriptor::MetaClass::alloc() const | |
| [ 4225] 4225 X Code 0xffffff80008c9fe0 0x0000000000000010 0x000f0000 IOMemoryDescriptor::getLength() const | |
| [ 4226] 4226 X Code 0xffffff800088c100 0x0000000000000010 0x000f0000 IORegistryIterator::getMetaClass() const | |
| [ 4227] 4227 X Code 0xffffff800088ce60 0x0000000000000050 0x000f0000 IORegistryIterator::MetaClass::alloc() const | |
| [ 4228] 4228 X Code 0xffffff80008c0d00 0x0000000000000010 0x000f0000 IOTimerEventSource::getMetaClass() const | |
| [ 4229] 4229 X Code 0xffffff80008c1790 0x0000000000000050 0x000f0000 IOTimerEventSource::MetaClass::alloc() const | |
| [ 4230] 4230 X Code 0xffffff80008e1960 0x0000000000000010 0x000f0000 IOUserNotification::getMetaClass() const | |
| [ 4231] 4231 X Code 0xffffff80008e1cb0 0x0000000000000010 0x000f0000 IOUserNotification::MetaClass::alloc() const | |
| [ 4232] 4232 X Code 0xffffff8000897a90 0x0000000000000010 0x000f0000 _IOServiceNotifier::getMetaClass() const | |
| [ 4233] 4233 X Code 0xffffff8000898c50 0x0000000000000050 0x000f0000 _IOServiceNotifier::MetaClass::alloc() const | |
| [ 4234] 4234 X Code 0xffffff80008fa470 0x0000000000000010 0x000f0000 IOHistogramReporter::getMetaClass() const | |
| [ 4235] 4235 X Code 0xffffff80008fae10 0x0000000000000050 0x000f0000 IOHistogramReporter::MetaClass::alloc() const | |
| [ 4236] 4236 X Code 0xffffff800089f5e0 0x0000000000000010 0x000f0000 IOPMCompletionQueue::getMetaClass() const | |
| [ 4237] 4237 X Code 0xffffff800089f930 0x0000000000000050 0x000f0000 IOPMCompletionQueue::MetaClass::alloc() const | |
| [ 4238] 4238 X Code 0xffffff80008b6f00 0x0000000000000010 0x000f0000 IOPMPowerSourceList::getMetaClass() const | |
| [ 4239] 4239 X Code 0xffffff80008b71d0 0x0000000000000050 0x000f0000 IOPMPowerSourceList::MetaClass::alloc() const | |
| [ 4240] 4240 X Code 0xffffff80008b2c20 0x0000000000000010 0x000f0000 IOPMPowerStateQueue::getMetaClass() const | |
| [ 4241] 4241 X Code 0xffffff80008b2fc0 0x0000000000000050 0x000f0000 IOPMPowerStateQueue::MetaClass::alloc() const | |
| [ 4242] 4242 X Code 0xffffff80008b7c10 0x0000000000000010 0x000f0000 IOPolledFilePollers::getMetaClass() const | |
| [ 4243] 4243 X Code 0xffffff80008b7e80 0x0000000000000050 0x000f0000 IOPolledFilePollers::MetaClass::alloc() const | |
| [ 4244] 4244 X Code 0xffffff8000901e30 0x0000000000000010 0x000f0000 PMAssertionsTracker::getMetaClass() const | |
| [ 4245] 4245 X Code 0xffffff8000902540 0x0000000000000050 0x000f0000 PMAssertionsTracker::MetaClass::alloc() const | |
| [ 4246] 4246 X Code 0xffffff80008c8690 0x0000000000000010 0x000f0000 IOLittleMemoryCursor::getMetaClass() const | |
| [ 4247] 4247 X Code 0xffffff80008c89e0 0x0000000000000050 0x000f0000 IOLittleMemoryCursor::MetaClass::alloc() const | |
| [ 4248] 4248 X Code 0xffffff80008385d0 0x0000000000000010 0x000f0000 OSCollectionIterator::getMetaClass() const | |
| [ 4249] 4249 X Code 0xffffff8000838a90 0x0000000000000050 0x000f0000 OSCollectionIterator::MetaClass::alloc() const | |
| [ 4250] 4250 X Code 0xffffff80008fe260 0x0000000000000010 0x000f0000 RootDomainUserClient::getMetaClass() const | |
| [ 4251] 4251 X Code 0xffffff80008fec30 0x0000000000000050 0x000f0000 RootDomainUserClient::MetaClass::alloc() const | |
| [ 4252] 4252 X Code 0xffffff80008df2a0 0x0000000000000010 0x000f0000 IOInterruptController::getMetaClass() const | |
| [ 4253] 4253 X Code 0xffffff80008e0990 0x0000000000000010 0x000f0000 IOInterruptController::MetaClass::alloc() const | |
| [ 4254] 4254 X Code 0xffffff80008c7eb0 0x0000000000000010 0x000f0000 IONaturalMemoryCursor::getMetaClass() const | |
| [ 4255] 4255 X Code 0xffffff80008c8200 0x0000000000000050 0x000f0000 IONaturalMemoryCursor::MetaClass::alloc() const | |
| [ 4256] 4256 X Code 0xffffff80008d3660 0x0000000000000010 0x000f0000 IOSubMemoryDescriptor::getMetaClass() const | |
| [ 4257] 4257 X Code 0xffffff80008d3b60 0x0000000000000050 0x000f0000 IOSubMemoryDescriptor::MetaClass::alloc() const | |
| [ 4258] 4258 X Code 0xffffff80008bc850 0x0000000000000010 0x000f0000 IOInterruptEventSource::getIntIndex() const | |
| [ 4259] 4259 X Code 0xffffff80008bc840 0x0000000000000010 0x000f0000 IOInterruptEventSource::getProvider() const | |
| [ 4260] 4260 X Code 0xffffff80008bc2b0 0x0000000000000010 0x000f0000 IOInterruptEventSource::getMetaClass() const | |
| [ 4261] 4261 X Code 0xffffff80008bc860 0x0000000000000010 0x000f0000 IOInterruptEventSource::getAutoDisable() const | |
| [ 4262] 4262 X Code 0xffffff80008bcf50 0x0000000000000050 0x000f0000 IOInterruptEventSource::MetaClass::alloc() const | |
| [ 4263] 4263 X Code 0xffffff80008edee0 0x0000000000000010 0x000f0000 IOKitDiagnosticsClient::getMetaClass() const | |
| [ 4264] 4264 X Code 0xffffff80008ee1b0 0x0000000000000050 0x000f0000 IOKitDiagnosticsClient::MetaClass::alloc() const | |
| [ 4265] 4265 X Code 0xffffff80008d65e0 0x0000000000000010 0x000f0000 IOPlatformExpertDevice::compareName(OSString*, OSString**) const | |
| [ 4266] 4266 X Code 0xffffff80008d65f0 0x0000000000000010 0x000f0000 IOPlatformExpertDevice::getWorkLoop() const | |
| [ 4267] 4267 X Code 0xffffff80008d63f0 0x0000000000000010 0x000f0000 IOPlatformExpertDevice::getMetaClass() const | |
| [ 4268] 4268 X Code 0xffffff80008d6a20 0x0000000000000050 0x000f0000 IOPlatformExpertDevice::MetaClass::alloc() const | |
| [ 4269] 4269 X Code 0xffffff8000892070 0x0000000000000010 0x000f0000 _IOOpenServiceIterator::getMetaClass() const | |
| [ 4270] 4270 X Code 0xffffff800089a840 0x0000000000000050 0x000f0000 _IOOpenServiceIterator::MetaClass::alloc() const | |
| [ 4271] 4271 X Code 0xffffff8000898cf0 0x0000000000000010 0x000f0000 _IOServiceNullNotifier::getMetaClass() const | |
| [ 4272] 4272 X Code 0xffffff8000898d00 0x0000000000000010 0x000f0000 _IOServiceNullNotifier::taggedRetain(void const*) const | |
| [ 4273] 4273 X Code 0xffffff8000898d10 0x0000000000000010 0x000f0000 _IOServiceNullNotifier::taggedRelease(void const*, int) const | |
| [ 4274] 4274 X Code 0xffffff8000898fd0 0x0000000000000050 0x000f0000 _IOServiceNullNotifier::MetaClass::alloc() const | |
| [ 4275] 4275 X Code 0xffffff80008d1910 0x0000000000000010 0x000f0000 IOMultiMemoryDescriptor::getMetaClass() const | |
| [ 4276] 4276 X Code 0xffffff80008d22c0 0x0000000000000050 0x000f0000 IOMultiMemoryDescriptor::MetaClass::alloc() const | |
| [ 4277] 4277 X Code 0xffffff80008c2890 0x0000000000000010 0x000f0000 IOBufferMemoryDescriptor::getCapacity() const | |
| [ 4278] 4278 X Code 0xffffff80008c1d90 0x0000000000000010 0x000f0000 IOBufferMemoryDescriptor::getMetaClass() const | |
| [ 4279] 4279 X Code 0xffffff80008c2c30 0x0000000000000050 0x000f0000 IOBufferMemoryDescriptor::MetaClass::alloc() const | |
| [ 4280] 4280 X Code 0xffffff80008d9530 0x0000000000000010 0x000f0000 IOCPUInterruptController::getMetaClass() const | |
| [ 4281] 4281 X Code 0xffffff80008d9e00 0x0000000000000050 0x000f0000 IOCPUInterruptController::MetaClass::alloc() const | |
| [ 4282] 4282 X Code 0xffffff80008caf60 0x0000000000000010 0x000f0000 IOGeneralMemoryDescriptor::getMetaClass() const | |
| [ 4283] 4283 X Code 0xffffff80008cbaa0 0x0000000000000790 0x000f0000 IOGeneralMemoryDescriptor::dmaCommandOperation(unsigned int, void*, unsigned int) const | |
| [ 4284] 4284 X Code 0xffffff80008cff70 0x0000000000000050 0x000f0000 IOGeneralMemoryDescriptor::MetaClass::alloc() const | |
| [ 4285] 4285 X Code 0xffffff80008cac10 0x0000000000000350 0x000f0000 IOGeneralMemoryDescriptor::serialize(OSSerialize*) const | |
| [ 4286] 4286 X Code 0xffffff80008e1d10 0x0000000000000010 0x000f0000 IOServiceUserNotification::getMetaClass() const | |
| [ 4287] 4287 X Code 0xffffff80008e2510 0x0000000000000050 0x000f0000 IOServiceUserNotification::MetaClass::alloc() const | |
| [ 4288] 4288 X Code 0xffffff80008918f0 0x0000000000000010 0x000f0000 _IOServiceInterestNotifier::getMetaClass() const | |
| [ 4289] 4289 X Code 0xffffff8000899280 0x0000000000000050 0x000f0000 _IOServiceInterestNotifier::MetaClass::alloc() const | |
| [ 4290] 4290 X Code 0xffffff8000909070 0x0000000000000010 0x000f0000 IOPMServiceInterestNotifier::getMetaClass() const | |
| [ 4291] 4291 X Code 0xffffff800090e710 0x0000000000000050 0x000f0000 IOPMServiceInterestNotifier::MetaClass::alloc() const | |
| [ 4292] 4292 X Code 0xffffff80008dfc00 0x0000000000000010 0x000f0000 IOSharedInterruptController::getMetaClass() const | |
| [ 4293] 4293 X Code 0xffffff80008e0c00 0x0000000000000050 0x000f0000 IOSharedInterruptController::MetaClass::alloc() const | |
| [ 4294] 4294 X Code 0xffffff80008c0040 0x0000000000000010 0x000f0000 IOFilterInterruptEventSource::getMetaClass() const | |
| [ 4295] 4295 X Code 0xffffff80008c04e0 0x0000000000000010 0x000f0000 IOFilterInterruptEventSource::getFilterAction() const | |
| [ 4296] 4296 X Code 0xffffff80008c08d0 0x0000000000000050 0x000f0000 IOFilterInterruptEventSource::MetaClass::alloc() const | |
| [ 4297] 4297 X Code 0xffffff80008c5a40 0x0000000000000010 0x000f0000 IOInterleavedMemoryDescriptor::getMetaClass() const | |
| [ 4298] 4298 X Code 0xffffff80008c6170 0x0000000000000050 0x000f0000 IOInterleavedMemoryDescriptor::MetaClass::alloc() const | |
| [ 4299] 4299 X Code 0xffffff80008e25b0 0x0000000000000010 0x000f0000 IOServiceMessageUserNotification::getMetaClass() const | |
| [ 4300] 4300 X Code 0xffffff80008e2d50 0x0000000000000050 0x000f0000 IOServiceMessageUserNotification::MetaClass::alloc() const | |
| [ 4301] 4301 X Code 0xffffff80008d8c90 0x0000000000000030 0x000f0000 IOCPU::getProperty(OSSymbol const*) const | |
| [ 4302] 4302 X Code 0xffffff80008d8c60 0x0000000000000010 0x000f0000 IOCPU::getMetaClass() const | |
| [ 4303] 4303 X Code 0xffffff80008d8cc0 0x0000000000000080 0x000f0000 IOCPU::serializeProperties(OSSerialize*) const | |
| [ 4304] 4304 X Code 0xffffff80008d94d0 0x0000000000000010 0x000f0000 IOCPU::MetaClass::alloc() const | |
| [ 4305] 4305 X Code 0xffffff8000856040 0x0000000000000010 0x000f0000 OSSet::getCapacity() const | |
| [ 4306] 4306 X Code 0xffffff80008566a0 0x0000000000000020 0x000f0000 OSSet::getAnyObject() const | |
| [ 4307] 4307 X Code 0xffffff8000855f10 0x0000000000000010 0x000f0000 OSSet::getMetaClass() const | |
| [ 4308] 4308 X Code 0xffffff8000855fe0 0x0000000000000010 0x000f0000 OSSet::initIterator(void*) const | |
| [ 4309] 4309 X Code 0xffffff8000855fd0 0x0000000000000010 0x000f0000 OSSet::iteratorSize() const | |
| [ 4310] 4310 X Code 0xffffff8000856620 0x0000000000000020 0x000f0000 OSSet::containsObject(OSMetaClassBase const*) const | |
| [ 4311] 4311 X Code 0xffffff8000856050 0x0000000000000010 0x000f0000 OSSet::getCapacityIncrement() const | |
| [ 4312] 4312 X Code 0xffffff8000855ff0 0x0000000000000040 0x000f0000 OSSet::getNextObjectForIterator(void*, OSObject**) const | |
| [ 4313] 4313 X Code 0xffffff8000856640 0x0000000000000060 0x000f0000 OSSet::member(OSMetaClassBase const*) const | |
| [ 4314] 4314 X Code 0xffffff8000856030 0x0000000000000010 0x000f0000 OSSet::getCount() const | |
| [ 4315] 4315 X Code 0xffffff8000856b60 0x0000000000000050 0x000f0000 OSSet::MetaClass::alloc() const | |
| [ 4316] 4316 X Code 0xffffff8000855f20 0x0000000000000060 0x000f0000 OSSet::isEqualTo(OSMetaClassBase const*) const | |
| [ 4317] 4317 X Code 0xffffff80008566c0 0x00000000000000c0 0x000f0000 OSSet::isEqualTo(OSSet const*) const | |
| [ 4318] 4318 X Code 0xffffff8000855e60 0x00000000000000b0 0x000f0000 OSSet::serialize(OSSerialize*) const | |
| [ 4319] 4319 X Code 0xffffff80008394b0 0x0000000000000010 0x000f0000 OSData::getCapacity() const | |
| [ 4320] 4320 X Code 0xffffff80008390e0 0x0000000000000010 0x000f0000 OSData::getMetaClass() const | |
| [ 4321] 4321 X Code 0xffffff8000839790 0x0000000000000030 0x000f0000 OSData::getBytesNoCopy(unsigned int, unsigned int) const | |
| [ 4322] 4322 X Code 0xffffff8000839770 0x0000000000000020 0x000f0000 OSData::getBytesNoCopy() const | |
| [ 4323] 4323 X Code 0xffffff80008394c0 0x0000000000000010 0x000f0000 OSData::getCapacityIncrement() const | |
| [ 4324] 4324 X Code 0xffffff8000839d50 0x0000000000000050 0x000f0000 OSData::MetaClass::alloc() const | |
| [ 4325] 4325 X Code 0xffffff80008394a0 0x0000000000000010 0x000f0000 OSData::getLength() const | |
| [ 4326] 4326 X Code 0xffffff80008390f0 0x0000000000000090 0x000f0000 OSData::isEqualTo(OSMetaClassBase const*) const | |
| [ 4327] 4327 X Code 0xffffff8000839830 0x0000000000000090 0x000f0000 OSData::isEqualTo(OSString const*) const | |
| [ 4328] 4328 X Code 0xffffff80008397c0 0x0000000000000020 0x000f0000 OSData::isEqualTo(OSData const*) const | |
| [ 4329] 4329 X Code 0xffffff80008397e0 0x0000000000000050 0x000f0000 OSData::isEqualTo(void const*, unsigned int) const | |
| [ 4330] 4330 X Code 0xffffff8000838e80 0x0000000000000260 0x000f0000 OSData::serialize(OSSerialize*) const | |
| [ 4331] 4331 X Code 0xffffff800083c790 0x0000000000000010 0x000f0000 OSKext::getMetaClass() const | |
| [ 4332] 4332 X Code 0xffffff8000849fd0 0x0000000000000050 0x000f0000 OSKext::MetaClass::alloc() const | |
| [ 4333] 4333 X Code 0xffffff80008360d0 0x0000000000000010 0x000f0000 OSArray::getCapacity() const | |
| [ 4334] 4334 X Code 0xffffff8000835fa0 0x0000000000000010 0x000f0000 OSArray::getMetaClass() const | |
| [ 4335] 4335 X Code 0xffffff8000836080 0x0000000000000010 0x000f0000 OSArray::initIterator(void*) const | |
| [ 4336] 4336 X Code 0xffffff8000836070 0x0000000000000010 0x000f0000 OSArray::iteratorSize() const | |
| [ 4337] 4337 X Code 0xffffff8000836b70 0x0000000000000020 0x000f0000 OSArray::getLastObject() const | |
| [ 4338] 4338 X Code 0xffffff80008360e0 0x0000000000000010 0x000f0000 OSArray::getCapacityIncrement() const | |
| [ 4339] 4339 X Code 0xffffff8000836b90 0x0000000000000030 0x000f0000 OSArray::getNextIndexOfObject(OSMetaClassBase const*, unsigned int) const | |
| [ 4340] 4340 X Code 0xffffff8000836090 0x0000000000000030 0x000f0000 OSArray::getNextObjectForIterator(void*, OSObject**) const | |
| [ 4341] 4341 X Code 0xffffff80008360c0 0x0000000000000010 0x000f0000 OSArray::getCount() const | |
| [ 4342] 4342 X Code 0xffffff8000836fa0 0x0000000000000050 0x000f0000 OSArray::MetaClass::alloc() const | |
| [ 4343] 4343 X Code 0xffffff8000836b50 0x0000000000000020 0x000f0000 OSArray::getObject(unsigned int) const | |
| [ 4344] 4344 X Code 0xffffff8000835fb0 0x0000000000000060 0x000f0000 OSArray::isEqualTo(OSMetaClassBase const*) const | |
| [ 4345] 4345 X Code 0xffffff8000836ac0 0x0000000000000090 0x000f0000 OSArray::isEqualTo(OSArray const*) const | |
| [ 4346] 4346 X Code 0xffffff8000835f00 0x00000000000000a0 0x000f0000 OSArray::serialize(OSSerialize*) const | |
| [ 4347] 4347 X Code 0xffffff80008c6570 0x0000000000000010 0x000f0000 IOMapper::getMetaClass() const | |
| [ 4348] 4348 X Code 0xffffff80008c6be0 0x0000000000000010 0x000f0000 IOMapper::MetaClass::alloc() const | |
| [ 4349] 4349 X Code 0xffffff8000901440 0x0000000000000010 0x000f0000 IOSyncer::getMetaClass() const | |
| [ 4350] 4350 X Code 0xffffff8000901a40 0x0000000000000050 0x000f0000 IOSyncer::MetaClass::alloc() const | |
| [ 4351] 4351 X Code 0xffffff8000851eb0 0x0000000000000010 0x000f0000 OSNumber::getMetaClass() const | |
| [ 4352] 4352 X Code 0xffffff8000851fd0 0x0000000000000010 0x000f0000 OSNumber::numberOfBits() const | |
| [ 4353] 4353 X Code 0xffffff8000851fe0 0x0000000000000010 0x000f0000 OSNumber::numberOfBytes() const | |
| [ 4354] 4354 X Code 0xffffff8000851ff0 0x0000000000000010 0x000f0000 OSNumber::unsigned8BitValue() const | |
| [ 4355] 4355 X Code 0xffffff8000852000 0x0000000000000010 0x000f0000 OSNumber::unsigned16BitValue() const | |
| [ 4356] 4356 X Code 0xffffff8000852010 0x0000000000000010 0x000f0000 OSNumber::unsigned32BitValue() const | |
| [ 4357] 4357 X Code 0xffffff8000852020 0x0000000000000010 0x000f0000 OSNumber::unsigned64BitValue() const | |
| [ 4358] 4358 X Code 0xffffff8000852480 0x0000000000000050 0x000f0000 OSNumber::MetaClass::alloc() const | |
| [ 4359] 4359 X Code 0xffffff8000851ec0 0x0000000000000060 0x000f0000 OSNumber::isEqualTo(OSMetaClassBase const*) const | |
| [ 4360] 4360 X Code 0xffffff8000852080 0x0000000000000020 0x000f0000 OSNumber::isEqualTo(OSNumber const*) const | |
| [ 4361] 4361 X Code 0xffffff8000851da0 0x0000000000000110 0x000f0000 OSNumber::serialize(OSSerialize*) const | |
| [ 4362] 4362 X Code 0xffffff8000835460 0x0000000000000010 0x000f0000 OSObject::getMetaClass() const | |
| [ 4363] 4363 X Code 0xffffff8000835470 0x0000000000000090 0x000f0000 OSObject::taggedRetain(void const*) const | |
| [ 4364] 4364 X Code 0xffffff8000835500 0x0000000000000020 0x000f0000 OSObject::taggedRelease(void const*) const | |
| [ 4365] 4365 X Code 0xffffff8000835520 0x00000000000000c0 0x000f0000 OSObject::taggedRelease(void const*, int) const | |
| [ 4366] 4366 X Code 0xffffff8000835370 0x0000000000000010 0x000f0000 OSObject::getRetainCount() const | |
| [ 4367] 4367 X Code 0xffffff8000835380 0x0000000000000010 0x000f0000 OSObject::retain() const | |
| [ 4368] 4368 X Code 0xffffff8000835350 0x0000000000000020 0x000f0000 OSObject::release(int) const | |
| [ 4369] 4369 X Code 0xffffff8000835390 0x0000000000000010 0x000f0000 OSObject::release() const | |
| [ 4370] 4370 X Code 0xffffff8000835b80 0x0000000000000010 0x000f0000 OSObject::MetaClass::alloc() const | |
| [ 4371] 4371 X Code 0xffffff80008353a0 0x00000000000000c0 0x000f0000 OSObject::serialize(OSSerialize*) const | |
| [ 4372] 4372 X Code 0xffffff8000857230 0x0000000000000010 0x000f0000 OSString::getMetaClass() const | |
| [ 4373] 4373 X Code 0xffffff80008574d0 0x0000000000000010 0x000f0000 OSString::getCStringNoCopy() const | |
| [ 4374] 4374 X Code 0xffffff8000857480 0x0000000000000020 0x000f0000 OSString::getChar(unsigned int) const | |
| [ 4375] 4375 X Code 0xffffff8000857b30 0x0000000000000050 0x000f0000 OSString::MetaClass::alloc() const | |
| [ 4376] 4376 X Code 0xffffff8000857470 0x0000000000000010 0x000f0000 OSString::getLength() const | |
| [ 4377] 4377 X Code 0xffffff8000857240 0x0000000000000090 0x000f0000 OSString::isEqualTo(OSMetaClassBase const*) const | |
| [ 4378] 4378 X Code 0xffffff8000857540 0x0000000000000090 0x000f0000 OSString::isEqualTo(OSData const*) const | |
| [ 4379] 4379 X Code 0xffffff80008574e0 0x0000000000000020 0x000f0000 OSString::isEqualTo(OSString const*) const | |
| [ 4380] 4380 X Code 0xffffff8000857500 0x0000000000000040 0x000f0000 OSString::isEqualTo(char const*) const | |
| [ 4381] 4381 X Code 0xffffff8000857100 0x0000000000000130 0x000f0000 OSString::serialize(OSSerialize*) const | |
| [ 4382] 4382 X Code 0xffffff8000858270 0x0000000000000010 0x000f0000 OSSymbol::getMetaClass() const | |
| [ 4383] 4383 X Code 0xffffff8000858320 0x0000000000000020 0x000f0000 OSSymbol::taggedRelease(void const*) const | |
| [ 4384] 4384 X Code 0xffffff8000858340 0x0000000000000050 0x000f0000 OSSymbol::taggedRelease(void const*, int) const | |
| [ 4385] 4385 X Code 0xffffff8000858f80 0x0000000000000050 0x000f0000 OSSymbol::MetaClass::alloc() const | |
| [ 4386] 4386 X Code 0xffffff8000858280 0x00000000000000a0 0x000f0000 OSSymbol::isEqualTo(OSMetaClassBase const*) const | |
| [ 4387] 4387 X Code 0xffffff8000858430 0x0000000000000010 0x000f0000 OSSymbol::isEqualTo(OSSymbol const*) const | |
| [ 4388] 4388 X Code 0xffffff80008583f0 0x0000000000000040 0x000f0000 OSSymbol::isEqualTo(char const*) const | |
| [ 4389] 4389 X Code 0xffffff80008be360 0x0000000000000010 0x000f0000 IOCommand::getMetaClass() const | |
| [ 4390] 4390 X Code 0xffffff80008be5f0 0x0000000000000050 0x000f0000 IOCommand::MetaClass::alloc() const | |
| [ 4391] 4391 X Code 0xffffff80008db720 0x0000000000000030 0x000f0000 IODTNVRAM::getProperty(OSSymbol const*) const | |
| [ 4392] 4392 X Code 0xffffff80008db750 0x0000000000000030 0x000f0000 IODTNVRAM::getProperty(char const*) const | |
| [ 4393] 4393 X Code 0xffffff80008db780 0x0000000000000110 0x000f0000 IODTNVRAM::copyProperty(OSSymbol const*) const | |
| [ 4394] 4394 X Code 0xffffff80008db890 0x0000000000000050 0x000f0000 IODTNVRAM::copyProperty(char const*) const | |
| [ 4395] 4395 X Code 0xffffff80008db310 0x0000000000000010 0x000f0000 IODTNVRAM::getMetaClass() const | |
| [ 4396] 4396 X Code 0xffffff80008dc430 0x0000000000000050 0x000f0000 IODTNVRAM::getOFVariablePerm(OSSymbol const*) const | |
| [ 4397] 4397 X Code 0xffffff80008dc3e0 0x0000000000000050 0x000f0000 IODTNVRAM::getOFVariableType(OSSymbol const*) const | |
| [ 4398] 4398 X Code 0xffffff80008db8e0 0x0000000000000240 0x000f0000 IODTNVRAM::serializeProperties(OSSerialize*) const | |
| [ 4399] 4399 X Code 0xffffff80008de690 0x0000000000000050 0x000f0000 IODTNVRAM::MetaClass::alloc() const | |
| [ 4400] 4400 X Code 0xffffff800089c2d0 0x0000000000000020 0x000f0000 IOService::isInactive() const | |
| [ 4401] 4401 X Code 0xffffff80008903e0 0x0000000000000060 0x000f0000 IOService::getProvider() const | |
| [ 4402] 4402 X Code 0xffffff8000890440 0x0000000000000030 0x000f0000 IOService::getWorkLoop() const | |
| [ 4403] 4403 X Code 0xffffff800088df10 0x0000000000000010 0x000f0000 IOService::getMetaClass() const | |
| [ 4404] 4404 X Code 0xffffff800088f510 0x0000000000000020 0x000f0000 IOService::handleIsOpen(IOService const*) const | |
| [ 4405] 4405 X Code 0xffffff8000890560 0x0000000000000020 0x000f0000 IOService::getClientIterator() const | |
| [ 4406] 4406 X Code 0xffffff8000890470 0x0000000000000020 0x000f0000 IOService::getProviderIterator() const | |
| [ 4407] 4407 X Code 0xffffff800088e150 0x0000000000000010 0x000f0000 IOService::serializeProperties(OSSerialize*) const | |
| [ 4408] 4408 X Code 0xffffff8000890580 0x00000000000000b0 0x000f0000 IOService::getOpenClientIterator() const | |
| [ 4409] 4409 X Code 0xffffff8000890490 0x00000000000000b0 0x000f0000 IOService::getOpenProviderIterator() const | |
| [ 4410] 4410 X Code 0xffffff800088f430 0x0000000000000050 0x000f0000 IOService::isOpen(IOService const*) const | |
| [ 4411] 4411 X Code 0xffffff800088f070 0x0000000000000010 0x000f0000 IOService::getState() const | |
| [ 4412] 4412 X Code 0xffffff80008989a0 0x0000000000000050 0x000f0000 IOService::MetaClass::alloc() const | |
| [ 4413] 4413 X Code 0xffffff8000890540 0x0000000000000020 0x000f0000 IOService::getClient() const | |
| [ 4414] 4414 X Code 0xffffff8000837500 0x0000000000000010 0x000f0000 OSBoolean::getMetaClass() const | |
| [ 4415] 4415 X Code 0xffffff8000837570 0x0000000000000010 0x000f0000 OSBoolean::taggedRetain(void const*) const | |
| [ 4416] 4416 X Code 0xffffff8000837580 0x0000000000000010 0x000f0000 OSBoolean::taggedRelease(void const*, int) const | |
| [ 4417] 4417 X Code 0xffffff80008375b0 0x0000000000000010 0x000f0000 OSBoolean::isTrue() const | |
| [ 4418] 4418 X Code 0xffffff80008375c0 0x0000000000000010 0x000f0000 OSBoolean::isFalse() const | |
| [ 4419] 4419 X Code 0xffffff80008375d0 0x0000000000000010 0x000f0000 OSBoolean::getValue() const | |
| [ 4420] 4420 X Code 0xffffff80008379d0 0x0000000000000050 0x000f0000 OSBoolean::MetaClass::alloc() const | |
| [ 4421] 4421 X Code 0xffffff8000837510 0x0000000000000060 0x000f0000 OSBoolean::isEqualTo(OSMetaClassBase const*) const | |
| [ 4422] 4422 X Code 0xffffff80008375e0 0x0000000000000010 0x000f0000 OSBoolean::isEqualTo(OSBoolean const*) const | |
| [ 4423] 4423 X Code 0xffffff80008374b0 0x0000000000000050 0x000f0000 OSBoolean::serialize(OSSerialize*) const | |
| [ 4424] 4424 X Code 0xffffff8000854910 0x0000000000000020 0x000f0000 std::__throw_length_error(char const*) | |
| [ 4425] 4425 X Invalid 0xffffff8000b2ce18 0x0000000000000130 0x000f0000 vtable for IOMachPort | |
| [ 4426] 4426 X Invalid 0xffffff8000b1e8a0 0x0000000000000148 0x000f0000 vtable for IONotifier | |
| [ 4427] 4427 X Invalid 0xffffff8000b2f600 0x00000000000001a0 0x000f0000 vtable for IOReporter | |
| [ 4428] 4428 X Invalid 0xffffff8000b21258 0x0000000000000210 0x000f0000 vtable for IOWorkLoop | |
| [ 4429] 4429 X Invalid 0xffffff8000b19bd0 0x0000000000000168 0x000f0000 vtable for OSIterator | |
| [ 4430] 4430 X Invalid 0xffffff8000b1ffa8 0x0000000000000130 0x000f0000 vtable for IOCatalogue | |
| [ 4431] 4431 X Invalid 0xffffff8000b2f100 0x0000000000000160 0x000f0000 vtable for IODataQueue | |
| [ 4432] 4432 X Invalid 0xffffff8000b24ff0 0x00000000000001b8 0x000f0000 vtable for IOMemoryMap | |
| [ 4433] 4433 X Invalid 0xffffff8000b1eae0 0x0000000000000130 0x000f0000 vtable for IOPMRequest | |
| [ 4434] 4434 X Invalid 0xffffff8000b1de68 0x0000000000000868 0x000f0000 vtable for IOResources | |
| [ 4435] 4435 X Invalid 0xffffff8000b1f668 0x0000000000000130 0x000f0000 vtable for IOServicePM | |
| [ 4436] 4436 X Invalid 0xffffff8000b18750 0x00000000000000e8 0x000f0000 vtable for OSMetaClass | |
| [ 4437] 4437 X Invalid 0xffffff8000b1a8b0 0x00000000000001d8 0x000f0000 vtable for OSSerialize | |
| [ 4438] 4438 X Invalid 0xffffff8000b231a8 0x00000000000001f8 0x000f0000 vtable for IODMACommand | |
| [ 4439] 4439 X Invalid 0xffffff8000b1f890 0x0000000000000130 0x000f0000 vtable for IOPMinformee | |
| [ 4440] 4440 X Invalid 0xffffff8000b338a8 0x0000000000000868 0x000f0000 vtable for IORootParent | |
| [ 4441] 4441 X Invalid 0xffffff8000b2d9f8 0x0000000000000978 0x000f0000 vtable for IOUserClient | |
| [ 4442] 4442 X Invalid 0xffffff8000b19050 0x00000000000001b8 0x000f0000 vtable for OSCollection | |
| [ 4443] 4443 X Invalid 0xffffff8000b19860 0x0000000000000278 0x000f0000 vtable for OSDictionary | |
| [ 4444] 4444 X Invalid 0xffffff8000b1a550 0x0000000000000268 0x000f0000 vtable for OSOrderedSet | |
| [ 4445] 4445 X Invalid 0xffffff8000b1ab80 0x0000000000000130 0x000f0000 vtable for OSSerializer | |
| [ 4446] 4446 X Invalid 0xffffff8000b1b3e0 0x0000000000000028 0x000f0000 vtable for OSSymbolPool | |
| [ 4447] 4447 X Invalid 0xffffff8000b32ca8 0x0000000000000130 0x000f0000 vtable for PMHaltWorker | |
| [ 4448] 4448 X Invalid 0xffffff8000b21b68 0x0000000000000250 0x000f0000 vtable for IOCommandGate | |
| [ 4449] 4449 X Invalid 0xffffff8000b220d8 0x00000000000001a0 0x000f0000 vtable for IOCommandPool | |
| [ 4450] 4450 X Invalid 0xffffff8000b21560 0x00000000000001d0 0x000f0000 vtable for IOEventSource | |
| [ 4451] 4451 X Invalid 0xffffff8000b1f0e8 0x00000000000001d8 0x000f0000 vtable for IOPMWorkQueue | |
| [ 4452] 4452 X Invalid 0xffffff8000b342e0 0x0000000000000130 0x000f0000 vtable for PMTraceWorker | |
| [ 4453] 4453 X Invalid 0xffffff8000b1d548 0x0000000000000130 0x000f0000 vtable for _IOServiceJob | |
| [ 4454] 4454 X Invalid 0xffffff8000b24210 0x0000000000000140 0x000f0000 vtable for IOMemoryCursor | |
| [ 4455] 4455 X Invalid 0xffffff8000b32ec0 0x0000000000000898 0x000f0000 vtable for IOPMrootDomain | |
| [ 4456] 4456 X Invalid 0xffffff8000b30098 0x0000000000000130 0x000f0000 vtable for IOReportLegend | |
| [ 4457] 4457 X Invalid 0xffffff8000b2d080 0x0000000000000168 0x000f0000 vtable for IOUserIterator | |
| [ 4458] 4458 X Invalid 0xffffff8000b1b8a0 0x0000000000000178 0x000f0000 vtable for IOConditionLock | |
| [ 4459] 4459 X Invalid 0xffffff8000b2b028 0x00000000000008d0 0x000f0000 vtable for IODMAController | |
| [ 4460] 4460 X Invalid 0xffffff8000b201d0 0x0000000000000870 0x000f0000 vtable for IOPMPowerSource | |
| [ 4461] 4461 X Invalid 0xffffff8000b286a8 0x00000000000009d0 0x000f0000 vtable for IOPanicPlatform | |
| [ 4462] 4462 X Invalid 0xffffff8000b1bb10 0x0000000000000410 0x000f0000 vtable for IORegistryEntry | |
| [ 4463] 4463 X Invalid 0xffffff8000b1c1c8 0x0000000000000130 0x000f0000 vtable for IORegistryPlane | |
| [ 4464] 4464 X Invalid 0xffffff8000b32018 0x0000000000000260 0x000f0000 vtable for IOSKMemoryArray | |
| [ 4465] 4465 X Invalid 0xffffff8000b2fb38 0x00000000000001c8 0x000f0000 vtable for IOStateReporter | |
| [ 4466] 4466 X Invalid 0xffffff8000b31690 0x0000000000000890 0x000f0000 vtable for IOWatchDogTimer | |
| [ 4467] 4467 X Invalid 0xffffff8000b185c0 0x00000000000000a0 0x000f0000 vtable for OSMetaClassBase | |
| [ 4468] 4468 X Invalid 0xffffff8000b18668 0x00000000000000e8 0x000f0000 vtable for OSMetaClassMeta | |
| [ 4469] 4469 X Invalid 0xffffff8000b344f8 0x0000000000000130 0x000f0000 vtable for PMSettingHandle | |
| [ 4470] 4470 X Invalid 0xffffff8000b34710 0x0000000000000130 0x000f0000 vtable for PMSettingObject | |
| [ 4471] 4471 X Invalid 0xffffff8000b1d678 0x0000000000000130 0x000f0000 vtable for _IOConfigThread | |
| [ 4472] 4472 X Invalid 0xffffff8000b22370 0x0000000000000230 0x000f0000 vtable for IODMAEventSource | |
| [ 4473] 4473 X Invalid 0xffffff8000b2e468 0x0000000000000130 0x000f0000 vtable for IOKitDiagnostics | |
| [ 4474] 4474 X Invalid 0xffffff8000b1ee28 0x00000000000001d8 0x000f0000 vtable for IOPMRequestQueue | |
| [ 4475] 4475 X Invalid 0xffffff8000b1fab8 0x0000000000000130 0x000f0000 vtable for IOPMinformeeList | |
| [ 4476] 4476 X Invalid 0xffffff8000b267a8 0x0000000000000888 0x000f0000 vtable for IOPlatformDevice | |
| [ 4477] 4477 X Invalid 0xffffff8000b25d98 0x00000000000009d0 0x000f0000 vtable for IOPlatformExpert | |
| [ 4478] 4478 X Invalid 0xffffff8000b257c8 0x0000000000000180 0x000f0000 vtable for IORangeAllocator | |
| [ 4479] 4479 X Invalid 0xffffff8000b32370 0x0000000000000310 0x000f0000 vtable for IOSKMemoryBuffer | |
| [ 4480] 4480 X Invalid 0xffffff8000b2f898 0x00000000000001a8 0x000f0000 vtable for IOSimpleReporter | |
| [ 4481] 4481 X Invalid 0xffffff8000b246a0 0x0000000000000150 0x000f0000 vtable for IOBigMemoryCursor | |
| [ 4482] 4482 X Invalid 0xffffff8000b20d60 0x00000000000001d8 0x000f0000 vtable for IOPolledInterface | |
| [ 4483] 4483 X Invalid 0xffffff8000b30d30 0x0000000000000868 0x000f0000 vtable for IOPowerConnection | |
| [ 4484] 4484 X Invalid 0xffffff8000b2f358 0x00000000000001b0 0x000f0000 vtable for IOSharedDataQueue | |
| [ 4485] 4485 X Invalid 0xffffff8000b27118 0x0000000000000a48 0x000f0000 vtable for IODTPlatformExpert | |
| [ 4486] 4486 X Invalid 0xffffff8000b24b20 0x0000000000000258 0x000f0000 vtable for IOMemoryDescriptor | |
| [ 4487] 4487 X Invalid 0xffffff8000b1bf40 0x00000000000001a0 0x000f0000 vtable for IORegistryIterator | |
| [ 4488] 4488 X Invalid 0xffffff8000b22a30 0x0000000000000278 0x000f0000 vtable for IOTimerEventSource | |
| [ 4489] 4489 X Invalid 0xffffff8000b2d2d0 0x0000000000000170 0x000f0000 vtable for IOUserNotification | |
| [ 4490] 4490 X Invalid 0xffffff8000b1d3f8 0x0000000000000150 0x000f0000 vtable for _IOServiceNotifier | |
| [ 4491] 4491 X Invalid 0xffffff8000b2fdf8 0x00000000000001a8 0x000f0000 vtable for IOHistogramReporter | |
| [ 4492] 4492 X Invalid 0xffffff8000b1f3a8 0x00000000000001d8 0x000f0000 vtable for IOPMCompletionQueue | |
| [ 4493] 4493 X Invalid 0xffffff8000b20b38 0x0000000000000130 0x000f0000 vtable for IOPMPowerSourceList | |
| [ 4494] 4494 X Invalid 0xffffff8000b1fce0 0x00000000000001d0 0x000f0000 vtable for IOPMPowerStateQueue | |
| [ 4495] 4495 X Invalid 0xffffff8000b21030 0x0000000000000130 0x000f0000 vtable for IOPolledFilePollers | |
| [ 4496] 4496 X Invalid 0xffffff8000b329c8 0x0000000000000130 0x000f0000 vtable for PMAssertionsTracker | |
| [ 4497] 4497 X Invalid 0xffffff8000b248d8 0x0000000000000150 0x000f0000 vtable for IOLittleMemoryCursor | |
| [ 4498] 4498 X Invalid 0xffffff8000b19300 0x0000000000000170 0x000f0000 vtable for OSCollectionIterator | |
| [ 4499] 4499 X Invalid 0xffffff8000b302c0 0x0000000000000978 0x000f0000 vtable for RootDomainUserClient | |
| [ 4500] 4500 X Invalid 0xffffff8000b2b9f0 0x0000000000000908 0x000f0000 vtable for IOInterruptController | |
| [ 4501] 4501 X Invalid 0xffffff8000b24468 0x0000000000000150 0x000f0000 vtable for IONaturalMemoryCursor | |
| [ 4502] 4502 X Invalid 0xffffff8000b25a40 0x0000000000000260 0x000f0000 vtable for IOSubMemoryDescriptor | |
| [ 4503] 4503 X Invalid 0xffffff8000b21828 0x0000000000000248 0x000f0000 vtable for IOInterruptEventSource | |
| [ 4504] 4504 X Invalid 0xffffff8000b2e690 0x0000000000000978 0x000f0000 vtable for IOKitDiagnosticsClient | |
| [ 4505] 4505 X Invalid 0xffffff8000b27c48 0x0000000000000890 0x000f0000 vtable for IOPlatformExpertDevice | |
| [ 4506] 4506 X Invalid 0xffffff8000b1d290 0x0000000000000168 0x000f0000 vtable for _IOOpenServiceIterator | |
| [ 4507] 4507 X Invalid 0xffffff8000b1d978 0x0000000000000150 0x000f0000 vtable for _IOServiceNullNotifier | |
| [ 4508] 4508 X Invalid 0xffffff8000b25470 0x0000000000000260 0x000f0000 vtable for IOMultiMemoryDescriptor | |
| [ 4509] 4509 X Invalid 0xffffff8000b22da0 0x0000000000000310 0x000f0000 vtable for IOBufferMemoryDescriptor | |
| [ 4510] 4510 X Invalid 0xffffff8000b29b90 0x0000000000000958 0x000f0000 vtable for IOCPUInterruptController | |
| [ 4511] 4511 X Invalid 0xffffff8000b24d98 0x0000000000000258 0x000f0000 vtable for IOGeneralMemoryDescriptor | |
| [ 4512] 4512 X Invalid 0xffffff8000b2d528 0x0000000000000180 0x000f0000 vtable for IOServiceUserNotification | |
| [ 4513] 4513 X Invalid 0xffffff8000b1d140 0x0000000000000150 0x000f0000 vtable for _IOServiceInterestNotifier | |
| [ 4514] 4514 X Invalid 0xffffff8000b33758 0x0000000000000150 0x000f0000 vtable for IOPMServiceInterestNotifier | |
| [ 4515] 4515 X Invalid 0xffffff8000b2c308 0x0000000000000930 0x000f0000 vtable for IOSharedInterruptController | |
| [ 4516] 4516 X Invalid 0xffffff8000b22698 0x00000000000002a0 0x000f0000 vtable for IOFilterInterruptEventSource | |
| [ 4517] 4517 X Invalid 0xffffff8000b23498 0x0000000000000270 0x000f0000 vtable for IOInterleavedMemoryDescriptor | |
| [ 4518] 4518 X Invalid 0xffffff8000b2d790 0x0000000000000180 0x000f0000 vtable for IOServiceMessageUserNotification | |
| [ 4519] 4519 X Invalid 0xffffff8000b29170 0x0000000000000928 0x000f0000 vtable for IOCPU | |
| [ 4520] 4520 X Invalid 0xffffff8000b1ada8 0x0000000000000258 0x000f0000 vtable for OSSet | |
| [ 4521] 4521 X Invalid 0xffffff8000b19568 0x0000000000000200 0x000f0000 vtable for OSData | |
| [ 4522] 4522 X Invalid 0xffffff8000b19e30 0x0000000000000368 0x000f0000 vtable for OSKext | |
| [ 4523] 4523 X Invalid 0xffffff8000b18a68 0x0000000000000258 0x000f0000 vtable for OSArray | |
| [ 4524] 4524 X Invalid 0xffffff8000b23800 0x0000000000000918 0x000f0000 vtable for IOMapper | |
| [ 4525] 4525 X Invalid 0xffffff8000b32778 0x0000000000000158 0x000f0000 vtable for IOSyncer | |
| [ 4526] 4526 X Invalid 0xffffff8000b1a290 0x00000000000001c8 0x000f0000 vtable for OSNumber | |
| [ 4527] 4527 X Invalid 0xffffff8000b18840 0x0000000000000130 0x000f0000 vtable for OSObject | |
| [ 4528] 4528 X Invalid 0xffffff8000b1b0f8 0x0000000000000200 0x000f0000 vtable for OSString | |
| [ 4529] 4529 X Invalid 0xffffff8000b1b418 0x0000000000000248 0x000f0000 vtable for OSSymbol | |
| [ 4530] 4530 X Invalid 0xffffff8000b21eb0 0x0000000000000130 0x000f0000 vtable for IOCommand | |
| [ 4531] 4531 X Invalid 0xffffff8000b2a5e0 0x0000000000000950 0x000f0000 vtable for IODTNVRAM | |
| [ 4532] 4532 X Invalid 0xffffff8000b1c4d8 0x0000000000000be8 0x000f0000 vtable for IOService | |
| [ 4533] 4533 X Invalid 0xffffff8000b18db8 0x0000000000000190 0x000f0000 vtable for OSBoolean | |
| [ 4534] 4534 X Invalid 0xffffff8000b2cf98 0x00000000000000e8 0x000f0000 vtable for IOMachPort::MetaClass | |
| [ 4535] 4535 X Invalid 0xffffff8000b1e9e8 0x00000000000000e8 0x000f0000 vtable for IONotifier::MetaClass | |
| [ 4536] 4536 X Invalid 0xffffff8000b2f7a0 0x00000000000000e8 0x000f0000 vtable for IOReporter::MetaClass | |
| [ 4537] 4537 X Invalid 0xffffff8000b21468 0x00000000000000e8 0x000f0000 vtable for IOWorkLoop::MetaClass | |
| [ 4538] 4538 X Invalid 0xffffff8000b19d38 0x00000000000000e8 0x000f0000 vtable for OSIterator::MetaClass | |
| [ 4539] 4539 X Invalid 0xffffff8000b200d8 0x00000000000000e8 0x000f0000 vtable for IOCatalogue::MetaClass | |
| [ 4540] 4540 X Invalid 0xffffff8000b2f260 0x00000000000000e8 0x000f0000 vtable for IODataQueue::MetaClass | |
| [ 4541] 4541 X Invalid 0xffffff8000b25378 0x00000000000000e8 0x000f0000 vtable for IOMemoryMap::MetaClass | |
| [ 4542] 4542 X Invalid 0xffffff8000b1ed40 0x00000000000000e8 0x000f0000 vtable for IOPMRequest::MetaClass | |
| [ 4543] 4543 X Invalid 0xffffff8000b1e6d0 0x00000000000000e8 0x000f0000 vtable for IOResources::MetaClass | |
| [ 4544] 4544 X Invalid 0xffffff8000b1f798 0x00000000000000e8 0x000f0000 vtable for IOServicePM::MetaClass | |
| [ 4545] 4545 X Invalid 0xffffff8000b1aa98 0x00000000000000e8 0x000f0000 vtable for OSSerialize::MetaClass | |
| [ 4546] 4546 X Invalid 0xffffff8000b233a0 0x00000000000000e8 0x000f0000 vtable for IODMACommand::MetaClass | |
| [ 4547] 4547 X Invalid 0xffffff8000b1f9c0 0x00000000000000e8 0x000f0000 vtable for IOPMinformee::MetaClass | |
| [ 4548] 4548 X Invalid 0xffffff8000b34928 0x00000000000010e8 0x000f0000 vtable for IORootParent::MetaClass | |
| [ 4549] 4549 X Invalid 0xffffff8000b2e370 0x00000000000000e8 0x000f0000 vtable for IOUserClient::MetaClass | |
| [ 4550] 4550 X Invalid 0xffffff8000b19208 0x00000000000000e8 0x000f0000 vtable for OSCollection::MetaClass | |
| [ 4551] 4551 X Invalid 0xffffff8000b19ad8 0x00000000000000e8 0x000f0000 vtable for OSDictionary::MetaClass | |
| [ 4552] 4552 X Invalid 0xffffff8000b1a7b8 0x00000000000000e8 0x000f0000 vtable for OSOrderedSet::MetaClass | |
| [ 4553] 4553 X Invalid 0xffffff8000b1acb0 0x00000000000000e8 0x000f0000 vtable for OSSerializer::MetaClass | |
| [ 4554] 4554 X Invalid 0xffffff8000b32dd8 0x00000000000000e8 0x000f0000 vtable for PMHaltWorker::MetaClass | |
| [ 4555] 4555 X Invalid 0xffffff8000b21db8 0x00000000000000e8 0x000f0000 vtable for IOCommandGate::MetaClass | |
| [ 4556] 4556 X Invalid 0xffffff8000b22278 0x00000000000000e8 0x000f0000 vtable for IOCommandPool::MetaClass | |
| [ 4557] 4557 X Invalid 0xffffff8000b21730 0x00000000000000e8 0x000f0000 vtable for IOEventSource::MetaClass | |
| [ 4558] 4558 X Invalid 0xffffff8000b1f2c0 0x00000000000000e8 0x000f0000 vtable for IOPMWorkQueue::MetaClass | |
| [ 4559] 4559 X Invalid 0xffffff8000b34410 0x00000000000000e8 0x000f0000 vtable for PMTraceWorker::MetaClass | |
| [ 4560] 4560 X Invalid 0xffffff8000b1dd80 0x00000000000000e8 0x000f0000 vtable for _IOServiceJob::MetaClass | |
| [ 4561] 4561 X Invalid 0xffffff8000b24380 0x00000000000000e8 0x000f0000 vtable for IOMemoryCursor::MetaClass | |
| [ 4562] 4562 X Invalid 0xffffff8000b34110 0x00000000000000e8 0x000f0000 vtable for IOPMrootDomain::MetaClass | |
| [ 4563] 4563 X Invalid 0xffffff8000b301c8 0x00000000000000e8 0x000f0000 vtable for IOReportLegend::MetaClass | |
| [ 4564] 4564 X Invalid 0xffffff8000b2d1e8 0x00000000000000e8 0x000f0000 vtable for IOUserIterator::MetaClass | |
| [ 4565] 4565 X Invalid 0xffffff8000b1ba18 0x00000000000000e8 0x000f0000 vtable for IOConditionLock::MetaClass | |
| [ 4566] 4566 X Invalid 0xffffff8000b2b8f8 0x00000000000000e8 0x000f0000 vtable for IODMAController::MetaClass | |
| [ 4567] 4567 X Invalid 0xffffff8000b20a40 0x00000000000000e8 0x000f0000 vtable for IOPMPowerSource::MetaClass | |
| [ 4568] 4568 X Invalid 0xffffff8000b29078 0x00000000000000e8 0x000f0000 vtable for IOPanicPlatform::MetaClass | |
| [ 4569] 4569 X Invalid 0xffffff8000b1c0e0 0x00000000000000e8 0x000f0000 vtable for IORegistryEntry::MetaClass | |
| [ 4570] 4570 X Invalid 0xffffff8000b1c2f8 0x00000000000000e8 0x000f0000 vtable for IORegistryPlane::MetaClass | |
| [ 4571] 4571 X Invalid 0xffffff8000b32288 0x00000000000000e8 0x000f0000 vtable for IOSKMemoryArray::MetaClass | |
| [ 4572] 4572 X Invalid 0xffffff8000b2fd00 0x00000000000000e8 0x000f0000 vtable for IOStateReporter::MetaClass | |
| [ 4573] 4573 X Invalid 0xffffff8000b31f20 0x00000000000000e8 0x000f0000 vtable for IOWatchDogTimer::MetaClass | |
| [ 4574] 4574 X Invalid 0xffffff8000b34628 0x00000000000000e8 0x000f0000 vtable for PMSettingHandle::MetaClass | |
| [ 4575] 4575 X Invalid 0xffffff8000b34840 0x00000000000000e8 0x000f0000 vtable for PMSettingObject::MetaClass | |
| [ 4576] 4576 X Invalid 0xffffff8000b1dc98 0x00000000000000e8 0x000f0000 vtable for _IOConfigThread::MetaClass | |
| [ 4577] 4577 X Invalid 0xffffff8000b225a0 0x00000000000000e8 0x000f0000 vtable for IODMAEventSource::MetaClass | |
| [ 4578] 4578 X Invalid 0xffffff8000b2e5a8 0x00000000000000e8 0x000f0000 vtable for IOKitDiagnostics::MetaClass | |
| [ 4579] 4579 X Invalid 0xffffff8000b1f000 0x00000000000000e8 0x000f0000 vtable for IOPMRequestQueue::MetaClass | |
| [ 4580] 4580 X Invalid 0xffffff8000b1fbe8 0x00000000000000e8 0x000f0000 vtable for IOPMinformeeList::MetaClass | |
| [ 4581] 4581 X Invalid 0xffffff8000b285c0 0x00000000000000e8 0x000f0000 vtable for IOPlatformDevice::MetaClass | |
| [ 4582] 4582 X Invalid 0xffffff8000b27030 0x00000000000000e8 0x000f0000 vtable for IOPlatformExpert::MetaClass | |
| [ 4583] 4583 X Invalid 0xffffff8000b25948 0x00000000000000e8 0x000f0000 vtable for IORangeAllocator::MetaClass | |
| [ 4584] 4584 X Invalid 0xffffff8000b32680 0x00000000000000e8 0x000f0000 vtable for IOSKMemoryBuffer::MetaClass | |
| [ 4585] 4585 X Invalid 0xffffff8000b2fa40 0x00000000000000e8 0x000f0000 vtable for IOSimpleReporter::MetaClass | |
| [ 4586] 4586 X Invalid 0xffffff8000b247f0 0x00000000000000e8 0x000f0000 vtable for IOBigMemoryCursor::MetaClass | |
| [ 4587] 4587 X Invalid 0xffffff8000b20f48 0x00000000000000e8 0x000f0000 vtable for IOPolledInterface::MetaClass | |
| [ 4588] 4588 X Invalid 0xffffff8000b31598 0x00000000000000e8 0x000f0000 vtable for IOPowerConnection::MetaClass | |
| [ 4589] 4589 X Invalid 0xffffff8000b2f508 0x00000000000000e8 0x000f0000 vtable for IOSharedDataQueue::MetaClass | |
| [ 4590] 4590 X Invalid 0xffffff8000b27b60 0x00000000000000e8 0x000f0000 vtable for IODTPlatformExpert::MetaClass | |
| [ 4591] 4591 X Invalid 0xffffff8000b251a8 0x00000000000000e8 0x000f0000 vtable for IOMemoryDescriptor::MetaClass | |
| [ 4592] 4592 X Invalid 0xffffff8000b1c3e0 0x00000000000000e8 0x000f0000 vtable for IORegistryIterator::MetaClass | |
| [ 4593] 4593 X Invalid 0xffffff8000b22ca8 0x00000000000000e8 0x000f0000 vtable for IOTimerEventSource::MetaClass | |
| [ 4594] 4594 X Invalid 0xffffff8000b2d440 0x00000000000000e8 0x000f0000 vtable for IOUserNotification::MetaClass | |
| [ 4595] 4595 X Invalid 0xffffff8000b1d890 0x00000000000000e8 0x000f0000 vtable for _IOServiceNotifier::MetaClass | |
| [ 4596] 4596 X Invalid 0xffffff8000b2ffa0 0x00000000000000e8 0x000f0000 vtable for IOHistogramReporter::MetaClass | |
| [ 4597] 4597 X Invalid 0xffffff8000b1f580 0x00000000000000e8 0x000f0000 vtable for IOPMCompletionQueue::MetaClass | |
| [ 4598] 4598 X Invalid 0xffffff8000b20c68 0x00000000000000e8 0x000f0000 vtable for IOPMPowerSourceList::MetaClass | |
| [ 4599] 4599 X Invalid 0xffffff8000b1feb0 0x00000000000000e8 0x000f0000 vtable for IOPMPowerStateQueue::MetaClass | |
| [ 4600] 4600 X Invalid 0xffffff8000b21160 0x00000000000000e8 0x000f0000 vtable for IOPolledFilePollers::MetaClass | |
| [ 4601] 4601 X Invalid 0xffffff8000b32bc0 0x00000000000000e8 0x000f0000 vtable for PMAssertionsTracker::MetaClass | |
| [ 4602] 4602 X Invalid 0xffffff8000b24a28 0x00000000000000e8 0x000f0000 vtable for IOLittleMemoryCursor::MetaClass | |
| [ 4603] 4603 X Invalid 0xffffff8000b19470 0x00000000000000e8 0x000f0000 vtable for OSCollectionIterator::MetaClass | |
| [ 4604] 4604 X Invalid 0xffffff8000b30c38 0x00000000000000e8 0x000f0000 vtable for RootDomainUserClient::MetaClass | |
| [ 4605] 4605 X Invalid 0xffffff8000b2cc38 0x00000000000000e8 0x000f0000 vtable for IOInterruptController::MetaClass | |
| [ 4606] 4606 X Invalid 0xffffff8000b245b8 0x00000000000000e8 0x000f0000 vtable for IONaturalMemoryCursor::MetaClass | |
| [ 4607] 4607 X Invalid 0xffffff8000b25ca0 0x00000000000000e8 0x000f0000 vtable for IOSubMemoryDescriptor::MetaClass | |
| [ 4608] 4608 X Invalid 0xffffff8000b21a70 0x00000000000000e8 0x000f0000 vtable for IOInterruptEventSource::MetaClass | |
| [ 4609] 4609 X Invalid 0xffffff8000b2f008 0x00000000000000e8 0x000f0000 vtable for IOKitDiagnosticsClient::MetaClass | |
| [ 4610] 4610 X Invalid 0xffffff8000b284d8 0x00000000000000e8 0x000f0000 vtable for IOPlatformExpertDevice::MetaClass | |
| [ 4611] 4611 X Invalid 0xffffff8000b1e7b8 0x00000000000000e8 0x000f0000 vtable for _IOOpenServiceIterator::MetaClass | |
| [ 4612] 4612 X Invalid 0xffffff8000b1dac8 0x00000000000000e8 0x000f0000 vtable for _IOServiceNullNotifier::MetaClass | |
| [ 4613] 4613 X Invalid 0xffffff8000b256d0 0x00000000000000e8 0x000f0000 vtable for IOMultiMemoryDescriptor::MetaClass | |
| [ 4614] 4614 X Invalid 0xffffff8000b230b0 0x00000000000000e8 0x000f0000 vtable for IOBufferMemoryDescriptor::MetaClass | |
| [ 4615] 4615 X Invalid 0xffffff8000b2a4e8 0x00000000000000e8 0x000f0000 vtable for IOCPUInterruptController::MetaClass | |
| [ 4616] 4616 X Invalid 0xffffff8000b25290 0x00000000000000e8 0x000f0000 vtable for IOGeneralMemoryDescriptor::MetaClass | |
| [ 4617] 4617 X Invalid 0xffffff8000b2d6a8 0x00000000000000e8 0x000f0000 vtable for IOServiceUserNotification::MetaClass | |
| [ 4618] 4618 X Invalid 0xffffff8000b1dbb0 0x00000000000000e8 0x000f0000 vtable for _IOServiceInterestNotifier::MetaClass | |
| [ 4619] 4619 X Invalid 0xffffff8000b341f8 0x00000000000000e8 0x000f0000 vtable for IOPMServiceInterestNotifier::MetaClass | |
| [ 4620] 4620 X Invalid 0xffffff8000b2cd20 0x00000000000000e8 0x000f0000 vtable for IOSharedInterruptController::MetaClass | |
| [ 4621] 4621 X Invalid 0xffffff8000b22938 0x00000000000000e8 0x000f0000 vtable for IOFilterInterruptEventSource::MetaClass | |
| [ 4622] 4622 X Invalid 0xffffff8000b23708 0x00000000000000e8 0x000f0000 vtable for IOInterleavedMemoryDescriptor::MetaClass | |
| [ 4623] 4623 X Invalid 0xffffff8000b2d910 0x00000000000000e8 0x000f0000 vtable for IOServiceMessageUserNotification::MetaClass | |
| [ 4624] 4624 X Invalid 0xffffff8000b29aa8 0x00000000000000e8 0x000f0000 vtable for IOCPU::MetaClass | |
| [ 4625] 4625 X Invalid 0xffffff8000b1b000 0x00000000000000e8 0x000f0000 vtable for OSSet::MetaClass | |
| [ 4626] 4626 X Invalid 0xffffff8000b19768 0x00000000000000e8 0x000f0000 vtable for OSData::MetaClass | |
| [ 4627] 4627 X Invalid 0xffffff8000b1a198 0x00000000000000e8 0x000f0000 vtable for OSKext::MetaClass | |
| [ 4628] 4628 X Invalid 0xffffff8000b18cc0 0x00000000000000e8 0x000f0000 vtable for OSArray::MetaClass | |
| [ 4629] 4629 X Invalid 0xffffff8000b24118 0x00000000000000e8 0x000f0000 vtable for IOMapper::MetaClass | |
| [ 4630] 4630 X Invalid 0xffffff8000b328d0 0x00000000000000e8 0x000f0000 vtable for IOSyncer::MetaClass | |
| [ 4631] 4631 X Invalid 0xffffff8000b1a458 0x00000000000000e8 0x000f0000 vtable for OSNumber::MetaClass | |
| [ 4632] 4632 X Invalid 0xffffff8000b18970 0x00000000000000e8 0x000f0000 vtable for OSObject::MetaClass | |
| [ 4633] 4633 X Invalid 0xffffff8000b1b2f8 0x00000000000000e8 0x000f0000 vtable for OSString::MetaClass | |
| [ 4634] 4634 X Invalid 0xffffff8000b1b660 0x00000000000001e0 0x000f0000 vtable for OSSymbol::MetaClass | |
| [ 4635] 4635 X Invalid 0xffffff8000b21fe0 0x00000000000000e8 0x000f0000 vtable for IOCommand::MetaClass | |
| [ 4636] 4636 X Invalid 0xffffff8000b2af30 0x00000000000000e8 0x000f0000 vtable for IODTNVRAM::MetaClass | |
| [ 4637] 4637 X Invalid 0xffffff8000b1d7a8 0x00000000000000e8 0x000f0000 vtable for IOService::MetaClass | |
| [ 4638] 4638 X Invalid 0xffffff8000b18f58 0x00000000000000e8 0x000f0000 vtable for OSBoolean::MetaClass | |
| [ 4639] 4639 X Code 0xffffff80008548d0 0x0000000000000040 0x000f0000 operator delete[](void*) | |
| [ 4640] 4640 X Code 0xffffff8000854840 0x0000000000000030 0x000f0000 operator delete(void*) | |
| [ 4641] 4641 X Code 0xffffff8000854870 0x0000000000000060 0x000f0000 operator new[](unsigned long) | |
| [ 4642] 4642 X Code 0xffffff80008547f0 0x0000000000000050 0x000f0000 operator new(unsigned long) | |
| [ 4643] 4643 X Code 0xffffff8000769890 0x0000000000000010 0x000f0000 __EXEC_WAITING_ON_TASKGATED_CODE_SIGNATURE_UPCALL__ | |
| [ 4644] 4644 X Code 0xffffff80007fbe50 0x0000000000000010 0x000f0000 __KERNEL_WAITING_ON_TASKGATED_CHECK_ACCESS_UPCALL__ | |
| [ 4645] 4645 X Code 0xffffff8000772c10 0x00000000000000b0 0x000f0000 __MALLOC | |
| [ 4646] 4646 X Code 0xffffff8000772e00 0x00000000000000f0 0x000f0000 __MALLOC_ZONE | |
| [ 4647] 4647 X Code 0xffffff8000772d00 0x00000000000000f0 0x000f0000 __REALLOC | |
| [ 4648] 4648 X Code 0xffffff800010e140 0x0000000000000020 0x000f0000 __bzero | |
| [ 4649] 4649 X Data 0xffffff8000ac21b8 0x0000000000000008 0x000f0000 __ch_mdata_redzone_cookie | |
| [ 4650] 4650 X Code 0xffffff800080f050 0x00000000000000d0 0x000f0000 __channel_get_info | |
| [ 4651] 4651 X Code 0xffffff800080fdc0 0x0000000000000160 0x000f0000 __channel_get_opt | |
| [ 4652] 4652 X Code 0xffffff800080eaf0 0x0000000000000400 0x000f0000 __channel_open | |
| [ 4653] 4653 X Code 0xffffff800080ff20 0x0000000000000110 0x000f0000 __channel_set_opt | |
| [ 4654] 4654 X Code 0xffffff800080f1d0 0x0000000000000bf0 0x000f0000 __channel_sync | |
| [ 4655] 4655 X Code 0xffffff8000853cf0 0x0000000000000020 0x000f0000 __cxa_pure_virtual | |
| [ 4656] 4656 X Code 0xffffff8000781c40 0x0000000000000020 0x000f0000 __disable_threadsignal | |
| [ 4657] 4657 X Code 0xffffff80002fb2c0 0x0000000000001240 0x000f0000 __doprnt | |
| [ 4658] 4658 X Code 0xffffff80008643e0 0x0000000000000040 0x000f0000 __firehose_allocate | |
| [ 4659] 4659 X Code 0xffffff80008643d0 0x0000000000000010 0x000f0000 __firehose_buffer_push_to_logd | |
| [ 4660] 4660 X Code 0xffffff8000864420 0x0000000000000010 0x000f0000 __firehose_critical_region_enter | |
| [ 4661] 4661 X Code 0xffffff8000864430 0x0000000000000030 0x000f0000 __firehose_critical_region_leave | |
| [ 4662] 4662 X Code 0xffffff800080e3e0 0x00000000000000a0 0x000f0000 __kern_channel_peek | |
| [ 4663] 4663 X Data 0xffffff8000ac212c 0x0000000000000004 0x000f0000 __llvm_profile_runtime | |
| [ 4664] 4664 X Code 0xffffff8000769940 0x00000000000005d0 0x000f0000 __mac_execve | |
| [ 4665] 4665 X Code 0xffffff800091d4e0 0x0000000000000360 0x000f0000 __mac_get_fd | |
| [ 4666] 4666 X Code 0xffffff800091d840 0x0000000000000020 0x000f0000 __mac_get_file | |
| [ 4667] 4667 X Code 0xffffff800091dbe0 0x0000000000000020 0x000f0000 __mac_get_link | |
| [ 4668] 4668 X Code 0xffffff800091e730 0x0000000000000140 0x000f0000 __mac_get_mount | |
| [ 4669] 4669 X Code 0xffffff800091cf10 0x0000000000000240 0x000f0000 __mac_get_pid | |
| [ 4670] 4670 X Code 0xffffff800091d150 0x00000000000001f0 0x000f0000 __mac_get_proc | |
| [ 4671] 4671 X Code 0xffffff8000524b20 0x0000000000000240 0x000f0000 __mac_getfsstat | |
| [ 4672] 4672 X Code 0xffffff80005213a0 0x0000000000000f00 0x000f0000 __mac_mount | |
| [ 4673] 4673 X Code 0xffffff800091dc00 0x00000000000002b0 0x000f0000 __mac_set_fd | |
| [ 4674] 4674 X Code 0xffffff800091deb0 0x0000000000000020 0x000f0000 __mac_set_file | |
| [ 4675] 4675 X Code 0xffffff800091e230 0x0000000000000020 0x000f0000 __mac_set_link | |
| [ 4676] 4676 X Code 0xffffff800091d340 0x00000000000001a0 0x000f0000 __mac_set_proc | |
| [ 4677] 4677 X Code 0xffffff800091e250 0x0000000000000300 0x000f0000 __mac_syscall | |
| [ 4678] 4678 X Code 0xffffff800081d830 0x0000000000000210 0x000f0000 __nexus_create | |
| [ 4679] 4679 X Code 0xffffff800081d6c0 0x0000000000000170 0x000f0000 __nexus_deregister | |
| [ 4680] 4680 X Code 0xffffff800081da40 0x0000000000000170 0x000f0000 __nexus_destroy | |
| [ 4681] 4681 X Code 0xffffff800081dbb0 0x0000000000000160 0x000f0000 __nexus_get_opt | |
| [ 4682] 4682 X Code 0xffffff800081d0f0 0x0000000000000270 0x000f0000 __nexus_open | |
| [ 4683] 4683 X Code 0xffffff800081d3f0 0x0000000000000220 0x000f0000 __nexus_register | |
| [ 4684] 4684 X Code 0xffffff800081dd10 0x00000000000000f0 0x000f0000 __nexus_set_opt | |
| [ 4685] 4685 X Code 0xffffff8000781d50 0x0000000000000050 0x000f0000 __old_semwait_signal | |
| [ 4686] 4686 X Code 0xffffff8000781da0 0x0000000000000180 0x000f0000 __old_semwait_signal_nocancel | |
| [ 4687] 4687 X Data 0xffffff8000aba1c8 0x0000000000000008 0x000f0000 __packed | |
| [ 4688] 4688 X Code 0xffffff8000781d20 0x0000000000000030 0x000f0000 __posix_sem_syscall_return | |
| [ 4689] 4689 X Code 0xffffff8000781cc0 0x0000000000000060 0x000f0000 __pthread_canceled | |
| [ 4690] 4690 X Code 0xffffff80005258c0 0x0000000000000010 0x000f0000 __pthread_chdir | |
| [ 4691] 4691 X Code 0xffffff8000525570 0x0000000000000010 0x000f0000 __pthread_fchdir | |
| [ 4692] 4692 X Code 0xffffff80007820a0 0x0000000000000080 0x000f0000 __pthread_kill | |
| [ 4693] 4693 X Code 0xffffff8000781c60 0x0000000000000060 0x000f0000 __pthread_markcancel | |
| [ 4694] 4694 X Code 0xffffff80007831e0 0x00000000000000f0 0x000f0000 __pthread_sigmask | |
| [ 4695] 4695 X Code 0xffffff8000781b90 0x0000000000000050 0x000f0000 __pthread_testcancel | |
| [ 4696] 4696 X Code 0xffffff8000781f20 0x0000000000000050 0x000f0000 __semwait_signal | |
| [ 4697] 4697 X Code 0xffffff8000781f70 0x0000000000000130 0x000f0000 __semwait_signal_nocancel | |
| [ 4698] 4698 X Data 0xffffff8000a601e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__audit | |
| [ 4699] 4699 X Data 0xffffff8000a601f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__audit_session | |
| [ 4700] 4700 X Data 0xffffff8000a60210 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__audit_session_member_clear_sflags_mask | |
| [ 4701] 4701 X Data 0xffffff8000a60208 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__audit_session_member_set_sflags_mask | |
| [ 4702] 4702 X Data 0xffffff8000a60200 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__audit_session_superuser_clear_sflags_mask | |
| [ 4703] 4703 X Data 0xffffff8000a601f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__audit_session_superuser_set_sflags_mask | |
| [ 4704] 4704 X Data 0xffffff8000a609c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug | |
| [ 4705] 4705 X Data 0xffffff8000a5f208 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_bpf_bufsize | |
| [ 4706] 4706 X Data 0xffffff8000a5f228 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_bpf_debug | |
| [ 4707] 4707 X Data 0xffffff8000a5f210 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_bpf_maxbufsize | |
| [ 4708] 4708 X Data 0xffffff8000a5f218 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_bpf_maxdevices | |
| [ 4709] 4709 X Data 0xffffff8000a5f220 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_bpf_wantpktap | |
| [ 4710] 4710 X Data 0xffffff8000a617f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_darkwake | |
| [ 4711] 4711 X Data 0xffffff8000a617b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_iokit | |
| [ 4712] 4712 X Data 0xffffff8000a617c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_iokit_statistics | |
| [ 4713] 4713 X Data 0xffffff8000a617d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_iokit_statistics_general | |
| [ 4714] 4714 X Data 0xffffff8000a617d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_iokit_statistics_userclient | |
| [ 4715] 4715 X Data 0xffffff8000a617e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_iokit_statistics_workloop | |
| [ 4716] 4716 X Data 0xffffff8000a617b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_iotrace | |
| [ 4717] 4717 X Data 0xffffff8000a61748 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_kextlog | |
| [ 4718] 4718 X Data 0xffffff8000a5f1b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_lowpri_throttle_enabled | |
| [ 4719] 4719 X Data 0xffffff8000a5f160 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_lowpri_throttle_max_iosize | |
| [ 4720] 4720 X Data 0xffffff8000a5f1e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_lowpri_throttle_tier1_io_period_msecs | |
| [ 4721] 4721 X Data 0xffffff8000a5f1d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_lowpri_throttle_tier1_io_period_ssd_msecs | |
| [ 4722] 4722 X Data 0xffffff8000a5f200 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_lowpri_throttle_tier1_window_msecs | |
| [ 4723] 4723 X Data 0xffffff8000a5f1e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_lowpri_throttle_tier2_io_period_msecs | |
| [ 4724] 4724 X Data 0xffffff8000a5f1c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_lowpri_throttle_tier2_io_period_ssd_msecs | |
| [ 4725] 4725 X Data 0xffffff8000a5f1f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_lowpri_throttle_tier2_window_msecs | |
| [ 4726] 4726 X Data 0xffffff8000a5f1d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_lowpri_throttle_tier3_io_period_msecs | |
| [ 4727] 4727 X Data 0xffffff8000a5f1c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_lowpri_throttle_tier3_io_period_ssd_msecs | |
| [ 4728] 4728 X Data 0xffffff8000a5f1f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_lowpri_throttle_tier3_window_msecs | |
| [ 4729] 4729 X Data 0xffffff8000a617e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_noidle | |
| [ 4730] 4730 X Data 0xffffff8000a60908 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_sched | |
| [ 4731] 4731 X Data 0xffffff8000a617a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_swd_delay_duration | |
| [ 4732] 4732 X Data 0xffffff8000a61798 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_swd_delay_type | |
| [ 4733] 4733 X Data 0xffffff8000a61790 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_swd_kext_name | |
| [ 4734] 4734 X Data 0xffffff8000a60ef0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_sys_override_enabled | |
| [ 4735] 4735 X Data 0xffffff8000a60698 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__debug_toggle_address_reuse | |
| [ 4736] 4736 X Data 0xffffff8000a609c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw | |
| [ 4737] 4737 X Data 0xffffff8000a60c10 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_activecpu | |
| [ 4738] 4738 X Data 0xffffff8000a60ba0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_busfrequency | |
| [ 4739] 4739 X Data 0xffffff8000a60b10 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_busfrequency_compat | |
| [ 4740] 4740 X Data 0xffffff8000a60b90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_busfrequency_max | |
| [ 4741] 4741 X Data 0xffffff8000a60b98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_busfrequency_min | |
| [ 4742] 4742 X Data 0xffffff8000a60be8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_byteorder | |
| [ 4743] 4743 X Data 0xffffff8000a60bc0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cacheconfig | |
| [ 4744] 4744 X Data 0xffffff8000a60b70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cachelinesize | |
| [ 4745] 4745 X Data 0xffffff8000a60b00 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cachelinesize_compat | |
| [ 4746] 4746 X Data 0xffffff8000a60bb8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cachesize | |
| [ 4747] 4747 X Data 0xffffff8000a60bd0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cpu64bit_capable | |
| [ 4748] 4748 X Data 0xffffff8000a60bc8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cpufamily | |
| [ 4749] 4749 X Data 0xffffff8000a60b88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cpufrequency | |
| [ 4750] 4750 X Data 0xffffff8000a60b08 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cpufrequency_compat | |
| [ 4751] 4751 X Data 0xffffff8000a60b78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cpufrequency_max | |
| [ 4752] 4752 X Data 0xffffff8000a60b80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cpufrequency_min | |
| [ 4753] 4753 X Data 0xffffff8000a60bd8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cpusubtype | |
| [ 4754] 4754 X Data 0xffffff8000a60a90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cputhreadtype | |
| [ 4755] 4755 X Data 0xffffff8000a60be0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_cputype | |
| [ 4756] 4756 X Data 0xffffff8000a60ab0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_epoch | |
| [ 4757] 4757 X Data 0xffffff8000a60b20 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_features | |
| [ 4758] 4758 X Data 0xffffff8000a60b60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_l1dcachesize | |
| [ 4759] 4759 X Data 0xffffff8000a60af0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_l1dcachesize_compat | |
| [ 4760] 4760 X Data 0xffffff8000a60b68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_l1icachesize | |
| [ 4761] 4761 X Data 0xffffff8000a60af8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_l1icachesize_compat | |
| [ 4762] 4762 X Data 0xffffff8000a60b58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_l2cachesize | |
| [ 4763] 4763 X Data 0xffffff8000a60ae8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_l2cachesize_compat | |
| [ 4764] 4764 X Data 0xffffff8000a60aa0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_l2settings | |
| [ 4765] 4765 X Data 0xffffff8000a60b50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_l3cachesize | |
| [ 4766] 4766 X Data 0xffffff8000a60ae0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_l3cachesize_compat | |
| [ 4767] 4767 X Data 0xffffff8000a60a98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_l3settings | |
| [ 4768] 4768 X Data 0xffffff8000a60bf8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_logicalcpu | |
| [ 4769] 4769 X Data 0xffffff8000a60bf0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_logicalcpu_max | |
| [ 4770] 4770 X Data 0xffffff8000a60ad0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_machine | |
| [ 4771] 4771 X Data 0xffffff8000a60b40 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_memsize | |
| [ 4772] 4772 X Data 0xffffff8000a60ac8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_model | |
| [ 4773] 4773 X Data 0xffffff8000a60c18 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_ncpu | |
| [ 4774] 4774 X Data 0xffffff8000a60b30 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional | |
| [ 4775] 4775 X Data 0xffffff8000a609f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_adx | |
| [ 4776] 4776 X Data 0xffffff8000a60a48 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_aes | |
| [ 4777] 4777 X Data 0xffffff8000a60a40 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_avx1_0 | |
| [ 4778] 4778 X Data 0xffffff8000a60a18 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_avx2_0 | |
| [ 4779] 4779 X Data 0xffffff8000a60a10 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_bmi1 | |
| [ 4780] 4780 X Data 0xffffff8000a60a08 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_bmi2 | |
| [ 4781] 4781 X Data 0xffffff8000a60a28 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_enfstrg | |
| [ 4782] 4782 X Data 0xffffff8000a60a30 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_f16c | |
| [ 4783] 4783 X Data 0xffffff8000a60b28 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_floatingpoint | |
| [ 4784] 4784 X Data 0xffffff8000a60a20 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_fma | |
| [ 4785] 4785 X Data 0xffffff8000a609f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_hle | |
| [ 4786] 4786 X Data 0xffffff8000a60a88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_mmx | |
| [ 4787] 4787 X Data 0xffffff8000a609e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_mpx | |
| [ 4788] 4788 X Data 0xffffff8000a60a38 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_rdrand | |
| [ 4789] 4789 X Data 0xffffff8000a60a00 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_rtm | |
| [ 4790] 4790 X Data 0xffffff8000a609e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_sgx | |
| [ 4791] 4791 X Data 0xffffff8000a60a80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_sse | |
| [ 4792] 4792 X Data 0xffffff8000a60a78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_sse2 | |
| [ 4793] 4793 X Data 0xffffff8000a60a70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_sse3 | |
| [ 4794] 4794 X Data 0xffffff8000a60a60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_sse4_1 | |
| [ 4795] 4795 X Data 0xffffff8000a60a58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_sse4_2 | |
| [ 4796] 4796 X Data 0xffffff8000a60a68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_supplementalsse3 | |
| [ 4797] 4797 X Data 0xffffff8000a60a50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_optional_x86_64 | |
| [ 4798] 4798 X Data 0xffffff8000a60b38 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_packages | |
| [ 4799] 4799 X Data 0xffffff8000a60bb0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_pagesize | |
| [ 4800] 4800 X Data 0xffffff8000a60ba8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_pagesize32 | |
| [ 4801] 4801 X Data 0xffffff8000a60b18 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_pagesize_compat | |
| [ 4802] 4802 X Data 0xffffff8000a60c08 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_physicalcpu | |
| [ 4803] 4803 X Data 0xffffff8000a60c00 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_physicalcpu_max | |
| [ 4804] 4804 X Data 0xffffff8000a60ac0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_physmem | |
| [ 4805] 4805 X Data 0xffffff8000a617f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_targettype | |
| [ 4806] 4806 X Data 0xffffff8000a60b48 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_tbfrequency | |
| [ 4807] 4807 X Data 0xffffff8000a60ad8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_tbfrequency_compat | |
| [ 4808] 4808 X Data 0xffffff8000a60ab8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_usermem | |
| [ 4809] 4809 X Data 0xffffff8000a60aa8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__hw_vectorunit | |
| [ 4810] 4810 X Data 0xffffff8000a609a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern | |
| [ 4811] 4811 X Data 0xffffff8000a60658 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_affinity_sets_enabled | |
| [ 4812] 4812 X Data 0xffffff8000a60650 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_affinity_sets_mapping | |
| [ 4813] 4813 X Data 0xffffff8000a60800 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_aiomax | |
| [ 4814] 4814 X Data 0xffffff8000a607f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_aioprocmax | |
| [ 4815] 4815 X Data 0xffffff8000a607f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_aiothreads | |
| [ 4816] 4816 X Data 0xffffff8000a60868 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_argmax | |
| [ 4817] 4817 X Data 0xffffff8000a60218 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_backtrace | |
| [ 4818] 4818 X Data 0xffffff8000a60220 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_backtrace_user | |
| [ 4819] 4819 X Data 0xffffff8000a60878 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_bootargs | |
| [ 4820] 4820 X Data 0xffffff8000a60758 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_bootsessionuuid | |
| [ 4821] 4821 X Data 0xffffff8000a61758 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_bootsignature | |
| [ 4822] 4822 X Data 0xffffff8000a60750 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_boottime | |
| [ 4823] 4823 X Data 0xffffff8000a606b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_check_openevt | |
| [ 4824] 4824 X Data 0xffffff8000a60228 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_clockrate | |
| [ 4825] 4825 X Data 0xffffff8000a60c38 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_coalition_page_count | |
| [ 4826] 4826 X Data 0xffffff8000a60c30 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_coalition_pid_list | |
| [ 4827] 4827 X Data 0xffffff8000a60c40 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_coalition_roles | |
| [ 4828] 4828 X Data 0xffffff8000a60c48 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_coalitions | |
| [ 4829] 4829 X Data 0xffffff8000a61810 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_consoleoptions | |
| [ 4830] 4830 X Data 0xffffff8000a606d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_coredump | |
| [ 4831] 4831 X Data 0xffffff8000a606e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_corefile | |
| [ 4832] 4832 X Data 0xffffff8000a606c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_delayterm | |
| [ 4833] 4833 X Data 0xffffff8000a60330 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_development | |
| [ 4834] 4834 X Data 0xffffff8000a60230 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ds_supgroups_supported | |
| [ 4835] 4835 X Data 0xffffff8000a5efc0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_dtrace | |
| [ 4836] 4836 X Data 0xffffff8000a5efd8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_dtrace_buffer_memory_inuse | |
| [ 4837] 4837 X Data 0xffffff8000a5efd0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_dtrace_buffer_memory_maxsize | |
| [ 4838] 4838 X Data 0xffffff8000a5efe0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_dtrace_difo_maxsize | |
| [ 4839] 4839 X Data 0xffffff8000a5efe8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_dtrace_dof_maxsize | |
| [ 4840] 4840 X Data 0xffffff8000a5efc8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_dtrace_err_verbose | |
| [ 4841] 4841 X Data 0xffffff8000a5eff0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_dtrace_global_maxsize | |
| [ 4842] 4842 X Data 0xffffff8000a5eff8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_dtrace_provide_private_probes | |
| [ 4843] 4843 X Data 0xffffff8000a5f178 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_flush_cache_on_write | |
| [ 4844] 4844 X Data 0xffffff8000a61750 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_hibernatefile | |
| [ 4845] 4845 X Data 0xffffff8000a61770 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_hibernategraphicsready | |
| [ 4846] 4846 X Data 0xffffff8000a61788 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_hibernatehidready | |
| [ 4847] 4847 X Data 0xffffff8000a61780 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_hibernatelockscreenready | |
| [ 4848] 4848 X Data 0xffffff8000a61760 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_hibernatemode | |
| [ 4849] 4849 X Data 0xffffff8000a61768 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_hibernatestatistics | |
| [ 4850] 4850 X Data 0xffffff8000a61778 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_hibernatewakenotification | |
| [ 4851] 4851 X Data 0xffffff8000a607d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_hostid | |
| [ 4852] 4852 X Data 0xffffff8000a607d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_hostname | |
| [ 4853] 4853 X Data 0xffffff8000a60340 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_hv_support | |
| [ 4854] 4854 X Data 0xffffff8000a607b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ignore_is_ssd | |
| [ 4855] 4855 X Data 0xffffff8000a60738 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_imgsrcdev | |
| [ 4856] 4856 X Data 0xffffff8000a60730 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_imgsrcinfo | |
| [ 4857] 4857 X Data 0xffffff8000a612a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_interrupt_timer_coalescing_enabled | |
| [ 4858] 4858 X Data 0xffffff8000a617c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_iokittest | |
| [ 4859] 4859 X Data 0xffffff8000a60d80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc | |
| [ 4860] 4860 X Data 0xffffff8000a60cf8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_extbkidlercvhiwat | |
| [ 4861] 4861 X Data 0xffffff8000a60cf0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_extbkidlestat | |
| [ 4862] 4862 X Data 0xffffff8000a60d00 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_extbkidletime | |
| [ 4863] 4863 X Data 0xffffff8000a60da0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_io_policy | |
| [ 4864] 4864 X Data 0xffffff8000a60d90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_io_policy_log | |
| [ 4865] 4865 X Data 0xffffff8000a60d98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_io_policy_throttled | |
| [ 4866] 4866 X Data 0xffffff8000a60d88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_io_policy_uuid | |
| [ 4867] 4867 X Data 0xffffff8000a60d08 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_maxextbkidleperproc | |
| [ 4868] 4868 X Data 0xffffff8000a60e08 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_maxrecvmsgx | |
| [ 4869] 4869 X Data 0xffffff8000a60e00 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_maxsendmsgx | |
| [ 4870] 4870 X Data 0xffffff8000a60df8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_maxsockbuf | |
| [ 4871] 4871 X Data 0xffffff8000a60c90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_mb_drain_force | |
| [ 4872] 4872 X Data 0xffffff8000a60c88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_mb_drain_maxint | |
| [ 4873] 4873 X Data 0xffffff8000a60ca0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_mb_normalized | |
| [ 4874] 4874 X Data 0xffffff8000a60cc0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_mb_stat | |
| [ 4875] 4875 X Data 0xffffff8000a60c98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_mb_watchdog | |
| [ 4876] 4876 X Data 0xffffff8000a60cc8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_mbstat | |
| [ 4877] 4877 X Data 0xffffff8000a60ca8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_mleak_sample_factor | |
| [ 4878] 4878 X Data 0xffffff8000a60cb0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_mleak_table | |
| [ 4879] 4879 X Data 0xffffff8000a60cb8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_mleak_top_trace | |
| [ 4880] 4880 X Data 0xffffff8000a60de0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_njcl | |
| [ 4881] 4881 X Data 0xffffff8000a60dd8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_njclbytes | |
| [ 4882] 4882 X Data 0xffffff8000a60de8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_nmbclusters | |
| [ 4883] 4883 X Data 0xffffff8000a60400 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_portbt | |
| [ 4884] 4884 X Data 0xffffff8000a60dc0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sbmb_cnt | |
| [ 4885] 4885 X Data 0xffffff8000a60db0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sbmb_cnt_floor | |
| [ 4886] 4886 X Data 0xffffff8000a60db8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sbmb_cnt_peak | |
| [ 4887] 4887 X Data 0xffffff8000a60da8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sbmb_limreached | |
| [ 4888] 4888 X Data 0xffffff8000a60df0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sockbuf_waste_factor | |
| [ 4889] 4889 X Data 0xffffff8000a60d70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_socket_debug | |
| [ 4890] 4890 X Data 0xffffff8000a60d68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sodefunct_calls | |
| [ 4891] 4891 X Data 0xffffff8000a60d30 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sodefunctlog | |
| [ 4892] 4892 X Data 0xffffff8000a60d60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_somaxconn | |
| [ 4893] 4893 X Data 0xffffff8000a60dc8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_soqlencomp | |
| [ 4894] 4894 X Data 0xffffff8000a60dd0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_soqlimitcompat | |
| [ 4895] 4895 X Data 0xffffff8000a60d50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sorecvmincopy | |
| [ 4896] 4896 X Data 0xffffff8000a60d10 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_soreserveheadroom | |
| [ 4897] 4897 X Data 0xffffff8000a60d20 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sorestrictrecv | |
| [ 4898] 4898 X Data 0xffffff8000a60d18 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sorestrictsend | |
| [ 4899] 4899 X Data 0xffffff8000a60d38 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sosendbigcl_ignore_capab | |
| [ 4900] 4900 X Data 0xffffff8000a60d48 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sosendjcl | |
| [ 4901] 4901 X Data 0xffffff8000a60d40 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sosendjcl_ignore_capab | |
| [ 4902] 4902 X Data 0xffffff8000a60d58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sosendminchain | |
| [ 4903] 4903 X Data 0xffffff8000a60ce8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sotcdb | |
| [ 4904] 4904 X Data 0xffffff8000a60d28 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_sothrottlelog | |
| [ 4905] 4905 X Data 0xffffff8000a60d78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_throttle_best_effort | |
| [ 4906] 4906 X Data 0xffffff8000a60418 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ipc_voucher_trace_contents | |
| [ 4907] 4907 X Data 0xffffff8000a60980 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_jetsam_aging_policy | |
| [ 4908] 4908 X Data 0xffffff8000a60850 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_job_control | |
| [ 4909] 4909 X Data 0xffffff8000a608c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_kdebug | |
| [ 4910] 4910 X Data 0xffffff8000a60978 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_max_task_pmem | |
| [ 4911] 4911 X Data 0xffffff8000a60870 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_maxfiles | |
| [ 4912] 4912 X Data 0xffffff8000a60328 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_maxfilesperproc | |
| [ 4913] 4913 X Data 0xffffff8000a5f158 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_maxnbuf | |
| [ 4914] 4914 X Data 0xffffff8000a60808 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_maxproc | |
| [ 4915] 4915 X Data 0xffffff8000a60320 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_maxprocperuid | |
| [ 4916] 4916 X Data 0xffffff8000a60810 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_maxvnodes | |
| [ 4917] 4917 X Data 0xffffff8000a60968 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_memorypressure_manual_trigger | |
| [ 4918] 4918 X Data 0xffffff8000a60988 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_memorystatus_apps_idle_delay_time | |
| [ 4919] 4919 X Data 0xffffff8000a60950 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_memorystatus_purge_on_critical | |
| [ 4920] 4920 X Data 0xffffff8000a60958 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_memorystatus_purge_on_urgent | |
| [ 4921] 4921 X Data 0xffffff8000a60960 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_memorystatus_purge_on_warning | |
| [ 4922] 4922 X Data 0xffffff8000a60990 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_memorystatus_sysprocs_idle_delay_time | |
| [ 4923] 4923 X Data 0xffffff8000a60970 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_memorystatus_vm_pressure_level | |
| [ 4924] 4924 X Data 0xffffff8000a60338 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_min_audio_buffer_usec | |
| [ 4925] 4925 X Data 0xffffff8000a60660 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_minimalboot | |
| [ 4926] 4926 X Data 0xffffff8000a60c20 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_msgbuf | |
| [ 4927] 4927 X Data 0xffffff8000a60818 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_namecache_disabled | |
| [ 4928] 4928 X Data 0xffffff8000a5f150 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_nbuf | |
| [ 4929] 4929 X Data 0xffffff8000a60740 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_netboot | |
| [ 4930] 4930 X Data 0xffffff8000a60858 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ngroups | |
| [ 4931] 4931 X Data 0xffffff8000a607e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_nisdomainname | |
| [ 4932] 4932 X Data 0xffffff8000a60840 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_num_files | |
| [ 4933] 4933 X Data 0xffffff8000a60830 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_num_tasks | |
| [ 4934] 4934 X Data 0xffffff8000a60820 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_num_taskthreads | |
| [ 4935] 4935 X Data 0xffffff8000a60828 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_num_threads | |
| [ 4936] 4936 X Data 0xffffff8000a60838 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_num_vnodes | |
| [ 4937] 4937 X Data 0xffffff8000a606a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_nx | |
| [ 4938] 4938 X Data 0xffffff8000a608a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_osrelease | |
| [ 4939] 4939 X Data 0xffffff8000a60898 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_osrevision | |
| [ 4940] 4940 X Data 0xffffff8000a608a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_ostype | |
| [ 4941] 4941 X Data 0xffffff8000a60880 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_osversion | |
| [ 4942] 4942 X Data 0xffffff8000a617a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_pmtimeout | |
| [ 4943] 4943 X Data 0xffffff8000a60ed8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_posix | |
| [ 4944] 4944 X Data 0xffffff8000a60860 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_posix1version | |
| [ 4945] 4945 X Data 0xffffff8000a60ee0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_posix_sem | |
| [ 4946] 4946 X Data 0xffffff8000a60ee8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_posix_sem_max | |
| [ 4947] 4947 X Data 0xffffff8000a607b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_preheat_max_bytes | |
| [ 4948] 4948 X Data 0xffffff8000a607a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_preheat_min_bytes | |
| [ 4949] 4949 X Data 0xffffff8000a60900 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_proc | |
| [ 4950] 4950 X Data 0xffffff8000a608f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_proc_all | |
| [ 4951] 4951 X Data 0xffffff8000a608c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_proc_lcid | |
| [ 4952] 4952 X Data 0xffffff8000a608e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_proc_pgrp | |
| [ 4953] 4953 X Data 0xffffff8000a608f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_proc_pid | |
| [ 4954] 4954 X Data 0xffffff8000a608d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_proc_ruid | |
| [ 4955] 4955 X Data 0xffffff8000a608e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_proc_tty | |
| [ 4956] 4956 X Data 0xffffff8000a608d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_proc_uid | |
| [ 4957] 4957 X Data 0xffffff8000a608b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_procargs | |
| [ 4958] 4958 X Data 0xffffff8000a608b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_procargs2 | |
| [ 4959] 4959 X Data 0xffffff8000a607c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_procname | |
| [ 4960] 4960 X Data 0xffffff8000a61818 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_progressmeter | |
| [ 4961] 4961 X Data 0xffffff8000a61820 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_progressmeterenable | |
| [ 4962] 4962 X Data 0xffffff8000a61808 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_progressoptions | |
| [ 4963] 4963 X Data 0xffffff8000a606c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_rage_vnode | |
| [ 4964] 4964 X Data 0xffffff8000a60670 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_safeboot | |
| [ 4965] 4965 X Data 0xffffff8000a60848 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_saved_ids | |
| [ 4966] 4966 X Data 0xffffff8000a603f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sched | |
| [ 4967] 4967 X Data 0xffffff8000a60918 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sched_stats | |
| [ 4968] 4968 X Data 0xffffff8000a60910 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sched_stats_enable | |
| [ 4969] 4969 X Data 0xffffff8000a60f58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_secure_kernel | |
| [ 4970] 4970 X Data 0xffffff8000a607e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_securelevel | |
| [ 4971] 4971 X Data 0xffffff8000a606b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_setthread_cpupercent | |
| [ 4972] 4972 X Data 0xffffff8000a60688 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_shreg_private | |
| [ 4973] 4973 X Data 0xffffff8000a60668 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_singleuser | |
| [ 4974] 4974 X Data 0xffffff8000a61258 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_skywalk | |
| [ 4975] 4975 X Data 0xffffff8000a61260 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_skywalk_features | |
| [ 4976] 4976 X Data 0xffffff8000a61268 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_skywalk_nexus_channel_list | |
| [ 4977] 4977 X Data 0xffffff8000a61270 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_skywalk_nexus_provider_list | |
| [ 4978] 4978 X Data 0xffffff8000a61830 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sleep_abs_time | |
| [ 4979] 4979 X Data 0xffffff8000a61848 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sleeptime | |
| [ 4980] 4980 X Data 0xffffff8000a60648 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_slide | |
| [ 4981] 4981 X Data 0xffffff8000a607a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_speculative_prefetch_max | |
| [ 4982] 4982 X Data 0xffffff8000a60798 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_speculative_prefetch_max_iosize | |
| [ 4983] 4983 X Data 0xffffff8000a607c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_speculative_reads_disabled | |
| [ 4984] 4984 X Data 0xffffff8000a60408 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_stack_depth_max | |
| [ 4985] 4985 X Data 0xffffff8000a60410 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_stack_size | |
| [ 4986] 4986 X Data 0xffffff8000a606d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sugid_coredump | |
| [ 4987] 4987 X Data 0xffffff8000a602c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sugid_scripts | |
| [ 4988] 4988 X Data 0xffffff8000a60748 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_symfile | |
| [ 4989] 4989 X Data 0xffffff8000a60e60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv | |
| [ 4990] 4990 X Data 0xffffff8000a60e70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_ipcs | |
| [ 4991] 4991 X Data 0xffffff8000a60ed0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_ipcs_msg | |
| [ 4992] 4992 X Data 0xffffff8000a60ea0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_ipcs_sem | |
| [ 4993] 4993 X Data 0xffffff8000a60e68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_ipcs_shm | |
| [ 4994] 4994 X Data 0xffffff8000a60ec8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_semmni | |
| [ 4995] 4995 X Data 0xffffff8000a60ec0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_semmns | |
| [ 4996] 4996 X Data 0xffffff8000a60eb8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_semmnu | |
| [ 4997] 4997 X Data 0xffffff8000a60eb0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_semmsl | |
| [ 4998] 4998 X Data 0xffffff8000a60ea8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_semume | |
| [ 4999] 4999 X Data 0xffffff8000a60e78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_shmall | |
| [ 5000] 5000 X Data 0xffffff8000a60e98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_shmmax | |
| [ 5001] 5001 X Data 0xffffff8000a60e90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_shmmin | |
| [ 5002] 5002 X Data 0xffffff8000a60e88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_shmmni | |
| [ 5003] 5003 X Data 0xffffff8000a60e80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_sysv_shmseg | |
| [ 5004] 5004 X Data 0xffffff8000a60f60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_tfp | |
| [ 5005] 5005 X Data 0xffffff8000a61110 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_tfp_policy | |
| [ 5006] 5006 X Data 0xffffff8000a60920 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_threadname | |
| [ 5007] 5007 X Data 0xffffff8000a60728 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer | |
| [ 5008] 5008 X Data 0xffffff8000a603e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_bg_ns_max | |
| [ 5009] 5009 X Data 0xffffff8000a603f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_bg_scale | |
| [ 5010] 5010 X Data 0xffffff8000a603c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_fp_ns_max | |
| [ 5011] 5011 X Data 0xffffff8000a603c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_fp_scale | |
| [ 5012] 5012 X Data 0xffffff8000a61298 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_idle_entry_hard_deadline_max | |
| [ 5013] 5013 X Data 0xffffff8000a603d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_kt_ns_max | |
| [ 5014] 5014 X Data 0xffffff8000a603d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_kt_scale | |
| [ 5015] 5015 X Data 0xffffff8000a603a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier0_ns_max | |
| [ 5016] 5016 X Data 0xffffff8000a603a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier0_scale | |
| [ 5017] 5017 X Data 0xffffff8000a60390 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier1_ns_max | |
| [ 5018] 5018 X Data 0xffffff8000a60398 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier1_scale | |
| [ 5019] 5019 X Data 0xffffff8000a60380 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier2_ns_max | |
| [ 5020] 5020 X Data 0xffffff8000a60388 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier2_scale | |
| [ 5021] 5021 X Data 0xffffff8000a60370 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier3_ns_max | |
| [ 5022] 5022 X Data 0xffffff8000a60378 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier3_scale | |
| [ 5023] 5023 X Data 0xffffff8000a60360 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier4_ns_max | |
| [ 5024] 5024 X Data 0xffffff8000a60368 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier4_scale | |
| [ 5025] 5025 X Data 0xffffff8000a60350 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier5_ns_max | |
| [ 5026] 5026 X Data 0xffffff8000a60358 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_tier5_scale | |
| [ 5027] 5027 X Data 0xffffff8000a603b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_ts_ns_max | |
| [ 5028] 5028 X Data 0xffffff8000a603b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalesce_ts_scale | |
| [ 5029] 5029 X Data 0xffffff8000a60720 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_coalescing_enabled | |
| [ 5030] 5030 X Data 0xffffff8000a60718 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_deadline_tracking_bin_1 | |
| [ 5031] 5031 X Data 0xffffff8000a60710 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_deadline_tracking_bin_2 | |
| [ 5032] 5032 X Data 0xffffff8000a60708 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_longterm | |
| [ 5033] 5033 X Data 0xffffff8000a606f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_longterm_qlen | |
| [ 5034] 5034 X Data 0xffffff8000a60700 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_longterm_threshold | |
| [ 5035] 5035 X Data 0xffffff8000a603e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_timer_resort_threshold_ns | |
| [ 5036] 5036 X Data 0xffffff8000a60c50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_tty | |
| [ 5037] 5037 X Data 0xffffff8000a60c58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_tty_ptmx_max | |
| [ 5038] 5038 X Data 0xffffff8000a606f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_usrstack | |
| [ 5039] 5039 X Data 0xffffff8000a606e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_usrstack64 | |
| [ 5040] 5040 X Data 0xffffff8000a60888 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_uuid | |
| [ 5041] 5041 X Data 0xffffff8000a60890 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_version | |
| [ 5042] 5042 X Data 0xffffff8000a60760 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_vm_max_batch | |
| [ 5043] 5043 X Data 0xffffff8000a60768 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_vm_max_delayed_work_limit | |
| [ 5044] 5044 X Data 0xffffff8000a60788 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_vm_page_free_min | |
| [ 5045] 5045 X Data 0xffffff8000a60780 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_vm_page_free_reserved | |
| [ 5046] 5046 X Data 0xffffff8000a60790 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_vm_page_free_target | |
| [ 5047] 5047 X Data 0xffffff8000a60778 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_vm_page_speculative_percentage | |
| [ 5048] 5048 X Data 0xffffff8000a60770 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_vm_page_speculative_q_age_ms | |
| [ 5049] 5049 X Data 0xffffff8000a61838 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_wake_abs_time | |
| [ 5050] 5050 X Data 0xffffff8000a61800 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_wakereason | |
| [ 5051] 5051 X Data 0xffffff8000a61840 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_waketime | |
| [ 5052] 5052 X Data 0xffffff8000a61828 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_willshutdown | |
| [ 5053] 5053 X Data 0xffffff8000a602f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_zleak | |
| [ 5054] 5054 X Data 0xffffff8000a60318 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_zleak_active | |
| [ 5055] 5055 X Data 0xffffff8000a60308 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_zleak_global_threshold | |
| [ 5056] 5056 X Data 0xffffff8000a60310 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_zleak_max_zonemap_size | |
| [ 5057] 5057 X Data 0xffffff8000a60300 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kern_zleak_zone_threshold | |
| [ 5058] 5058 X Data 0xffffff8000a611e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc | |
| [ 5059] 5059 X Data 0xffffff8000a611f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_actionid | |
| [ 5060] 5060 X Data 0xffffff8000a61250 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_classes | |
| [ 5061] 5061 X Data 0xffffff8000a61200 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_config | |
| [ 5062] 5062 X Data 0xffffff8000a61230 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_config_count | |
| [ 5063] 5063 X Data 0xffffff8000a61228 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_counter_count | |
| [ 5064] 5064 X Data 0xffffff8000a61210 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_counters | |
| [ 5065] 5065 X Data 0xffffff8000a61248 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_counting | |
| [ 5066] 5066 X Data 0xffffff8000a611e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_force_all_ctrs | |
| [ 5067] 5067 X Data 0xffffff8000a611f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_period | |
| [ 5068] 5068 X Data 0xffffff8000a61238 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_pmu_version | |
| [ 5069] 5069 X Data 0xffffff8000a61208 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_shadow_counters | |
| [ 5070] 5070 X Data 0xffffff8000a61220 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_sw_inc | |
| [ 5071] 5071 X Data 0xffffff8000a61218 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_thread_counters | |
| [ 5072] 5072 X Data 0xffffff8000a61240 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kpc_thread_counting | |
| [ 5073] 5073 X Data 0xffffff8000a61118 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf | |
| [ 5074] 5074 X Data 0xffffff8000a61120 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_action | |
| [ 5075] 5075 X Data 0xffffff8000a611d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_action_count | |
| [ 5076] 5076 X Data 0xffffff8000a611b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_action_filter_by_pid | |
| [ 5077] 5077 X Data 0xffffff8000a611c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_action_filter_by_task | |
| [ 5078] 5078 X Data 0xffffff8000a611a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_action_kcallstack_depth | |
| [ 5079] 5079 X Data 0xffffff8000a611d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_action_samplers | |
| [ 5080] 5080 X Data 0xffffff8000a611b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_action_ucallstack_depth | |
| [ 5081] 5081 X Data 0xffffff8000a611c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_action_userdata | |
| [ 5082] 5082 X Data 0xffffff8000a61150 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_blessed_pid | |
| [ 5083] 5083 X Data 0xffffff8000a61148 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_blessed_preempt | |
| [ 5084] 5084 X Data 0xffffff8000a61128 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_debug_level | |
| [ 5085] 5085 X Data 0xffffff8000a61140 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_kdbg_cswitch | |
| [ 5086] 5086 X Data 0xffffff8000a61178 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_kdebug | |
| [ 5087] 5087 X Data 0xffffff8000a61170 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_kdebug_action | |
| [ 5088] 5088 X Data 0xffffff8000a61168 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_kdebug_filter | |
| [ 5089] 5089 X Data 0xffffff8000a61130 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_lightweight_pet | |
| [ 5090] 5090 X Data 0xffffff8000a61138 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_pet_idle_rate | |
| [ 5091] 5091 X Data 0xffffff8000a61158 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_reset | |
| [ 5092] 5092 X Data 0xffffff8000a61160 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_sampling | |
| [ 5093] 5093 X Data 0xffffff8000a611a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_timer | |
| [ 5094] 5094 X Data 0xffffff8000a61188 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_timer_action | |
| [ 5095] 5095 X Data 0xffffff8000a61198 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_timer_count | |
| [ 5096] 5096 X Data 0xffffff8000a61190 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_timer_period | |
| [ 5097] 5097 X Data 0xffffff8000a61180 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__kperf_timer_pet_timer | |
| [ 5098] 5098 X Data 0xffffff8000a602c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__ktrace | |
| [ 5099] 5099 X Data 0xffffff8000a602e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__ktrace_background_pid | |
| [ 5100] 5100 X Data 0xffffff8000a602e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__ktrace_configured_by | |
| [ 5101] 5101 X Data 0xffffff8000a602f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__ktrace_init_background | |
| [ 5102] 5102 X Data 0xffffff8000a602d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__ktrace_owning_pid | |
| [ 5103] 5103 X Data 0xffffff8000a602d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__ktrace_state | |
| [ 5104] 5104 X Data 0xffffff8000a609d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep | |
| [ 5105] 5105 X Data 0xffffff8000a61278 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu | |
| [ 5106] 5106 X Data 0xffffff8000a61550 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_address_bits | |
| [ 5107] 5107 X Data 0xffffff8000a61548 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_address_bits_physical | |
| [ 5108] 5108 X Data 0xffffff8000a61540 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_address_bits_virtual | |
| [ 5109] 5109 X Data 0xffffff8000a61600 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_arch_perf | |
| [ 5110] 5110 X Data 0xffffff8000a615d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_arch_perf_events | |
| [ 5111] 5111 X Data 0xffffff8000a615e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_arch_perf_events_number | |
| [ 5112] 5112 X Data 0xffffff8000a615d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_arch_perf_fixed_number | |
| [ 5113] 5113 X Data 0xffffff8000a615c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_arch_perf_fixed_width | |
| [ 5114] 5114 X Data 0xffffff8000a615f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_arch_perf_number | |
| [ 5115] 5115 X Data 0xffffff8000a615f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_arch_perf_version | |
| [ 5116] 5116 X Data 0xffffff8000a615e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_arch_perf_width | |
| [ 5117] 5117 X Data 0xffffff8000a616d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_brand | |
| [ 5118] 5118 X Data 0xffffff8000a61728 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_brand_string | |
| [ 5119] 5119 X Data 0xffffff8000a615c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_cache | |
| [ 5120] 5120 X Data 0xffffff8000a615b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_cache_L2_associativity | |
| [ 5121] 5121 X Data 0xffffff8000a615b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_cache_linesize | |
| [ 5122] 5122 X Data 0xffffff8000a615a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_cache_size | |
| [ 5123] 5123 X Data 0xffffff8000a61538 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_core_count | |
| [ 5124] 5124 X Data 0xffffff8000a616b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_cores_per_package | |
| [ 5125] 5125 X Data 0xffffff8000a61708 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_extfamily | |
| [ 5126] 5126 X Data 0xffffff8000a616e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_extfeature_bits | |
| [ 5127] 5127 X Data 0xffffff8000a616c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_extfeatures | |
| [ 5128] 5128 X Data 0xffffff8000a61710 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_extmodel | |
| [ 5129] 5129 X Data 0xffffff8000a61720 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_family | |
| [ 5130] 5130 X Data 0xffffff8000a616f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_feature_bits | |
| [ 5131] 5131 X Data 0xffffff8000a616d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_features | |
| [ 5132] 5132 X Data 0xffffff8000a61528 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_flex_ratio | |
| [ 5133] 5133 X Data 0xffffff8000a61520 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_flex_ratio_desired | |
| [ 5134] 5134 X Data 0xffffff8000a61510 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_flex_ratio_max | |
| [ 5135] 5135 X Data 0xffffff8000a61518 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_flex_ratio_min | |
| [ 5136] 5136 X Data 0xffffff8000a616f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_leaf7_feature_bits | |
| [ 5137] 5137 X Data 0xffffff8000a616c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_leaf7_features | |
| [ 5138] 5138 X Data 0xffffff8000a616b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_logical_per_package | |
| [ 5139] 5139 X Data 0xffffff8000a61740 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_max_basic | |
| [ 5140] 5140 X Data 0xffffff8000a61738 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_max_ext | |
| [ 5141] 5141 X Data 0xffffff8000a616a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_microcode_version | |
| [ 5142] 5142 X Data 0xffffff8000a61718 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_model | |
| [ 5143] 5143 X Data 0xffffff8000a61698 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_mwait | |
| [ 5144] 5144 X Data 0xffffff8000a61680 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_mwait_extensions | |
| [ 5145] 5145 X Data 0xffffff8000a61688 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_mwait_linesize_max | |
| [ 5146] 5146 X Data 0xffffff8000a61690 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_mwait_linesize_min | |
| [ 5147] 5147 X Data 0xffffff8000a61678 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_mwait_sub_Cstates | |
| [ 5148] 5148 X Data 0xffffff8000a616a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_processor_flag | |
| [ 5149] 5149 X Data 0xffffff8000a616e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_signature | |
| [ 5150] 5150 X Data 0xffffff8000a61700 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_stepping | |
| [ 5151] 5151 X Data 0xffffff8000a61670 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thermal | |
| [ 5152] 5152 X Data 0xffffff8000a61648 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thermal_ACNT_MCNT | |
| [ 5153] 5153 X Data 0xffffff8000a61640 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thermal_core_power_limits | |
| [ 5154] 5154 X Data 0xffffff8000a61660 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thermal_dynamic_acceleration | |
| [ 5155] 5155 X Data 0xffffff8000a61620 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thermal_energy_policy | |
| [ 5156] 5156 X Data 0xffffff8000a61638 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thermal_fine_grain_clock_mod | |
| [ 5157] 5157 X Data 0xffffff8000a61628 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thermal_hardware_feedback | |
| [ 5158] 5158 X Data 0xffffff8000a61658 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thermal_invariant_APIC_timer | |
| [ 5159] 5159 X Data 0xffffff8000a61630 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thermal_package_thermal_intr | |
| [ 5160] 5160 X Data 0xffffff8000a61668 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thermal_sensor | |
| [ 5161] 5161 X Data 0xffffff8000a61650 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thermal_thresholds | |
| [ 5162] 5162 X Data 0xffffff8000a61530 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_thread_count | |
| [ 5163] 5163 X Data 0xffffff8000a615a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tlb | |
| [ 5164] 5164 X Data 0xffffff8000a61590 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tlb_data | |
| [ 5165] 5165 X Data 0xffffff8000a61568 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tlb_data_large | |
| [ 5166] 5166 X Data 0xffffff8000a61560 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tlb_data_large_level1 | |
| [ 5167] 5167 X Data 0xffffff8000a61580 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tlb_data_small | |
| [ 5168] 5168 X Data 0xffffff8000a61578 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tlb_data_small_level1 | |
| [ 5169] 5169 X Data 0xffffff8000a61598 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tlb_inst | |
| [ 5170] 5170 X Data 0xffffff8000a61570 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tlb_inst_large | |
| [ 5171] 5171 X Data 0xffffff8000a61588 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tlb_inst_small | |
| [ 5172] 5172 X Data 0xffffff8000a61558 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tlb_shared | |
| [ 5173] 5173 X Data 0xffffff8000a61500 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tsc_ccc | |
| [ 5174] 5174 X Data 0xffffff8000a614f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tsc_ccc_denominator | |
| [ 5175] 5175 X Data 0xffffff8000a614f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_tsc_ccc_numerator | |
| [ 5176] 5176 X Data 0xffffff8000a61508 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_ucupdate | |
| [ 5177] 5177 X Data 0xffffff8000a61730 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_vendor | |
| [ 5178] 5178 X Data 0xffffff8000a61618 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_xsave | |
| [ 5179] 5179 X Data 0xffffff8000a61610 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_xsave_extended_state | |
| [ 5180] 5180 X Data 0xffffff8000a61608 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_cpu_xsave_extended_state1 | |
| [ 5181] 5181 X Data 0xffffff8000a61288 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_eager_timer_evaluation_max | |
| [ 5182] 5182 X Data 0xffffff8000a61290 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_eager_timer_evaluations | |
| [ 5183] 5183 X Data 0xffffff8000a614a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_memmap | |
| [ 5184] 5184 X Data 0xffffff8000a61480 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_memmap_ACPINVS | |
| [ 5185] 5185 X Data 0xffffff8000a61488 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_memmap_ACPIReclaim | |
| [ 5186] 5186 X Data 0xffffff8000a61498 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_memmap_Conventional | |
| [ 5187] 5187 X Data 0xffffff8000a61460 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_memmap_Other | |
| [ 5188] 5188 X Data 0xffffff8000a61478 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_memmap_PalCode | |
| [ 5189] 5189 X Data 0xffffff8000a61470 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_memmap_Reserved | |
| [ 5190] 5190 X Data 0xffffff8000a61490 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_memmap_RuntimeServices | |
| [ 5191] 5191 X Data 0xffffff8000a61468 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_memmap_Unusable | |
| [ 5192] 5192 X Data 0xffffff8000a61400 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_misc | |
| [ 5193] 5193 X Data 0xffffff8000a612c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_misc_fast_uexc_support | |
| [ 5194] 5194 X Data 0xffffff8000a612b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_misc_interrupt_latency_max | |
| [ 5195] 5195 X Data 0xffffff8000a612a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_misc_nmis | |
| [ 5196] 5196 X Data 0xffffff8000a612c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_misc_panic_restart_timeout | |
| [ 5197] 5197 X Data 0xffffff8000a612b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_misc_timer_queue_trace | |
| [ 5198] 5198 X Data 0xffffff8000a614d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_pmap | |
| [ 5199] 5199 X Data 0xffffff8000a614c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_pmap_hashcnts | |
| [ 5200] 5200 X Data 0xffffff8000a614b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_pmap_hashmax | |
| [ 5201] 5201 X Data 0xffffff8000a614c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_pmap_hashwalks | |
| [ 5202] 5202 X Data 0xffffff8000a614a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_pmap_kern_pv_reserve | |
| [ 5203] 5203 X Data 0xffffff8000a614b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_pmap_kernel_text_ps | |
| [ 5204] 5204 X Data 0xffffff8000a61458 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_tsc | |
| [ 5205] 5205 X Data 0xffffff8000a61440 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_tsc_at_boot | |
| [ 5206] 5206 X Data 0xffffff8000a61448 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_tsc_deep_idle_rebase | |
| [ 5207] 5207 X Data 0xffffff8000a61450 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_tsc_frequency | |
| [ 5208] 5208 X Data 0xffffff8000a61430 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_tsc_nanotime | |
| [ 5209] 5209 X Data 0xffffff8000a61408 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_tsc_nanotime_generation | |
| [ 5210] 5210 X Data 0xffffff8000a61420 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_tsc_nanotime_ns_base | |
| [ 5211] 5211 X Data 0xffffff8000a61418 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_tsc_nanotime_scale | |
| [ 5212] 5212 X Data 0xffffff8000a61410 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_tsc_nanotime_shift | |
| [ 5213] 5213 X Data 0xffffff8000a61428 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_tsc_nanotime_tsc_base | |
| [ 5214] 5214 X Data 0xffffff8000a61438 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_tsc_rebase_abs_time | |
| [ 5215] 5215 X Data 0xffffff8000a60348 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_user_idle_level | |
| [ 5216] 5216 X Data 0xffffff8000a614e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_vectors | |
| [ 5217] 5217 X Data 0xffffff8000a614d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_vectors_IPI | |
| [ 5218] 5218 X Data 0xffffff8000a614e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_vectors_timer | |
| [ 5219] 5219 X Data 0xffffff8000a61280 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_x86_fp_simd_isr_uses | |
| [ 5220] 5220 X Data 0xffffff8000a613f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm | |
| [ 5221] 5221 X Data 0xffffff8000a613a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_bootplim | |
| [ 5222] 5222 X Data 0xffffff8000a613a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_bootpst | |
| [ 5223] 5223 X Data 0xffffff8000a61318 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_cpu_thermal_level | |
| [ 5224] 5224 X Data 0xffffff8000a61330 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_deep_idle_count | |
| [ 5225] 5225 X Data 0xffffff8000a61328 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_deep_idle_last_stats | |
| [ 5226] 5226 X Data 0xffffff8000a61340 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_deep_idle_log | |
| [ 5227] 5227 X Data 0xffffff8000a61320 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_deep_idle_total_stats | |
| [ 5228] 5228 X Data 0xffffff8000a612d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_epp_override | |
| [ 5229] 5229 X Data 0xffffff8000a61348 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_forced_idle_period | |
| [ 5230] 5230 X Data 0xffffff8000a61350 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_forced_idle_ratio | |
| [ 5231] 5231 X Data 0xffffff8000a61310 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_gpu_thermal_level | |
| [ 5232] 5232 X Data 0xffffff8000a613e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_hard_plimit_max_100mhz_ratio | |
| [ 5233] 5233 X Data 0xffffff8000a613e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_hard_plimit_min_100mhz_ratio | |
| [ 5234] 5234 X Data 0xffffff8000a612f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_io_control_disengages | |
| [ 5235] 5235 X Data 0xffffff8000a61300 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_io_control_engages | |
| [ 5236] 5236 X Data 0xffffff8000a612e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_io_cst_control_enabled | |
| [ 5237] 5237 X Data 0xffffff8000a612d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_io_epp_boost_enabled | |
| [ 5238] 5238 X Data 0xffffff8000a612f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_io_filtered_reads | |
| [ 5239] 5239 X Data 0xffffff8000a61308 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_io_thermal_level | |
| [ 5240] 5240 X Data 0xffffff8000a61378 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_maxbusdelay | |
| [ 5241] 5241 X Data 0xffffff8000a61370 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_maxintdelay | |
| [ 5242] 5242 X Data 0xffffff8000a61360 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_mbd_applications | |
| [ 5243] 5243 X Data 0xffffff8000a61368 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_mbd_mode | |
| [ 5244] 5244 X Data 0xffffff8000a61358 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_mbd_relaxations | |
| [ 5245] 5245 X Data 0xffffff8000a613f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_mode | |
| [ 5246] 5246 X Data 0xffffff8000a613b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_power_source | |
| [ 5247] 5247 X Data 0xffffff8000a61338 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_qos_txfr | |
| [ 5248] 5248 X Data 0xffffff8000a61388 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_ratio_change_ratelimit_ns | |
| [ 5249] 5249 X Data 0xffffff8000a61380 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_ratio_changes_total | |
| [ 5250] 5250 X Data 0xffffff8000a612e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_ring_boost_enabled | |
| [ 5251] 5251 X Data 0xffffff8000a613d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_soft_plimit_max_100mhz_ratio | |
| [ 5252] 5252 X Data 0xffffff8000a613d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_soft_plimit_min_100mhz_ratio | |
| [ 5253] 5253 X Data 0xffffff8000a613b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_tuib_enabled | |
| [ 5254] 5254 X Data 0xffffff8000a61398 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_tuib_ns | |
| [ 5255] 5255 X Data 0xffffff8000a613c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_tuib_plimit_max_100mhz_ratio | |
| [ 5256] 5256 X Data 0xffffff8000a613c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_tuib_plimit_min_100mhz_ratio | |
| [ 5257] 5257 X Data 0xffffff8000a61390 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__machdep_xcpm_vectors_loaded_count | |
| [ 5258] 5258 X Data 0xffffff8000a609b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net | |
| [ 5259] 5259 X Data 0xffffff8000a5f508 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_cfil | |
| [ 5260] 5260 X Data 0xffffff8000a5f528 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_cfil_active_count | |
| [ 5261] 5261 X Data 0xffffff8000a5f530 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_cfil_close_wait_timeout | |
| [ 5262] 5262 X Data 0xffffff8000a5f518 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_cfil_debug | |
| [ 5263] 5263 X Data 0xffffff8000a5f550 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_cfil_filter_list | |
| [ 5264] 5264 X Data 0xffffff8000a5f510 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_cfil_log | |
| [ 5265] 5265 X Data 0xffffff8000a5f538 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_cfil_sbtrim | |
| [ 5266] 5266 X Data 0xffffff8000a5f520 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_cfil_sock_attached_count | |
| [ 5267] 5267 X Data 0xffffff8000a5f548 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_cfil_sock_list | |
| [ 5268] 5268 X Data 0xffffff8000a5f540 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_cfil_stats | |
| [ 5269] 5269 X Data 0xffffff8000a5f568 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq | |
| [ 5270] 5270 X Data 0xffffff8000a5f578 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq_sfb | |
| [ 5271] 5271 X Data 0xffffff8000a5f5a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq_sfb_allocation | |
| [ 5272] 5272 X Data 0xffffff8000a5f5a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq_sfb_decrement | |
| [ 5273] 5273 X Data 0xffffff8000a5f590 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq_sfb_hinterval | |
| [ 5274] 5274 X Data 0xffffff8000a5f580 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq_sfb_holdtime | |
| [ 5275] 5275 X Data 0xffffff8000a5f598 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq_sfb_increment | |
| [ 5276] 5276 X Data 0xffffff8000a5f588 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq_sfb_pboxtime | |
| [ 5277] 5277 X Data 0xffffff8000a5f5b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq_sfb_ratelimit | |
| [ 5278] 5278 X Data 0xffffff8000a5f5b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq_target_qdelay | |
| [ 5279] 5279 X Data 0xffffff8000a5f5c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq_update_interval | |
| [ 5280] 5280 X Data 0xffffff8000a5f570 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_classq_verbose | |
| [ 5281] 5281 X Data 0xffffff8000a5f768 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet | |
| [ 5282] 5282 X Data 0xffffff8000a600b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6 | |
| [ 5283] 5283 X Data 0xffffff8000a600a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6 | |
| [ 5284] 5284 X Data 0xffffff8000a5ff48 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_errppslimit | |
| [ 5285] 5285 X Data 0xffffff8000a5ff58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_accept_6to4 | |
| [ 5286] 5286 X Data 0xffffff8000a5ff38 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_debug | |
| [ 5287] 5287 X Data 0xffffff8000a5ff78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_delay | |
| [ 5288] 5288 X Data 0xffffff8000a60120 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_drlist | |
| [ 5289] 5289 X Data 0xffffff8000a60128 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_llreach_base | |
| [ 5290] 5290 X Data 0xffffff8000a60140 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_maxproxiedsol | |
| [ 5291] 5291 X Data 0xffffff8000a60138 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_maxsolstgt | |
| [ 5292] 5292 X Data 0xffffff8000a5ff68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_mmaxtries | |
| [ 5293] 5293 X Data 0xffffff8000a5ff30 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_onlink_ns_rfc4861 | |
| [ 5294] 5294 X Data 0xffffff8000a5ff28 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_optimistic_dad | |
| [ 5295] 5295 X Data 0xffffff8000a60118 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_prlist | |
| [ 5296] 5296 X Data 0xffffff8000a5ff88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_prune | |
| [ 5297] 5297 X Data 0xffffff8000a5ff80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_prune_lazy | |
| [ 5298] 5298 X Data 0xffffff8000a5ff70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_umaxtries | |
| [ 5299] 5299 X Data 0xffffff8000a5ff60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nd6_useloopback | |
| [ 5300] 5300 X Data 0xffffff8000a5ff50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_nodeinfo | |
| [ 5301] 5301 X Data 0xffffff8000a60148 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_prproxy_cnt | |
| [ 5302] 5302 X Data 0xffffff8000a5ff40 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_rappslimit | |
| [ 5303] 5303 X Data 0xffffff8000a5ffa0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_rediraccept | |
| [ 5304] 5304 X Data 0xffffff8000a5ff98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_redirtimeout | |
| [ 5305] 5305 X Data 0xffffff8000a5ff90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_icmp6_stats | |
| [ 5306] 5306 X Data 0xffffff8000a600b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6 | |
| [ 5307] 5307 X Data 0xffffff8000a60068 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_accept_rtadv | |
| [ 5308] 5308 X Data 0xffffff8000a5fef8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_addrctlpolicy | |
| [ 5309] 5309 X Data 0xffffff8000a5fea8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_adj_clear_hwcksum | |
| [ 5310] 5310 X Data 0xffffff8000a60040 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_auto_flowlabel | |
| [ 5311] 5311 X Data 0xffffff8000a5fff0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_auto_linklocal | |
| [ 5312] 5312 X Data 0xffffff8000a60048 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_dad_count | |
| [ 5313] 5313 X Data 0xffffff8000a60130 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_dad_enhanced | |
| [ 5314] 5314 X Data 0xffffff8000a60038 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_defmcasthlim | |
| [ 5315] 5315 X Data 0xffffff8000a60088 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_forwarding | |
| [ 5316] 5316 X Data 0xffffff8000a5fe98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_fragpackets | |
| [ 5317] 5317 X Data 0xffffff8000a60030 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_gifhlim | |
| [ 5318] 5318 X Data 0xffffff8000a60050 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_hdrnestlimit | |
| [ 5319] 5319 X Data 0xffffff8000a60078 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_hlim | |
| [ 5320] 5320 X Data 0xffffff8000a5fec0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_input_perf | |
| [ 5321] 5321 X Data 0xffffff8000a5feb8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_input_perf_bins | |
| [ 5322] 5322 X Data 0xffffff8000a5feb0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_input_perf_data | |
| [ 5323] 5323 X Data 0xffffff8000a60028 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_kame_version | |
| [ 5324] 5324 X Data 0xffffff8000a60060 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_keepfaith | |
| [ 5325] 5325 X Data 0xffffff8000a60058 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_log_interval | |
| [ 5326] 5326 X Data 0xffffff8000a60110 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_maxchainsent | |
| [ 5327] 5327 X Data 0xffffff8000a5ffb0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_maxdynroutes | |
| [ 5328] 5328 X Data 0xffffff8000a5fea0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_maxfragpackets | |
| [ 5329] 5329 X Data 0xffffff8000a5fe90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_maxfrags | |
| [ 5330] 5330 X Data 0xffffff8000a5ffb8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_maxifdefrouters | |
| [ 5331] 5331 X Data 0xffffff8000a5ffc0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_maxifprefixes | |
| [ 5332] 5332 X Data 0xffffff8000a5ff00 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_mcast | |
| [ 5333] 5333 X Data 0xffffff8000a5ff20 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_mcast_filters | |
| [ 5334] 5334 X Data 0xffffff8000a5ff18 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_mcast_loop | |
| [ 5335] 5335 X Data 0xffffff8000a5ff08 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_mcast_maxgrpsrc | |
| [ 5336] 5336 X Data 0xffffff8000a5ff10 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_mcast_maxsocksrc | |
| [ 5337] 5337 X Data 0xffffff8000a5ffd0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_mcast_pmtu | |
| [ 5338] 5338 X Data 0xffffff8000a5ffc8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_neighborgcthresh | |
| [ 5339] 5339 X Data 0xffffff8000a5ffa8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_only_allow_rfc4193_prefixes | |
| [ 5340] 5340 X Data 0xffffff8000a5fed8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_output_perf | |
| [ 5341] 5341 X Data 0xffffff8000a5fed0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_output_perf_bins | |
| [ 5342] 5342 X Data 0xffffff8000a5fec8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_output_perf_data | |
| [ 5343] 5343 X Data 0xffffff8000a5ffe0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_prefer_tempaddr | |
| [ 5344] 5344 X Data 0xffffff8000a60080 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_redirect | |
| [ 5345] 5345 X Data 0xffffff8000a5ffe8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_rip6stats | |
| [ 5346] 5346 X Data 0xffffff8000a60018 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_rr_prune | |
| [ 5347] 5347 X Data 0xffffff8000a600c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_rtexpire | |
| [ 5348] 5348 X Data 0xffffff8000a600d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_rtmaxcache | |
| [ 5349] 5349 X Data 0xffffff8000a600c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_rtminexpire | |
| [ 5350] 5350 X Data 0xffffff8000a5fef0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_select_src_expensive_secondary_if | |
| [ 5351] 5351 X Data 0xffffff8000a5fee8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_select_srcaddr_debug | |
| [ 5352] 5352 X Data 0xffffff8000a5fee0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_select_srcif_debug | |
| [ 5353] 5353 X Data 0xffffff8000a60070 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_stats | |
| [ 5354] 5354 X Data 0xffffff8000a60008 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_temppltime | |
| [ 5355] 5355 X Data 0xffffff8000a60000 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_tempvltime | |
| [ 5356] 5356 X Data 0xffffff8000a5ffd8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_use_defaultzone | |
| [ 5357] 5357 X Data 0xffffff8000a60020 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_use_deprecated | |
| [ 5358] 5358 X Data 0xffffff8000a60010 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_use_tempaddr | |
| [ 5359] 5359 X Data 0xffffff8000a5fff8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ip6_v6only | |
| [ 5360] 5360 X Data 0xffffff8000a60090 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ipsec6 | |
| [ 5361] 5361 X Data 0xffffff8000a5fdf8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ipsec6_ah_net_deflev | |
| [ 5362] 5362 X Data 0xffffff8000a5fe00 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ipsec6_ah_trans_deflev | |
| [ 5363] 5363 X Data 0xffffff8000a5fde8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ipsec6_debug | |
| [ 5364] 5364 X Data 0xffffff8000a5fe18 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ipsec6_def_policy | |
| [ 5365] 5365 X Data 0xffffff8000a5fdf0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ipsec6_ecn | |
| [ 5366] 5366 X Data 0xffffff8000a5fe08 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ipsec6_esp_net_deflev | |
| [ 5367] 5367 X Data 0xffffff8000a5fde0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ipsec6_esp_randpad | |
| [ 5368] 5368 X Data 0xffffff8000a5fe10 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ipsec6_esp_trans_deflev | |
| [ 5369] 5369 X Data 0xffffff8000a5fe20 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_ipsec6_stats | |
| [ 5370] 5370 X Data 0xffffff8000a600d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_mld | |
| [ 5371] 5371 X Data 0xffffff8000a600e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_mld_debug | |
| [ 5372] 5372 X Data 0xffffff8000a60108 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_mld_gsrdelay | |
| [ 5373] 5373 X Data 0xffffff8000a60100 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_mld_ifinfo | |
| [ 5374] 5374 X Data 0xffffff8000a600e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_mld_use_allow | |
| [ 5375] 5375 X Data 0xffffff8000a600f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_mld_v1enable | |
| [ 5376] 5376 X Data 0xffffff8000a600f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_mld_v2enable | |
| [ 5377] 5377 X Data 0xffffff8000a60150 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_send | |
| [ 5378] 5378 X Data 0xffffff8000a60168 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_send_cga_parameters | |
| [ 5379] 5379 X Data 0xffffff8000a60160 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_send_opmode | |
| [ 5380] 5380 X Data 0xffffff8000a60158 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_send_opstate | |
| [ 5381] 5381 X Data 0xffffff8000a60098 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_tcp6 | |
| [ 5382] 5382 X Data 0xffffff8000a600a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet6_udp6 | |
| [ 5383] 5383 X Data 0xffffff8000a5f758 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_icmp | |
| [ 5384] 5384 X Data 0xffffff8000a5f870 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_icmp_bmcastecho | |
| [ 5385] 5385 X Data 0xffffff8000a5f858 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_icmp_drop_redirect | |
| [ 5386] 5386 X Data 0xffffff8000a5f868 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_icmp_icmplim | |
| [ 5387] 5387 X Data 0xffffff8000a5f860 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_icmp_log_redirect | |
| [ 5388] 5388 X Data 0xffffff8000a5f848 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_icmp_maskrepl | |
| [ 5389] 5389 X Data 0xffffff8000a5f840 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_icmp_stats | |
| [ 5390] 5390 X Data 0xffffff8000a5f850 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_icmp_timestamp | |
| [ 5391] 5391 X Data 0xffffff8000a5f740 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp | |
| [ 5392] 5392 X Data 0xffffff8000a5f620 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_debug | |
| [ 5393] 5393 X Data 0xffffff8000a5f630 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_default_version | |
| [ 5394] 5394 X Data 0xffffff8000a5f628 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_gsrdelay | |
| [ 5395] 5395 X Data 0xffffff8000a5f618 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_ifinfo | |
| [ 5396] 5396 X Data 0xffffff8000a5f610 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_legacysupp | |
| [ 5397] 5397 X Data 0xffffff8000a5f5e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_recvifkludge | |
| [ 5398] 5398 X Data 0xffffff8000a5f5f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_sendlocal | |
| [ 5399] 5399 X Data 0xffffff8000a5f5f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_sendra | |
| [ 5400] 5400 X Data 0xffffff8000a5f5d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_stats | |
| [ 5401] 5401 X Data 0xffffff8000a5f600 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_v1enable | |
| [ 5402] 5402 X Data 0xffffff8000a5f608 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_v2enable | |
| [ 5403] 5403 X Data 0xffffff8000a5f5e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_igmp_v3stats | |
| [ 5404] 5404 X Data 0xffffff8000a5f760 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip | |
| [ 5405] 5405 X Data 0xffffff8000a5f900 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_accept_sourceroute | |
| [ 5406] 5406 X Data 0xffffff8000a5f8d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_adj_clear_hwcksum | |
| [ 5407] 5407 X Data 0xffffff8000a5f8d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_check_interface | |
| [ 5408] 5408 X Data 0xffffff8000a5f7d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet | |
| [ 5409] 5409 X Data 0xffffff8000a5f7e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_curr_time | |
| [ 5410] 5410 X Data 0xffffff8000a5f838 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_debug | |
| [ 5411] 5411 X Data 0xffffff8000a5f810 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_expire | |
| [ 5412] 5412 X Data 0xffffff8000a5f7f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_extract_heap | |
| [ 5413] 5413 X Data 0xffffff8000a5f7e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_hash_size | |
| [ 5414] 5414 X Data 0xffffff8000a5f818 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_max_chain_len | |
| [ 5415] 5415 X Data 0xffffff8000a5f7f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_ready_heap | |
| [ 5416] 5416 X Data 0xffffff8000a5f828 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_red_avg_pkt_size | |
| [ 5417] 5417 X Data 0xffffff8000a5f820 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_red_lookup_depth | |
| [ 5418] 5418 X Data 0xffffff8000a5f830 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_red_max_pkt_size | |
| [ 5419] 5419 X Data 0xffffff8000a5f808 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_search_steps | |
| [ 5420] 5420 X Data 0xffffff8000a5f800 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_dummynet_searches | |
| [ 5421] 5421 X Data 0xffffff8000a5f920 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_forwarding | |
| [ 5422] 5422 X Data 0xffffff8000a5f8e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_fragpackets | |
| [ 5423] 5423 X Data 0xffffff8000a5fce0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_gifttl | |
| [ 5424] 5424 X Data 0xffffff8000a5f8b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_linklocal | |
| [ 5425] 5425 X Data 0xffffff8000a5f8a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_linklocal_in | |
| [ 5426] 5426 X Data 0xffffff8000a5f898 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_linklocal_in_allowbadttl | |
| [ 5427] 5427 X Data 0xffffff8000a5f8a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_linklocal_stat | |
| [ 5428] 5428 X Data 0xffffff8000a5f928 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_maxchainsent | |
| [ 5429] 5429 X Data 0xffffff8000a5f8f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_maxfragpackets | |
| [ 5430] 5430 X Data 0xffffff8000a5f8e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_maxfragsperpacket | |
| [ 5431] 5431 X Data 0xffffff8000a5f6c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_mcast | |
| [ 5432] 5432 X Data 0xffffff8000a5f6e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_mcast_filters | |
| [ 5433] 5433 X Data 0xffffff8000a5f6e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_mcast_loop | |
| [ 5434] 5434 X Data 0xffffff8000a5f6d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_mcast_maxgrpsrc | |
| [ 5435] 5435 X Data 0xffffff8000a5f6d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_mcast_maxsocksrc | |
| [ 5436] 5436 X Data 0xffffff8000a5f948 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_output_perf | |
| [ 5437] 5437 X Data 0xffffff8000a5f940 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_output_perf_bins | |
| [ 5438] 5438 X Data 0xffffff8000a5f938 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_output_perf_data | |
| [ 5439] 5439 X Data 0xffffff8000a5f6f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_portrange | |
| [ 5440] 5440 X Data 0xffffff8000a5f718 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_portrange_first | |
| [ 5441] 5441 X Data 0xffffff8000a5f708 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_portrange_hifirst | |
| [ 5442] 5442 X Data 0xffffff8000a5f700 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_portrange_hilast | |
| [ 5443] 5443 X Data 0xffffff8000a5f710 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_portrange_last | |
| [ 5444] 5444 X Data 0xffffff8000a5f728 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_portrange_lowfirst | |
| [ 5445] 5445 X Data 0xffffff8000a5f720 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_portrange_lowlast | |
| [ 5446] 5446 X Data 0xffffff8000a5f890 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_random_id | |
| [ 5447] 5447 X Data 0xffffff8000a5f880 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_random_id_collisions | |
| [ 5448] 5448 X Data 0xffffff8000a5f878 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_random_id_statistics | |
| [ 5449] 5449 X Data 0xffffff8000a5f888 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_random_id_total | |
| [ 5450] 5450 X Data 0xffffff8000a5f918 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_redirect | |
| [ 5451] 5451 X Data 0xffffff8000a5f770 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_rtexpire | |
| [ 5452] 5452 X Data 0xffffff8000a5f780 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_rtmaxcache | |
| [ 5453] 5453 X Data 0xffffff8000a5f778 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_rtminexpire | |
| [ 5454] 5454 X Data 0xffffff8000a5f8c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_rx_chaining | |
| [ 5455] 5455 X Data 0xffffff8000a5f8c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_rx_chainsz | |
| [ 5456] 5456 X Data 0xffffff8000a5f930 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_select_srcif_debug | |
| [ 5457] 5457 X Data 0xffffff8000a5f8f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_sendsourcequench | |
| [ 5458] 5458 X Data 0xffffff8000a5f908 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_sourceroute | |
| [ 5459] 5459 X Data 0xffffff8000a5f8b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_stats | |
| [ 5460] 5460 X Data 0xffffff8000a5f638 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_subnets_are_local | |
| [ 5461] 5461 X Data 0xffffff8000a5f910 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ip_ttl | |
| [ 5462] 5462 X Data 0xffffff8000a5f738 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec | |
| [ 5463] 5463 X Data 0xffffff8000a5fe60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_ah_cleartos | |
| [ 5464] 5464 X Data 0xffffff8000a5fe68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_ah_net_deflev | |
| [ 5465] 5465 X Data 0xffffff8000a5fe58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_ah_offsetmask | |
| [ 5466] 5466 X Data 0xffffff8000a5fe70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_ah_trans_deflev | |
| [ 5467] 5467 X Data 0xffffff8000a5fe30 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_bypass | |
| [ 5468] 5468 X Data 0xffffff8000a5fe40 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_debug | |
| [ 5469] 5469 X Data 0xffffff8000a5fe88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_def_policy | |
| [ 5470] 5470 X Data 0xffffff8000a5fe50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_dfbit | |
| [ 5471] 5471 X Data 0xffffff8000a5fe48 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_ecn | |
| [ 5472] 5472 X Data 0xffffff8000a5fe78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_esp_net_deflev | |
| [ 5473] 5473 X Data 0xffffff8000a5fe28 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_esp_port | |
| [ 5474] 5474 X Data 0xffffff8000a5fe38 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_esp_randpad | |
| [ 5475] 5475 X Data 0xffffff8000a5fe80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_esp_trans_deflev | |
| [ 5476] 5476 X Data 0xffffff8000a5fdd8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_ipsec_stats | |
| [ 5477] 5477 X Data 0xffffff8000a5f6f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_log_restricted | |
| [ 5478] 5478 X Data 0xffffff8000a5fd78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp | |
| [ 5479] 5479 X Data 0xffffff8000a5fd80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_dbg_area | |
| [ 5480] 5480 X Data 0xffffff8000a5fd88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_dbg_level | |
| [ 5481] 5481 X Data 0xffffff8000a5fda0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_delayed | |
| [ 5482] 5482 X Data 0xffffff8000a5fcf8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_dss_csum | |
| [ 5483] 5483 X Data 0xffffff8000a5fce8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_enable | |
| [ 5484] 5484 X Data 0xffffff8000a5fd00 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_fail | |
| [ 5485] 5485 X Data 0xffffff8000a5fd20 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_fastjoin | |
| [ 5486] 5486 X Data 0xffffff8000a5fdb8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_force_64bit_dsn | |
| [ 5487] 5487 X Data 0xffffff8000a5fd08 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_keepalive | |
| [ 5488] 5488 X Data 0xffffff8000a5fd10 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_mpprio | |
| [ 5489] 5489 X Data 0xffffff8000a5fcf0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_mptcp_cap_retr | |
| [ 5490] 5490 X Data 0xffffff8000a5fdc8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_nrto | |
| [ 5491] 5491 X Data 0xffffff8000a5fd90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_pcbcount | |
| [ 5492] 5492 X Data 0xffffff8000a5fdb0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_pcblist | |
| [ 5493] 5493 X Data 0xffffff8000a5fd60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_peerswitchno | |
| [ 5494] 5494 X Data 0xffffff8000a5fd70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_probecnt | |
| [ 5495] 5495 X Data 0xffffff8000a5fd68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_probeto | |
| [ 5496] 5496 X Data 0xffffff8000a5fd18 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_remaddr | |
| [ 5497] 5497 X Data 0xffffff8000a5fdc0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_rto | |
| [ 5498] 5498 X Data 0xffffff8000a5fd50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_rto_thresh | |
| [ 5499] 5499 X Data 0xffffff8000a5fd38 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_rtthist | |
| [ 5500] 5500 X Data 0xffffff8000a5fd40 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_rtthist_thresh | |
| [ 5501] 5501 X Data 0xffffff8000a5fd30 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_rwnotify | |
| [ 5502] 5502 X Data 0xffffff8000a5fd98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_sk_lim | |
| [ 5503] 5503 X Data 0xffffff8000a5fdd0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_tw | |
| [ 5504] 5504 X Data 0xffffff8000a5fd58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_use_peer | |
| [ 5505] 5505 X Data 0xffffff8000a5fd48 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_userto | |
| [ 5506] 5506 X Data 0xffffff8000a5fda8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_usesymptoms | |
| [ 5507] 5507 X Data 0xffffff8000a5fd28 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_mptcp_zerortt_fastjoin | |
| [ 5508] 5508 X Data 0xffffff8000a5f730 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_raw | |
| [ 5509] 5509 X Data 0xffffff8000a5f950 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_raw_maxdgram | |
| [ 5510] 5510 X Data 0xffffff8000a5f960 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_raw_pcbcount | |
| [ 5511] 5511 X Data 0xffffff8000a5f978 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_raw_pcblist | |
| [ 5512] 5512 X Data 0xffffff8000a5f970 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_raw_pcblist64 | |
| [ 5513] 5513 X Data 0xffffff8000a5f968 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_raw_pcblist_n | |
| [ 5514] 5514 X Data 0xffffff8000a5f958 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_raw_recvspace | |
| [ 5515] 5515 X Data 0xffffff8000a5f748 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp | |
| [ 5516] 5516 X Data 0xffffff8000a5faa0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_acc_iaj_react_limit | |
| [ 5517] 5517 X Data 0xffffff8000a5fa80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_ack_prioritize | |
| [ 5518] 5518 X Data 0xffffff8000a5fbc8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_always_keepalive | |
| [ 5519] 5519 X Data 0xffffff8000a5fa08 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_autorcvbufmax | |
| [ 5520] 5520 X Data 0xffffff8000a5fa90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_autosndbufinc | |
| [ 5521] 5521 X Data 0xffffff8000a5fa88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_autosndbufmax | |
| [ 5522] 5522 X Data 0xffffff8000a5fc28 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_background_sockets | |
| [ 5523] 5523 X Data 0xffffff8000a5fc78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_bg_allowed_increase | |
| [ 5524] 5524 X Data 0xffffff8000a5fc68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_bg_ss_fltsz | |
| [ 5525] 5525 X Data 0xffffff8000a5fc80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_bg_target_qdelay | |
| [ 5526] 5526 X Data 0xffffff8000a5fc70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_bg_tether_shift | |
| [ 5527] 5527 X Data 0xffffff8000a5f9a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_blackhole | |
| [ 5528] 5528 X Data 0xffffff8000a5fbb8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_broken_peer_syn_rexmit_thres | |
| [ 5529] 5529 X Data 0xffffff8000a5fc18 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_cc_debug | |
| [ 5530] 5530 X Data 0xffffff8000a5f990 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_clear_tfocache | |
| [ 5531] 5531 X Data 0xffffff8000a5fc48 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_cubic_fast_convergence | |
| [ 5532] 5532 X Data 0xffffff8000a5fc30 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_cubic_sockets | |
| [ 5533] 5533 X Data 0xffffff8000a5fc50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_cubic_tcp_friendliness | |
| [ 5534] 5534 X Data 0xffffff8000a5fc40 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_cubic_use_minrtt | |
| [ 5535] 5535 X Data 0xffffff8000a5f9a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_delayed_ack | |
| [ 5536] 5536 X Data 0xffffff8000a5f988 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_disable_tcp_heuristics | |
| [ 5537] 5537 X Data 0xffffff8000a5fb60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_do_tcpdrain | |
| [ 5538] 5538 X Data 0xffffff8000a5fa00 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_doautorcvbuf | |
| [ 5539] 5539 X Data 0xffffff8000a5fa98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_doautosndbuf | |
| [ 5540] 5540 X Data 0xffffff8000a5f9c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_drop_synfin | |
| [ 5541] 5541 X Data 0xffffff8000a5fad0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_ecn_initiate_out | |
| [ 5542] 5542 X Data 0xffffff8000a5fac8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_ecn_negotiate_in | |
| [ 5543] 5543 X Data 0xffffff8000a5fa60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_ecn_setup_percentage | |
| [ 5544] 5544 X Data 0xffffff8000a5f980 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_ecn_timeout | |
| [ 5545] 5545 X Data 0xffffff8000a5fa68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_enable_tlp | |
| [ 5546] 5546 X Data 0xffffff8000a5fb80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_fastopen | |
| [ 5547] 5547 X Data 0xffffff8000a5fb88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_fastopen_backlog | |
| [ 5548] 5548 X Data 0xffffff8000a5fb78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_fastopen_fallback_min | |
| [ 5549] 5549 X Data 0xffffff8000a5fb90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_fastopen_key | |
| [ 5550] 5550 X Data 0xffffff8000a5fb48 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_icmp_may_rst | |
| [ 5551] 5551 X Data 0xffffff8000a5fc10 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_info | |
| [ 5552] 5552 X Data 0xffffff8000a5fbe0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_keepcnt | |
| [ 5553] 5553 X Data 0xffffff8000a5fbf0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_keepidle | |
| [ 5554] 5554 X Data 0xffffff8000a5fbf8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_keepinit | |
| [ 5555] 5555 X Data 0xffffff8000a5fbe8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_keepintvl | |
| [ 5556] 5556 X Data 0xffffff8000a5fa50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_local_slowstart_flightsize | |
| [ 5557] 5557 X Data 0xffffff8000a5f998 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_log_in_vain | |
| [ 5558] 5558 X Data 0xffffff8000a5fa10 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_lro | |
| [ 5559] 5559 X Data 0xffffff8000a5fa20 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_lro_startcnt | |
| [ 5560] 5560 X Data 0xffffff8000a5fc58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_lro_sz | |
| [ 5561] 5561 X Data 0xffffff8000a5fc60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_lro_time | |
| [ 5562] 5562 X Data 0xffffff8000a5fa18 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_lrodbg | |
| [ 5563] 5563 X Data 0xffffff8000a5fbd0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_max_persist_timeout | |
| [ 5564] 5564 X Data 0xffffff8000a5f9e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_maxseg_unacked | |
| [ 5565] 5565 X Data 0xffffff8000a5faa8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_min_iaj_win | |
| [ 5566] 5566 X Data 0xffffff8000a5fb70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_minmss | |
| [ 5567] 5567 X Data 0xffffff8000a5fbd8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_msl | |
| [ 5568] 5568 X Data 0xffffff8000a5faf8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_mssdflt | |
| [ 5569] 5569 X Data 0xffffff8000a5fc20 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_newreno_sockets | |
| [ 5570] 5570 X Data 0xffffff8000a5fac0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_packetchain | |
| [ 5571] 5571 X Data 0xffffff8000a5fa40 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_path_mtu_discovery | |
| [ 5572] 5572 X Data 0xffffff8000a5fb58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_pcbcount | |
| [ 5573] 5573 X Data 0xffffff8000a5fb18 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_pcblist | |
| [ 5574] 5574 X Data 0xffffff8000a5fb10 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_pcblist64 | |
| [ 5575] 5575 X Data 0xffffff8000a5fb08 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_pcblist_n | |
| [ 5576] 5576 X Data 0xffffff8000a5fba0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_pmtud_blackhole_detection | |
| [ 5577] 5577 X Data 0xffffff8000a5fb98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_pmtud_blackhole_mss | |
| [ 5578] 5578 X Data 0xffffff8000a5fb30 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_randomize_ports | |
| [ 5579] 5579 X Data 0xffffff8000a5fa28 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_rcvsspktcnt | |
| [ 5580] 5580 X Data 0xffffff8000a5f9c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_reass | |
| [ 5581] 5581 X Data 0xffffff8000a5f9d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_reass_overflows | |
| [ 5582] 5582 X Data 0xffffff8000a5f9f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_recv_allowed_iaj | |
| [ 5583] 5583 X Data 0xffffff8000a5fa70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_recv_throttle_minwin | |
| [ 5584] 5584 X Data 0xffffff8000a5f9b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_recvbg | |
| [ 5585] 5585 X Data 0xffffff8000a5fc00 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_recvspace | |
| [ 5586] 5586 X Data 0xffffff8000a5fb38 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_rexmt_slop | |
| [ 5587] 5587 X Data 0xffffff8000a5fa30 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_rexmt_thresh | |
| [ 5588] 5588 X Data 0xffffff8000a5fb68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_rfc1644 | |
| [ 5589] 5589 X Data 0xffffff8000a5fab0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_rfc3390 | |
| [ 5590] 5590 X Data 0xffffff8000a5f9e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_rfc3465 | |
| [ 5591] 5591 X Data 0xffffff8000a5f9f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_rfc3465_lim2 | |
| [ 5592] 5592 X Data 0xffffff8000a5fb40 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_rtt_min | |
| [ 5593] 5593 X Data 0xffffff8000a5fa78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_rtt_recvbg | |
| [ 5594] 5594 X Data 0xffffff8000a5fad8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_sack | |
| [ 5595] 5595 X Data 0xffffff8000a5faf0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_sack_globalholes | |
| [ 5596] 5596 X Data 0xffffff8000a5fae8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_sack_globalmaxholes | |
| [ 5597] 5597 X Data 0xffffff8000a5fae0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_sack_maxholes | |
| [ 5598] 5598 X Data 0xffffff8000a5fc08 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_sendspace | |
| [ 5599] 5599 X Data 0xffffff8000a5f9d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_slowlink_wsize | |
| [ 5600] 5600 X Data 0xffffff8000a5fa48 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_slowstart_flightsize | |
| [ 5601] 5601 X Data 0xffffff8000a5fab8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_socket_unlocked_on_output | |
| [ 5602] 5602 X Data 0xffffff8000a5fa38 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_stats | |
| [ 5603] 5603 X Data 0xffffff8000a5fb20 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_tcbhashsize | |
| [ 5604] 5604 X Data 0xffffff8000a5f9b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_tcp_lq_overflow | |
| [ 5605] 5605 X Data 0xffffff8000a5fba8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_tcp_resched_timerlist | |
| [ 5606] 5606 X Data 0xffffff8000a5fbb0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_tcp_timer_advanced | |
| [ 5607] 5607 X Data 0xffffff8000a5fbc0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_timer_fastmode_idlemax | |
| [ 5608] 5608 X Data 0xffffff8000a5fa58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_tso | |
| [ 5609] 5609 X Data 0xffffff8000a5fb50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_tw_pcbcount | |
| [ 5610] 5610 X Data 0xffffff8000a5fc38 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_use_newreno | |
| [ 5611] 5611 X Data 0xffffff8000a5fb00 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_v6mssdflt | |
| [ 5612] 5612 X Data 0xffffff8000a5fb28 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_tcp_win_scale_factor | |
| [ 5613] 5613 X Data 0xffffff8000a5f750 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp | |
| [ 5614] 5614 X Data 0xffffff8000a5fc98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp_blackhole | |
| [ 5615] 5615 X Data 0xffffff8000a5fc88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp_checksum | |
| [ 5616] 5616 X Data 0xffffff8000a5fc90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp_log_in_vain | |
| [ 5617] 5617 X Data 0xffffff8000a5fca0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp_maxdgram | |
| [ 5618] 5618 X Data 0xffffff8000a5fcd0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp_pcbcount | |
| [ 5619] 5619 X Data 0xffffff8000a5fcc0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp_pcblist | |
| [ 5620] 5620 X Data 0xffffff8000a5fcb8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp_pcblist64 | |
| [ 5621] 5621 X Data 0xffffff8000a5fcb0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp_pcblist_n | |
| [ 5622] 5622 X Data 0xffffff8000a5fcc8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp_randomize_ports | |
| [ 5623] 5623 X Data 0xffffff8000a5fca8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp_recvspace | |
| [ 5624] 5624 X Data 0xffffff8000a5fcd8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_inet_udp_stats | |
| [ 5625] 5625 X Data 0xffffff8000a601e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key | |
| [ 5626] 5626 X Data 0xffffff8000a601c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_ah_keymin | |
| [ 5627] 5627 X Data 0xffffff8000a601a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_blockacq_count | |
| [ 5628] 5628 X Data 0xffffff8000a601a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_blockacq_lifetime | |
| [ 5629] 5629 X Data 0xffffff8000a60170 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_debug | |
| [ 5630] 5630 X Data 0xffffff8000a601b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_esp_auth | |
| [ 5631] 5631 X Data 0xffffff8000a601b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_esp_keymin | |
| [ 5632] 5632 X Data 0xffffff8000a60190 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_int_random | |
| [ 5633] 5633 X Data 0xffffff8000a60198 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_larval_lifetime | |
| [ 5634] 5634 X Data 0xffffff8000a601d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_natt_keepalive_interval | |
| [ 5635] 5635 X Data 0xffffff8000a601d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_pfkeystat | |
| [ 5636] 5636 X Data 0xffffff8000a601c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_prefered_oldsa | |
| [ 5637] 5637 X Data 0xffffff8000a60188 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_spi_maxval | |
| [ 5638] 5638 X Data 0xffffff8000a60180 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_spi_minval | |
| [ 5639] 5639 X Data 0xffffff8000a60178 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_key_spi_trycnt | |
| [ 5640] 5640 X Data 0xffffff8000a5f268 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link | |
| [ 5641] 5641 X Data 0xffffff8000a5f230 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_bridge | |
| [ 5642] 5642 X Data 0xffffff8000a5f260 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_bridge_debug | |
| [ 5643] 5643 X Data 0xffffff8000a5f250 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_bridge_hostfilterstats | |
| [ 5644] 5644 X Data 0xffffff8000a5f238 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_bridge_inherit_mac | |
| [ 5645] 5645 X Data 0xffffff8000a5f248 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_bridge_rtable_hash_size_max | |
| [ 5646] 5646 X Data 0xffffff8000a5f240 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_bridge_rtable_prune_period | |
| [ 5647] 5647 X Data 0xffffff8000a5f258 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_bridge_txstart | |
| [ 5648] 5648 X Data 0xffffff8000a5f3b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether | |
| [ 5649] 5649 X Data 0xffffff8000a5f640 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet | |
| [ 5650] 5650 X Data 0xffffff8000a5f668 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_arp_llreach_base | |
| [ 5651] 5651 X Data 0xffffff8000a5f670 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_arp_unicast_lim | |
| [ 5652] 5652 X Data 0xffffff8000a5f660 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_host_down_time | |
| [ 5653] 5653 X Data 0xffffff8000a5f6a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_keep_announcements | |
| [ 5654] 5654 X Data 0xffffff8000a5f6a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_log_arp_warnings | |
| [ 5655] 5655 X Data 0xffffff8000a5f658 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_max_age | |
| [ 5656] 5656 X Data 0xffffff8000a5f680 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_maxhold | |
| [ 5657] 5657 X Data 0xffffff8000a5f678 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_maxtries | |
| [ 5658] 5658 X Data 0xffffff8000a5f650 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_probe_intvl | |
| [ 5659] 5659 X Data 0xffffff8000a5f690 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_proxyall | |
| [ 5660] 5660 X Data 0xffffff8000a5f648 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_prune_intvl | |
| [ 5661] 5661 X Data 0xffffff8000a5f6b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_send_conflicting_probes | |
| [ 5662] 5662 X Data 0xffffff8000a5f698 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_sendllconflict | |
| [ 5663] 5663 X Data 0xffffff8000a5f6c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_stats | |
| [ 5664] 5664 X Data 0xffffff8000a5f688 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_useloopback | |
| [ 5665] 5665 X Data 0xffffff8000a5f6b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_ether_inet_verbose | |
| [ 5666] 5666 X Data 0xffffff8000a5f270 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic | |
| [ 5667] 5667 X Data 0xffffff8000a5f400 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_ifalldata | |
| [ 5668] 5668 X Data 0xffffff8000a5f408 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_ifdata | |
| [ 5669] 5669 X Data 0xffffff8000a5f3f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system | |
| [ 5670] 5670 X Data 0xffffff8000a5f330 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_delaybased_queue | |
| [ 5671] 5671 X Data 0xffffff8000a5f340 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_dlil_input_sanity_check | |
| [ 5672] 5672 X Data 0xffffff8000a5f348 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_dlil_input_threads | |
| [ 5673] 5673 X Data 0xffffff8000a5f280 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_dlil_lladdr_ckreq | |
| [ 5674] 5674 X Data 0xffffff8000a5f288 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_dlil_verbose | |
| [ 5675] 5675 X Data 0xffffff8000a5f338 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_flow_advisory | |
| [ 5676] 5676 X Data 0xffffff8000a5f290 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_get_ports_used | |
| [ 5677] 5677 X Data 0xffffff8000a5f320 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg | |
| [ 5678] 5678 X Data 0xffffff8000a5f2c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg_adjusted | |
| [ 5679] 5679 X Data 0xffffff8000a5f2d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg_bad_cksum | |
| [ 5680] 5680 X Data 0xffffff8000a5f2d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg_bad_rxoff | |
| [ 5681] 5681 X Data 0xffffff8000a5f2b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg_finalized_data | |
| [ 5682] 5682 X Data 0xffffff8000a5f2c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg_finalized_hdr | |
| [ 5683] 5683 X Data 0xffffff8000a5f308 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg_mode | |
| [ 5684] 5684 X Data 0xffffff8000a5f300 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg_partial_forced | |
| [ 5685] 5685 X Data 0xffffff8000a5f2f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg_partial_forced_bytes | |
| [ 5686] 5686 X Data 0xffffff8000a5f2e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg_partial_rxoff_adj | |
| [ 5687] 5687 X Data 0xffffff8000a5f2f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg_partial_rxoff_forced | |
| [ 5688] 5688 X Data 0xffffff8000a5f2e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_dbg_verified | |
| [ 5689] 5689 X Data 0xffffff8000a5f328 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_in_invalidated | |
| [ 5690] 5690 X Data 0xffffff8000a5f2a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_rx | |
| [ 5691] 5691 X Data 0xffffff8000a5f2b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_hwcksum_tx | |
| [ 5692] 5692 X Data 0xffffff8000a5f350 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_if_bw_measure_size | |
| [ 5693] 5693 X Data 0xffffff8000a5f358 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_if_bw_smoothing_val | |
| [ 5694] 5694 X Data 0xffffff8000a5f458 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_if_family_ids | |
| [ 5695] 5695 X Data 0xffffff8000a5f278 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_if_verbose | |
| [ 5696] 5696 X Data 0xffffff8000a5f3f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_ifcount | |
| [ 5697] 5697 X Data 0xffffff8000a5f500 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_llreach_info | |
| [ 5698] 5698 X Data 0xffffff8000a5f3a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_rcvq_maxlen | |
| [ 5699] 5699 X Data 0xffffff8000a5f360 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_rxpoll | |
| [ 5700] 5700 X Data 0xffffff8000a5f3a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_rxpoll_decay | |
| [ 5701] 5701 X Data 0xffffff8000a5f398 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_rxpoll_freeze_time | |
| [ 5702] 5702 X Data 0xffffff8000a5f380 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_rxpoll_interval_pkts | |
| [ 5703] 5703 X Data 0xffffff8000a5f388 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_rxpoll_interval_time | |
| [ 5704] 5704 X Data 0xffffff8000a5f368 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_rxpoll_max | |
| [ 5705] 5705 X Data 0xffffff8000a5f390 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_rxpoll_sample_time | |
| [ 5706] 5706 X Data 0xffffff8000a5f370 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_rxpoll_wakeups_hiwat | |
| [ 5707] 5707 X Data 0xffffff8000a5f378 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_rxpoll_wakeups_lowat | |
| [ 5708] 5708 X Data 0xffffff8000a5f3b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_sndq_maxlen | |
| [ 5709] 5709 X Data 0xffffff8000a5f310 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_start_delay_disabled | |
| [ 5710] 5710 X Data 0xffffff8000a5f318 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_start_delayed | |
| [ 5711] 5711 X Data 0xffffff8000a5f298 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_tx_chain_len_count | |
| [ 5712] 5712 X Data 0xffffff8000a5f2a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_generic_system_tx_chain_len_stats | |
| [ 5713] 5713 X Data 0xffffff8000a5f4c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_iptap | |
| [ 5714] 5714 X Data 0xffffff8000a5f4d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_iptap_log | |
| [ 5715] 5715 X Data 0xffffff8000a5f4d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_iptap_total_tap_count | |
| [ 5716] 5716 X Data 0xffffff8000a5f3c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_loopback | |
| [ 5717] 5717 X Data 0xffffff8000a5f3d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_loopback_bw_measure | |
| [ 5718] 5718 X Data 0xffffff8000a5f3c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_loopback_bw_sleep_usec | |
| [ 5719] 5719 X Data 0xffffff8000a5f3d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_loopback_dequeue_sc | |
| [ 5720] 5720 X Data 0xffffff8000a5f3e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_loopback_max_dequeue | |
| [ 5721] 5721 X Data 0xffffff8000a5f3e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_loopback_sched_model | |
| [ 5722] 5722 X Data 0xffffff8000a5f4e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_pktap | |
| [ 5723] 5723 X Data 0xffffff8000a5f4f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_pktap_count_unknown_if_type | |
| [ 5724] 5724 X Data 0xffffff8000a5f4f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_pktap_log | |
| [ 5725] 5725 X Data 0xffffff8000a5f4e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_link_pktap_total_tap_count | |
| [ 5726] 5726 X Data 0xffffff8000a60ce0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local | |
| [ 5727] 5727 X Data 0xffffff8000a60cd0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_dgram | |
| [ 5728] 5728 X Data 0xffffff8000a60e40 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_dgram_maxdgram | |
| [ 5729] 5729 X Data 0xffffff8000a60e28 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_dgram_pcblist | |
| [ 5730] 5730 X Data 0xffffff8000a60e18 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_dgram_pcblist64 | |
| [ 5731] 5731 X Data 0xffffff8000a60e38 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_dgram_recvspace | |
| [ 5732] 5732 X Data 0xffffff8000a60e30 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_inflight | |
| [ 5733] 5733 X Data 0xffffff8000a60cd8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_stream | |
| [ 5734] 5734 X Data 0xffffff8000a60e20 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_stream_pcblist | |
| [ 5735] 5735 X Data 0xffffff8000a60e10 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_stream_pcblist64 | |
| [ 5736] 5736 X Data 0xffffff8000a60e50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_stream_recvspace | |
| [ 5737] 5737 X Data 0xffffff8000a60e58 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_stream_sendspace | |
| [ 5738] 5738 X Data 0xffffff8000a60e48 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_local_stream_tracemdns | |
| [ 5739] 5739 X Data 0xffffff8000a5f410 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_ndrv_multi_max_count | |
| [ 5740] 5740 X Data 0xffffff8000a5f460 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_necp | |
| [ 5741] 5741 X Data 0xffffff8000a5f478 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_necp_debug | |
| [ 5742] 5742 X Data 0xffffff8000a5f4a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_necp_drop_all_level | |
| [ 5743] 5743 X Data 0xffffff8000a5f488 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_necp_ip_policy_count | |
| [ 5744] 5744 X Data 0xffffff8000a5f470 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_necp_pass_keepalives | |
| [ 5745] 5745 X Data 0xffffff8000a5f468 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_necp_pass_loopback | |
| [ 5746] 5746 X Data 0xffffff8000a5f480 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_necp_session_count | |
| [ 5747] 5747 X Data 0xffffff8000a5f490 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_necp_socket_non_app_policy_count | |
| [ 5748] 5748 X Data 0xffffff8000a5f498 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_necp_socket_policy_count | |
| [ 5749] 5749 X Data 0xffffff8000a5f4a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_netagent | |
| [ 5750] 5750 X Data 0xffffff8000a5f4c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_netagent_active_count | |
| [ 5751] 5751 X Data 0xffffff8000a5f4b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_netagent_debug | |
| [ 5752] 5752 X Data 0xffffff8000a5f4b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_netagent_registered_count | |
| [ 5753] 5753 X Data 0xffffff8000a5f558 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_pktmnglr | |
| [ 5754] 5754 X Data 0xffffff8000a5f560 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_pktmnglr_log | |
| [ 5755] 5755 X Data 0xffffff8000a5f5c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_pktsched | |
| [ 5756] 5756 X Data 0xffffff8000a5f5d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_pktsched_verbose | |
| [ 5757] 5757 X Data 0xffffff8000a5f788 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_qos | |
| [ 5758] 5758 X Data 0xffffff8000a5f7d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_qos_default_netsvctype_to_dscp_map | |
| [ 5759] 5759 X Data 0xffffff8000a5f7c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_qos_dscp_to_wifi_ac_map | |
| [ 5760] 5760 X Data 0xffffff8000a5f7b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_qos_policy | |
| [ 5761] 5761 X Data 0xffffff8000a5f790 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_qos_policy_capable_enabled | |
| [ 5762] 5762 X Data 0xffffff8000a5f7a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_qos_policy_restrict_avapps | |
| [ 5763] 5763 X Data 0xffffff8000a5f7a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_qos_policy_restricted | |
| [ 5764] 5764 X Data 0xffffff8000a5f798 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_qos_policy_wifi_enabled | |
| [ 5765] 5765 X Data 0xffffff8000a5f7c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_qos_reset_dscp_to_wifi_ac_map | |
| [ 5766] 5766 X Data 0xffffff8000a5f7b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_qos_verbose | |
| [ 5767] 5767 X Data 0xffffff8000a5f418 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_route | |
| [ 5768] 5768 X Data 0xffffff8000a5f420 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_routetable | |
| [ 5769] 5769 X Data 0xffffff8000a5f428 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_statistics_privcheck | |
| [ 5770] 5770 X Data 0xffffff8000a5f430 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_stats | |
| [ 5771] 5771 X Data 0xffffff8000a5f438 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_stats_debug | |
| [ 5772] 5772 X Data 0xffffff8000a5f448 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_stats_recvspace | |
| [ 5773] 5773 X Data 0xffffff8000a5f440 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_stats_sendspace | |
| [ 5774] 5774 X Data 0xffffff8000a5f450 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_stats_stats | |
| [ 5775] 5775 X Data 0xffffff8000a60c28 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_systm | |
| [ 5776] 5776 X Data 0xffffff8000a60288 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_systm_kctl | |
| [ 5777] 5777 X Data 0xffffff8000a60298 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_systm_kctl_autorcvbufhigh | |
| [ 5778] 5778 X Data 0xffffff8000a602a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_systm_kctl_autorcvbufmax | |
| [ 5779] 5779 X Data 0xffffff8000a60290 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_systm_kctl_debug | |
| [ 5780] 5780 X Data 0xffffff8000a602a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_systm_kctl_pcblist | |
| [ 5781] 5781 X Data 0xffffff8000a602b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_systm_kctl_reg_list | |
| [ 5782] 5782 X Data 0xffffff8000a602b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_systm_kctl_stats | |
| [ 5783] 5783 X Data 0xffffff8000a60270 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_systm_kevt | |
| [ 5784] 5784 X Data 0xffffff8000a60278 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_systm_kevt_pcblist | |
| [ 5785] 5785 X Data 0xffffff8000a60280 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__net_systm_kevt_stats | |
| [ 5786] 5786 X Data 0xffffff8000a61850 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security | |
| [ 5787] 5787 X Data 0xffffff8000a61858 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac | |
| [ 5788] 5788 X Data 0xffffff8000a61880 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_device_enforce | |
| [ 5789] 5789 X Data 0xffffff8000a61868 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_labelvnodes | |
| [ 5790] 5790 X Data 0xffffff8000a61860 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_max_slots | |
| [ 5791] 5791 X Data 0xffffff8000a61870 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_mmap_revocation | |
| [ 5792] 5792 X Data 0xffffff8000a61878 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_mmap_revocation_via_cow | |
| [ 5793] 5793 X Data 0xffffff8000a61888 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_pipe_enforce | |
| [ 5794] 5794 X Data 0xffffff8000a61890 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_posixsem_enforce | |
| [ 5795] 5795 X Data 0xffffff8000a61898 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_posixshm_enforce | |
| [ 5796] 5796 X Data 0xffffff8000a618a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_proc_enforce | |
| [ 5797] 5797 X Data 0xffffff8000a618a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_socket_enforce | |
| [ 5798] 5798 X Data 0xffffff8000a618b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_system_enforce | |
| [ 5799] 5799 X Data 0xffffff8000a618b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_sysvmsg_enforce | |
| [ 5800] 5800 X Data 0xffffff8000a618c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_sysvsem_enforce | |
| [ 5801] 5801 X Data 0xffffff8000a618c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_sysvshm_enforce | |
| [ 5802] 5802 X Data 0xffffff8000a618d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_vm_enforce | |
| [ 5803] 5803 X Data 0xffffff8000a618d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__security_mac_vnode_enforce | |
| [ 5804] 5804 X Data 0xffffff8000a60998 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__sysctl | |
| [ 5805] 5805 X Data 0xffffff8000a60948 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__sysctl_debug | |
| [ 5806] 5806 X Data 0xffffff8000a60940 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__sysctl_name | |
| [ 5807] 5807 X Data 0xffffff8000a60930 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__sysctl_name2oid | |
| [ 5808] 5808 X Data 0xffffff8000a60938 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__sysctl_next | |
| [ 5809] 5809 X Data 0xffffff8000a60928 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__sysctl_oidfmt | |
| [ 5810] 5810 X Data 0xffffff8000a60678 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__sysctl_proc_cputype | |
| [ 5811] 5811 X Data 0xffffff8000a60680 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__sysctl_proc_native | |
| [ 5812] 5812 X Data 0xffffff8000a609d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__user | |
| [ 5813] 5813 X Data 0xffffff8000a609b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs | |
| [ 5814] 5814 X Data 0xffffff8000a5f1b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic | |
| [ 5815] 5815 X Data 0xffffff8000a5f180 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_conf | |
| [ 5816] 5816 X Data 0xffffff8000a5f1a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_ctlbyfsid | |
| [ 5817] 5817 X Data 0xffffff8000a5f190 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_maxtypenum | |
| [ 5818] 5818 X Data 0xffffff8000a5f000 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs | |
| [ 5819] 5819 X Data 0xffffff8000a5f008 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client | |
| [ 5820] 5820 X Data 0xffffff8000a5f028 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_access_cache_timeout | |
| [ 5821] 5821 X Data 0xffffff8000a5f060 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_access_delete | |
| [ 5822] 5822 X Data 0xffffff8000a5f068 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_access_dotzfs | |
| [ 5823] 5823 X Data 0xffffff8000a5f070 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_access_for_getattr | |
| [ 5824] 5824 X Data 0xffffff8000a5f030 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_allow_async | |
| [ 5825] 5825 X Data 0xffffff8000a5f080 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_callback_port | |
| [ 5826] 5826 X Data 0xffffff8000a5f098 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_debug_ctl | |
| [ 5827] 5827 X Data 0xffffff8000a5f0b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_default_nfs4domain | |
| [ 5828] 5828 X Data 0xffffff8000a5f078 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_idmap_ctrl | |
| [ 5829] 5829 X Data 0xffffff8000a5f010 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_initialdowndelay | |
| [ 5830] 5830 X Data 0xffffff8000a5f020 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_iosize | |
| [ 5831] 5831 X Data 0xffffff8000a5f088 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_is_mobile | |
| [ 5832] 5832 X Data 0xffffff8000a5f050 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_lockd_mounts | |
| [ 5833] 5833 X Data 0xffffff8000a5f058 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_max_async_writes | |
| [ 5834] 5834 X Data 0xffffff8000a5f018 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_nextdowndelay | |
| [ 5835] 5835 X Data 0xffffff8000a5f048 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_nfsiod_thread_count | |
| [ 5836] 5836 X Data 0xffffff8000a5f040 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_nfsiod_thread_max | |
| [ 5837] 5837 X Data 0xffffff8000a5f0a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_readlink_nocache | |
| [ 5838] 5838 X Data 0xffffff8000a5f0a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_root_steals_gss_context | |
| [ 5839] 5839 X Data 0xffffff8000a5f090 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_squishy_flags | |
| [ 5840] 5840 X Data 0xffffff8000a5f038 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_client_statfs_rate_limit | |
| [ 5841] 5841 X Data 0xffffff8000a5f0b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server | |
| [ 5842] 5842 X Data 0xffffff8000a5f0d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_async | |
| [ 5843] 5843 X Data 0xffffff8000a5f0e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_export_hash_size | |
| [ 5844] 5844 X Data 0xffffff8000a5f108 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_fsevents | |
| [ 5845] 5845 X Data 0xffffff8000a5f100 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_gss_context_ttl | |
| [ 5846] 5846 X Data 0xffffff8000a5f120 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_nfsd_sock_idle_timeout | |
| [ 5847] 5847 X Data 0xffffff8000a5f128 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_nfsd_tcp_connections | |
| [ 5848] 5848 X Data 0xffffff8000a5f118 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_nfsd_thread_count | |
| [ 5849] 5849 X Data 0xffffff8000a5f110 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_nfsd_thread_max | |
| [ 5850] 5850 X Data 0xffffff8000a5f0e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_reqcache_size | |
| [ 5851] 5851 X Data 0xffffff8000a5f0f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_request_queue_length | |
| [ 5852] 5852 X Data 0xffffff8000a5f0d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_require_resv_port | |
| [ 5853] 5853 X Data 0xffffff8000a5f148 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_upcall_queue_count | |
| [ 5854] 5854 X Data 0xffffff8000a5f138 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_upcall_queue_limit | |
| [ 5855] 5855 X Data 0xffffff8000a5f140 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_upcall_queue_max_seen | |
| [ 5856] 5856 X Data 0xffffff8000a5f130 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_use_upcall_svc | |
| [ 5857] 5857 X Data 0xffffff8000a5f0f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_user_stats | |
| [ 5858] 5858 X Data 0xffffff8000a5f0c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_wg_delay | |
| [ 5859] 5859 X Data 0xffffff8000a5f0c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_nfs_server_wg_delay_v3 | |
| [ 5860] 5860 X Data 0xffffff8000a5f198 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_noremotehang | |
| [ 5861] 5861 X Data 0xffffff8000a5f188 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_sync_timeout | |
| [ 5862] 5862 X Data 0xffffff8000a5f170 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_trace_paths | |
| [ 5863] 5863 X Data 0xffffff8000a5f1a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_generic_vfsidlist | |
| [ 5864] 5864 X Data 0xffffff8000a5f168 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vfs_nummntops | |
| [ 5865] 5865 X Data 0xffffff8000a609a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm | |
| [ 5866] 5866 X Data 0xffffff8000a61090 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_all_reusable_calls | |
| [ 5867] 5867 X Data 0xffffff8000a61070 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_all_reuse_calls | |
| [ 5868] 5868 X Data 0xffffff8000a61058 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_can_reuse_failure | |
| [ 5869] 5869 X Data 0xffffff8000a61060 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_can_reuse_success | |
| [ 5870] 5870 X Data 0xffffff8000a605d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_available | |
| [ 5871] 5871 X Data 0xffffff8000a605f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_bytes_used | |
| [ 5872] 5872 X Data 0xffffff8000a60580 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_catchup_threshold_divisor | |
| [ 5873] 5873 X Data 0xffffff8000a605f8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_compressed_bytes | |
| [ 5874] 5874 X Data 0xffffff8000a605c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_eval_period_in_msecs | |
| [ 5875] 5875 X Data 0xffffff8000a60600 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_input_bytes | |
| [ 5876] 5876 X Data 0xffffff8000a605e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_is_active | |
| [ 5877] 5877 X Data 0xffffff8000a60590 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_majorcompact_threshold_divisor | |
| [ 5878] 5878 X Data 0xffffff8000a60598 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_minorcompact_threshold_divisor | |
| [ 5879] 5879 X Data 0xffffff8000a605e8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_mode | |
| [ 5880] 5880 X Data 0xffffff8000a605b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_sample_max_in_msecs | |
| [ 5881] 5881 X Data 0xffffff8000a605b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_sample_min_in_msecs | |
| [ 5882] 5882 X Data 0xffffff8000a605d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_swapout_target_age | |
| [ 5883] 5883 X Data 0xffffff8000a605a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_thrashing_min_per_10msecs | |
| [ 5884] 5884 X Data 0xffffff8000a605a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_thrashing_threshold_per_10msecs | |
| [ 5885] 5885 X Data 0xffffff8000a60568 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_thread_runtime | |
| [ 5886] 5886 X Data 0xffffff8000a60570 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_timing_enabled | |
| [ 5887] 5887 X Data 0xffffff8000a60588 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_compressor_unthrottle_threshold_divisor | |
| [ 5888] 5888 X Data 0xffffff8000a60250 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_all_vnodes | |
| [ 5889] 5889 X Data 0xffffff8000a60c60 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_blob_count | |
| [ 5890] 5890 X Data 0xffffff8000a60c70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_blob_count_peak | |
| [ 5891] 5891 X Data 0xffffff8000a60c68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_blob_size | |
| [ 5892] 5892 X Data 0xffffff8000a60c80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_blob_size_max | |
| [ 5893] 5893 X Data 0xffffff8000a60c78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_blob_size_peak | |
| [ 5894] 5894 X Data 0xffffff8000a60248 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_debug | |
| [ 5895] 5895 X Data 0xffffff8000a60258 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_enforcement | |
| [ 5896] 5896 X Data 0xffffff8000a60260 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_enforcement_panic | |
| [ 5897] 5897 X Data 0xffffff8000a60240 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_force_hard | |
| [ 5898] 5898 X Data 0xffffff8000a60238 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_force_kill | |
| [ 5899] 5899 X Data 0xffffff8000a60268 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_cs_library_validation | |
| [ 5900] 5900 X Data 0xffffff8000a60f50 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_enforce_shared_cache_dir | |
| [ 5901] 5901 X Data 0xffffff8000a61038 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_free_shared | |
| [ 5902] 5902 X Data 0xffffff8000a60640 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_global_no_user_wire_amount | |
| [ 5903] 5903 X Data 0xffffff8000a60638 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_global_user_wire_limit | |
| [ 5904] 5904 X Data 0xffffff8000a606a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_loadavg | |
| [ 5905] 5905 X Data 0xffffff8000a60550 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_compressed_bytes | |
| [ 5906] 5906 X Data 0xffffff8000a60558 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_compression_failures | |
| [ 5907] 5907 X Data 0xffffff8000a60560 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_compressions | |
| [ 5908] 5908 X Data 0xffffff8000a60530 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_decompressed_bytes | |
| [ 5909] 5909 X Data 0xffffff8000a60538 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_decompressions | |
| [ 5910] 5910 X Data 0xffffff8000a604b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_max_failure_run_length | |
| [ 5911] 5911 X Data 0xffffff8000a604c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_max_failure_skips | |
| [ 5912] 5912 X Data 0xffffff8000a604b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_max_preselects | |
| [ 5913] 5913 X Data 0xffffff8000a60498 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_profitable_bytes | |
| [ 5914] 5914 X Data 0xffffff8000a604a0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_run_continue_bytes | |
| [ 5915] 5915 X Data 0xffffff8000a604a8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_run_preselection_threshold | |
| [ 5916] 5916 X Data 0xffffff8000a604d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_threshold | |
| [ 5917] 5917 X Data 0xffffff8000a60548 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_wk_compression_delta | |
| [ 5918] 5918 X Data 0xffffff8000a60540 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_lz4_wk_compression_negative_delta | |
| [ 5919] 5919 X Data 0xffffff8000a610b8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_madvise_free_debug | |
| [ 5920] 5920 X Data 0xffffff8000a610e0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_memory_pressure | |
| [ 5921] 5921 X Data 0xffffff8000a61020 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_page_cleaned_count | |
| [ 5922] 5922 X Data 0xffffff8000a61030 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_page_free_count | |
| [ 5923] 5923 X Data 0xffffff8000a610d8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_page_free_wanted | |
| [ 5924] 5924 X Data 0xffffff8000a61010 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_page_pageable_external_count | |
| [ 5925] 5925 X Data 0xffffff8000a61018 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_page_pageable_internal_count | |
| [ 5926] 5926 X Data 0xffffff8000a610d0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_page_purgeable_count | |
| [ 5927] 5927 X Data 0xffffff8000a610c8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_page_purgeable_wired_count | |
| [ 5928] 5928 X Data 0xffffff8000a610b0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_page_reusable_count | |
| [ 5929] 5929 X Data 0xffffff8000a61028 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_page_speculative_count | |
| [ 5930] 5930 X Data 0xffffff8000a60fb0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_cleaned | |
| [ 5931] 5931 X Data 0xffffff8000a60f80 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_cleaned_busy | |
| [ 5932] 5932 X Data 0xffffff8000a60f88 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_cleaned_commit_reactivated | |
| [ 5933] 5933 X Data 0xffffff8000a60f90 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_cleaned_fault_reactivated | |
| [ 5934] 5934 X Data 0xffffff8000a60f78 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_cleaned_nolock | |
| [ 5935] 5935 X Data 0xffffff8000a60fa8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_cleaned_reactivated | |
| [ 5936] 5936 X Data 0xffffff8000a60fa0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_cleaned_reference_reactivated | |
| [ 5937] 5937 X Data 0xffffff8000a60f98 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_cleaned_volatile_reactivated | |
| [ 5938] 5938 X Data 0xffffff8000a60fc8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_enqueued_cleaned | |
| [ 5939] 5939 X Data 0xffffff8000a60fc0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_enqueued_cleaned_from_inactive_clean | |
| [ 5940] 5940 X Data 0xffffff8000a60fb8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_enqueued_cleaned_from_inactive_dirty | |
| [ 5941] 5941 X Data 0xffffff8000a60fd0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_freed_from_cleaned | |
| [ 5942] 5942 X Data 0xffffff8000a60fe0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_freed_from_inactive_clean | |
| [ 5943] 5943 X Data 0xffffff8000a60fd8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_freed_from_speculative | |
| [ 5944] 5944 X Data 0xffffff8000a60ff8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_inactive_clean | |
| [ 5945] 5945 X Data 0xffffff8000a61000 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_inactive_dirty_external | |
| [ 5946] 5946 X Data 0xffffff8000a61008 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_inactive_dirty_internal | |
| [ 5947] 5947 X Data 0xffffff8000a60fe8 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_inactive_used | |
| [ 5948] 5948 X Data 0xffffff8000a610c0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_purged_objects | |
| [ 5949] 5949 X Data 0xffffff8000a60ff0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pageout_speculative_clean | |
| [ 5950] 5950 X Data 0xffffff8000a610f0 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_pagesize | |
| [ 5951] 5951 X Data 0xffffff8000a61088 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_partial_reusable_calls | |
| [ 5952] 5952 X Data 0xffffff8000a61068 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_partial_reuse_calls | |
| [ 5953] 5953 X Data 0xffffff8000a60490 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_phantom_cache_eval_period_in_msecs | |
| [ 5954] 5954 X Data 0xffffff8000a60488 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_phantom_cache_thrashing_threshold | |
| [ 5955] 5955 X Data 0xffffff8000a60480 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_phantom_cache_thrashing_threshold_ssd | |
| [ 5956] 5956 X Data 0xffffff8000a60f68 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_prefault_nb_bailout | |
| [ 5957] 5957 X Data 0xffffff8000a60f70 0x0000000000000008 0x000f0000 __set___sysctl_set_sym_sysctl__vm_p |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment