Advertisement
Guest User

lldb help

a guest
Jul 2nd, 2017
452
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.23 KB | None | 0 0
  1. (lldb) help
  2. Debugger commands:
  3.  
  4. apropos -- List debugger commands related to a word or subject.
  5. breakpoint -- Commands for operating on breakpoints (see 'help b' for shorthand.)
  6. bugreport -- Commands for creating domain-specific bug reports.
  7. command -- Commands for managing custom LLDB commands.
  8. disassemble -- Disassemble specified instructions in the current target. Defaults to the current function for the current thread and stack frame.
  9. expression -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting.
  10. frame -- Commands for selecting and examing the current thread's stack frames.
  11. gdb-remote -- Connect to a process via remote GDB server. If no host is specifed, localhost is assumed.
  12. gui -- Switch into the curses based GUI mode.
  13. help -- Show a list of all debugger commands, or give details about a specific command.
  14. kdp-remote -- Connect to a process via remote KDP server. If no UDP port is specified, port 41139 is assumed.
  15. language -- Commands specific to a source language.
  16. log -- Commands controlling LLDB internal logging.
  17. memory -- Commands for operating on memory in the current target process.
  18. platform -- Commands to manage and create platforms.
  19. plugin -- Commands for managing LLDB plugins.
  20. process -- Commands for interacting with processes on the current platform.
  21. quit -- Quit the LLDB debugger.
  22. register -- Commands to access registers for the current thread and stack frame.
  23. script -- Invoke the script interpreter with provided code and display any results. Start the interactive interpreter if no code is supplied.
  24. settings -- Commands for managing LLDB settings.
  25. source -- Commands for examining source code described by debug information for the current target process.
  26. target -- Commands for operating on debugger targets.
  27. thread -- Commands for operating on one or more threads in the current process.
  28. type -- Commands for operating on the type system.
  29. version -- Show the LLDB debugger version.
  30. watchpoint -- Commands for operating on watchpoints.
  31.  
  32. Current command abbreviations (type 'help command alias' for more info):
  33.  
  34. ShowAllVols -- For more information run 'help showallmounts'
  35. 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
  36. download symbols for.
  37. attach -- Attach to process by ID or name.
  38. b -- Set a breakpoint using one of several shorthand formats.
  39. bt -- Show the current thread's call stack. Any numeric argument displays at most that many frames. The argument 'all' displays all threads.
  40. c -- Continue execution of all threads in the current process.
  41. call -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting.
  42. continue -- Continue execution of all threads in the current process.
  43. detach -- Detach from the current target process.
  44. di -- Disassemble specified instructions in the current target. Defaults to the current function for the current thread and stack frame.
  45. dis -- Disassemble specified instructions in the current target. Defaults to the current function for the current thread and stack frame.
  46. display -- Evaluate an expression at every stop (see 'help target stop-hook'.)
  47. down -- Select a newer stack frame. Defaults to moving one frame, a numeric argument can specify an arbitrary number.
  48. env -- Shorthand for viewing and setting environment variables.
  49. exit -- Quit the LLDB debugger.
  50. f -- Select the current stack frame by index from within the current thread (see 'thread backtrace'.)
  51. file -- Create a target using the argument as the main executable.
  52. finish -- Finish executing the current stack frame and stop after returning. Defaults to current thread unless specified.
  53. image -- Commands for accessing information for one or more target modules.
  54. j -- Set the program counter to a new address.
  55. jump -- Set the program counter to a new address.
  56. kill -- Terminate the current target process.
  57. l -- List relevant source code using one of several shorthand formats.
  58. list -- List relevant source code using one of several shorthand formats.
  59. n -- Source level single step, stepping over calls. Defaults to current thread unless specified.
  60. next -- Source level single step, stepping over calls. Defaults to current thread unless specified.
  61. nexti -- Instruction level single step, stepping over calls. Defaults to current thread unless specified.
  62. ni -- Instruction level single step, stepping over calls. Defaults to current thread unless specified.
  63. p -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting.
  64. parray -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting.
  65. pci_cfg_read16 -- For more information run 'help pci_cfg_read'
  66. pci_cfg_read32 -- For more information run 'help pci_cfg_read'
  67. pci_cfg_read8 -- For more information run 'help pci_cfg_read'
  68. pci_cfg_write16 -- For more information run 'help pci_cfg_write'
  69. pci_cfg_write32 -- For more information run 'help pci_cfg_write'
  70. pci_cfg_write8 -- For more information run 'help pci_cfg_write'
  71. po -- Evaluate an expression on the current thread. Displays any returned value with formatting controlled by the type's author.
  72. poarray -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting.
  73. print -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting.
  74. q -- Quit the LLDB debugger.
  75. r -- Launch the executable in the debugger.
  76. rbreak -- Sets a breakpoint or set of breakpoints in the executable.
  77. readphys16 -- For more information run 'help readphys'
  78. readphys32 -- For more information run 'help readphys'
  79. readphys64 -- For more information run 'help readphys'
  80. readphys8 -- For more information run 'help readphys'
  81. repl -- Evaluate an expression on the current thread. Displays any returned value with LLDB's default formatting.
  82. run -- Launch the executable in the debugger.
  83. s -- Source level single step, stepping into calls. Defaults to current thread unless specified.
  84. showallkexts -- For more information run 'help showallkmods'
  85. showkext -- For more information run 'help showkmodaddr'
  86. showkextaddr -- For more information run 'help showkmodaddr'
  87. showkmod -- For more information run 'help showkmodaddr'
  88. si -- Instruction level single step, stepping into calls. Defaults to current thread unless specified.
  89. sif -- Step through the current block, stopping if you step directly into a function whose name matches the TargetFunctionName.
  90. step -- Source level single step, stepping into calls. Defaults to current thread unless specified.
  91. stepi -- Instruction level single step, stepping into calls. Defaults to current thread unless specified.
  92. t -- Change the currently selected thread.
  93. tbreak -- Set a one-shot breakpoint using one of several shorthand formats.
  94. undisplay -- Stop displaying expression at every stop (specified by stop-hook index.)
  95. up -- Select an older stack frame. Defaults to moving one frame, a numeric argument can specify an arbitrary number.
  96. writephys16 -- For more information run 'help writephys'
  97. writephys32 -- For more information run 'help writephys'
  98. writephys64 -- For more information run 'help writephys'
  99. writephys8 -- For more information run 'help writephys'
  100. x -- Read from the memory of the current target process.
  101.  
  102. Current user-defined commands:
  103.  
  104. abs2nano -- For more information run 'help abs2nano'
  105. addkext -- For more information run 'help addkext'
  106. allproc -- For more information run 'help allproc'
  107. beginusertaskdebugging -- For more information run 'help beginusertaskdebugging'
  108. btlog_find -- For more information run 'help btlog_find'
  109. calcvmpagehash -- For more information run 'help calcvmpagehash'
  110. check_pmaps -- For more information run 'help check_pmaps'
  111. decode_tte -- For more information run 'help decode_tte'
  112. disablecore -- For more information run 'help disablecore'
  113. dumpcallqueue -- For more information run 'help dumpcallqueue'
  114. dumpcrashed_thread_queue -- For more information run 'help dumpcrashed_thread_queue'
  115. dumpobject -- For more information run 'help dumpobject'
  116. dumpthread_terminate_queue -- For more information run 'help dumpthread_terminate_queue'
  117. findelem -- For more information run 'help findelem'
  118. findoldest -- For more information run 'help findoldest'
  119. findregistryentries -- For more information run 'help findregistryentries'
  120. findregistryentry -- For more information run 'help findregistryentry'
  121. findregistryprop -- For more information run 'help findregistryprop'
  122. fullbt -- For more information run 'help fullbt'
  123. fullbtall -- For more information run 'help fullbtall'
  124. getdumpinfo -- For more information run 'help getdumpinfo'
  125. ifconfig -- For more information run 'help ifconfig'
  126. ifma_showdbg -- For more information run 'help ifma_showdbg'
  127. ifma_trash -- For more information run 'help ifma_trash'
  128. ifpref_showdbg -- For more information run 'help ifpref_showdbg'
  129. im6o_showdbg -- For more information run 'help im6o_showdbg'
  130. imo_showdbg -- For more information run 'help imo_showdbg'
  131. in6ifa_showdbg -- For more information run 'help in6ifa_showdbg'
  132. in6ifa_trash -- For more information run 'help in6ifa_trash'
  133. in6m_trash -- For more information run 'help in6m_trash'
  134. inifa_showdbg -- For more information run 'help inifa_showdbg'
  135. inifa_trash -- For more information run 'help inifa_trash'
  136. inm_showdbg -- For more information run 'help inm_showdbg'
  137. inm_trash -- For more information run 'help inm_trash'
  138. ioapic_dump -- For more information run 'help ioapic_dump'
  139. ioapic_read32 -- For more information run 'help ioapic_read32'
  140. ioapic_write32 -- For more information run 'help ioapic_write32'
  141. kdp-reboot -- For more information run 'help kdp-reboot'
  142. kdp-reenter -- For more information run 'help kdp-reenter'
  143. kgmhelp -- For more information run 'help kgmhelp'
  144. lapic_dump -- For more information run 'help lapic_dump'
  145. lapic_read32 -- For more information run 'help lapic_read32'
  146. lapic_write32 -- For more information run 'help lapic_write32'
  147. longtermtimers -- For more information run 'help longtermtimers'
  148. mbuf_buf2mca -- For more information run 'help mbuf_buf2mca'
  149. mbuf_buf2slab -- For more information run 'help mbuf_buf2slab'
  150. mbuf_countchain -- For more information run 'help mbuf_countchain'
  151. mbuf_showactive -- For more information run 'help mbuf_showactive'
  152. mbuf_showall -- For more information run 'help mbuf_showall'
  153. mbuf_showinactive -- For more information run 'help mbuf_showinactive'
  154. mbuf_showmca -- For more information run 'help mbuf_showmca'
  155. mbuf_slabs -- For more information run 'help mbuf_slabs'
  156. mbuf_slabstbl -- For more information run 'help mbuf_slabstbl'
  157. mbuf_stat -- For more information run 'help mbuf_stat'
  158. mbuf_topleak -- For more information run 'help mbuf_topleak'
  159. mbuf_traceleak -- For more information run 'help mbuf_traceleak'
  160. mbuf_walk -- For more information run 'help mbuf_walk'
  161. mbuf_walkpkt -- For more information run 'help mbuf_walkpkt'
  162. mcache_showcache -- For more information run 'help mcache_showcache'
  163. mcache_stat -- For more information run 'help mcache_stat'
  164. mcache_walkobj -- For more information run 'help mcache_walkobj'
  165. memstats -- For more information run 'help memstats'
  166. nddr_showdbg -- For more information run 'help nddr_showdbg'
  167. ndpr_showdbg -- For more information run 'help ndpr_showdbg'
  168. newbt -- For more information run 'help newbt'
  169. paniclog -- For more information run 'help paniclog'
  170. parseLR -- For more information run 'help parseLR'
  171. parseLRfromfile -- For more information run 'help parseLRfromfile'
  172. pci_cfg_dump -- For more information run 'help pci_cfg_dump'
  173. pci_cfg_dump_all -- For more information run 'help pci_cfg_dump_all'
  174. pci_cfg_read -- For more information run 'help pci_cfg_read'
  175. pci_cfg_scan -- For more information run 'help pci_cfg_scan'
  176. pci_cfg_write -- For more information run 'help pci_cfg_write'
  177. pmap_walk -- For more information run 'help pmap_walk'
  178. pmapsforledger -- For more information run 'help pmapsforledger'
  179. print_vnode -- For more information run 'help print_vnode'
  180. printuserdata -- For more information run 'help printuserdata'
  181. processortimers -- For more information run 'help processortimers'
  182. pv_check -- For more information run 'help pv_check'
  183. pv_walk -- For more information run 'help pv_walk'
  184. readioport16 -- For more information run 'help readioport16'
  185. readioport32 -- For more information run 'help readioport32'
  186. readioport8 -- For more information run 'help readioport8'
  187. readmsr64 -- For more information run 'help readmsr64'
  188. readphys -- For more information run 'help readphys'
  189. resume_off -- For more information run 'help resume_off'
  190. resume_on -- For more information run 'help resume_on'
  191. rtentry_showdbg -- For more information run 'help rtentry_showdbg'
  192. rtentry_trash -- For more information run 'help rtentry_trash'
  193. savekcdata -- For more information run 'help savekcdata'
  194. sendcore -- For more information run 'help sendcore'
  195. sendpaniclog -- For more information run 'help sendpaniclog'
  196. sendsyslog -- For more information run 'help sendsyslog'
  197. setdumpinfo -- For more information run 'help setdumpinfo'
  198. setregistryplane -- For more information run 'help setregistryplane'
  199. show_all_apple_protect_pagers -- For more information run 'help show_all_apple_protect_pagers'
  200. show_all_purgeable_nonvolatile_objects -- For more information run 'help show_all_purgeable_nonvolatile_objects'
  201. show_all_purgeable_objects -- For more information run 'help show_all_purgeable_objects'
  202. show_all_purgeable_volatile_objects -- For more information run 'help show_all_purgeable_volatile_objects'
  203. show_apple_protect_pager -- For more information run 'help show_apple_protect_pager'
  204. show_console_ring -- For more information run 'help show_console_ring'
  205. show_domains -- For more information run 'help show_domains'
  206. show_kern_control_pcbinfo -- For more information run 'help show_kern_control_pcbinfo'
  207. show_kern_event_pcbinfo -- For more information run 'help show_kern_event_pcbinfo'
  208. show_rt_inet -- For more information run 'help show_rt_inet'
  209. show_rt_inet6 -- For more information run 'help show_rt_inet6'
  210. show_rtentry -- For more information run 'help show_rtentry'
  211. show_tcp_pcbinfo -- For more information run 'help show_tcp_pcbinfo'
  212. show_tcp_timewaitslots -- For more information run 'help show_tcp_timewaitslots'
  213. show_udp_pcbinfo -- For more information run 'help show_udp_pcbinfo'
  214. showact -- For more information run 'help showact'
  215. showactiveinterrupts -- For more information run 'help showactiveinterrupts'
  216. showactstack -- For more information run 'help showactstack'
  217. showallatmallocatedvalueslist -- For more information run 'help showallatmallocatedvalueslist'
  218. showallatmdescriptors -- For more information run 'help showallatmdescriptors'
  219. showallbankaccountlist -- For more information run 'help showallbankaccountlist'
  220. showallbanktasklist -- For more information run 'help showallbanktasklist'
  221. showallbusyports -- For more information run 'help showallbusyports'
  222. showallbusyvnodes -- For more information run 'help showallbusyvnodes'
  223. showallcallouts -- For more information run 'help showallcallouts'
  224. showallclasses -- For more information run 'help showallclasses'
  225. showallcoalitions -- For more information run 'help showallcoalitions'
  226. showalliits -- For more information run 'help showalliits'
  227. showallimportancetasks -- For more information run 'help showallimportancetasks'
  228. showallipc -- For more information run 'help showallipc'
  229. showallipcimportance -- For more information run 'help showallipcimportance'
  230. showallkmods -- For more information run 'help showallkmods'
  231. showallknownkmods -- For more information run 'help showallknownkmods'
  232. showallkqueues -- For more information run 'help showallkqueues'
  233. showallmappings -- For more information run 'help showallmappings'
  234. showallmounts -- For more information run 'help showallmounts'
  235. showallmtx -- For more information run 'help showallmtx'
  236. showallpreposts -- For more information run 'help showallpreposts'
  237. showallprocessors -- For more information run 'help showallprocessors'
  238. showallprocrunqcount -- For more information run 'help showallprocrunqcount'
  239. showallprocsockets -- For more information run 'help showallprocsockets'
  240. showallprocvnodes -- For more information run 'help showallprocvnodes'
  241. showallpte -- For more information run 'help showallpte'
  242. showallrefcounts -- For more information run 'help showallrefcounts'
  243. showallrights -- For more information run 'help showallrights'
  244. showallrunnablethreads -- For more information run 'help showallrunnablethreads'
  245. showallrwlck -- For more information run 'help showallrwlck'
  246. showallschedusage -- For more information run 'help showallschedusage'
  247. showallsetidlinks -- For more information run 'help showallsetidlinks'
  248. showallstacks -- For more information run 'help showallstacks'
  249. showallsuspendedtasks -- For more information run 'help showallsuspendedtasks'
  250. showalltaskledgers -- For more information run 'help showalltaskledgers'
  251. showalltasklogicalwrites -- For more information run 'help showalltasklogicalwrites'
  252. showalltaskpolicy -- For more information run 'help showalltaskpolicy'
  253. showalltasks -- For more information run 'help showalltasks'
  254. showallthreads -- For more information run 'help showallthreads'
  255. showallttydevs -- For more information run 'help showallttydevs'
  256. showallvm -- For more information run 'help showallvm'
  257. showallvme -- For more information run 'help showallvme'
  258. showallvmstats -- For more information run 'help showallvmstats'
  259. showallvnodes -- For more information run 'help showallvnodes'
  260. showallvouchers -- For more information run 'help showallvouchers'
  261. showatmvaluelisteners -- For more information run 'help showatmvaluelisteners'
  262. showbankaccountstocharge -- For more information run 'help showbankaccountstocharge'
  263. showbankaccountstopay -- For more information run 'help showbankaccountstopay'
  264. showbootargs -- For more information run 'help showbootargs'
  265. showbootermemorymap -- For more information run 'help showbootermemorymap'
  266. showcoalitioninfo -- For more information run 'help showcoalitioninfo'
  267. showcurrentabstime -- For more information run 'help showcurrentabstime'
  268. showcurrentstacks -- For more information run 'help showcurrentstacks'
  269. showcurrentthreads -- For more information run 'help showcurrentthreads'
  270. showglobalqstats -- For more information run 'help showglobalqstats'
  271. showglobalvouchertable -- For more information run 'help showglobalvouchertable'
  272. showglobalwaitqs -- For more information run 'help showglobalwaitqs'
  273. showifaddrs -- For more information run 'help showifaddrs'
  274. showifmultiaddrs -- For more information run 'help showifmultiaddrs'
  275. showifnets -- For more information run 'help showifnets'
  276. showin6multiaddrs -- For more information run 'help showin6multiaddrs'
  277. showinitchild -- For more information run 'help showinitchild'
  278. showinmultiaddrs -- For more information run 'help showinmultiaddrs'
  279. showinterruptcounts -- For more information run 'help showinterruptcounts'
  280. showinterrupts -- For more information run 'help showinterrupts'
  281. showinterruptsourceinfo -- For more information run 'help showinterruptsourceinfo'
  282. showinterruptstats -- For more information run 'help showinterruptstats'
  283. showioalloc -- For more information run 'help showioalloc'
  284. showioservicepm -- For more information run 'help showioservicepm'
  285. showipc -- For more information run 'help showipc'
  286. showipcimportance -- For more information run 'help showipcimportance'
  287. showipcsummary -- For more information run 'help showipcsummary'
  288. showirqbyipitimerratio -- For more information run 'help showirqbyipitimerratio'
  289. showivac -- For more information run 'help showivac'
  290. showivacfreelist -- For more information run 'help showivacfreelist'
  291. showjetsamsnapshot -- For more information run 'help showjetsamsnapshot'
  292. showkdebug -- For more information run 'help showkdebug'
  293. showkdebugtypefilter -- For more information run 'help showkdebugtypefilter'
  294. showkerneldebugbuffer -- For more information run 'help showkerneldebugbuffer'
  295. showkerneldebugbuffercpu -- For more information run 'help showkerneldebugbuffercpu'
  296. showkmodaddr -- For more information run 'help showkmodaddr'
  297. showkmsg -- For more information run 'help showkmsg'
  298. showkqueue -- For more information run 'help showkqueue'
  299. showktrace -- For more information run 'help showktrace'
  300. showlldbtypesummaries -- For more information run 'help showlldbtypesummaries'
  301. showlock -- For more information run 'help showlock'
  302. showmap -- For more information run 'help showmap'
  303. showmapvme -- For more information run 'help showmapvme'
  304. showmapwired -- For more information run 'help showmapwired'
  305. showmcastate -- For more information run 'help showmcastate'
  306. showmemorystatus -- For more information run 'help showmemorystatus'
  307. showmqueue -- For more information run 'help showmqueue'
  308. shownewvnodes -- For more information run 'help shownewvnodes'
  309. showobject -- For more information run 'help showobject'
  310. showosmalloc -- For more information run 'help showosmalloc'
  311. showpgtrace -- For more information run 'help showpgtrace'
  312. showpid -- For more information run 'help showpid'
  313. showpipestats -- For more information run 'help showpipestats'
  314. showport -- For more information run 'help showport'
  315. showportsendrights -- For more information run 'help showportsendrights'
  316. showprepost -- For more information run 'help showprepost'
  317. showprepostchain -- For more information run 'help showprepostchain'
  318. showproc -- For more information run 'help showproc'
  319. showprocfiles -- For more information run 'help showprocfiles'
  320. showprocfilessummary -- For more information run 'help showprocfilessummary'
  321. showprocinfo -- For more information run 'help showprocinfo'
  322. showproclocks -- For more information run 'help showproclocks'
  323. showprocrefs -- For more information run 'help showprocrefs'
  324. showprocsockets -- For more information run 'help showprocsockets'
  325. showproctree -- For more information run 'help showproctree'
  326. showprocuuidpolicytable -- For more information run 'help showprocuuidpolicytable'
  327. showprocvnodes -- For more information run 'help showprocvnodes'
  328. showpset -- For more information run 'help showpset'
  329. showpte -- For more information run 'help showpte'
  330. showraw -- For more information run 'help showraw'
  331. showregistry -- For more information run 'help showregistry'
  332. showregistryentry -- For more information run 'help showregistryentry'
  333. showregistryprops -- For more information run 'help showregistryprops'
  334. showrights -- For more information run 'help showrights'
  335. showrunq -- For more information run 'help showrunq'
  336. showschedhistory -- For more information run 'help showschedhistory'
  337. showscheduler -- For more information run 'help showscheduler'
  338. showselectmem -- For more information run 'help showselectmem'
  339. showsetidlink -- For more information run 'help showsetidlink'
  340. showsocket -- For more information run 'help showsocket'
  341. showstackaftertask -- For more information run 'help showstackaftertask'
  342. showstackafterthread -- For more information run 'help showstackafterthread'
  343. showstructpacking -- For more information run 'help showstructpacking'
  344. showtask -- For more information run 'help showtask'
  345. showtaskbusyports -- For more information run 'help showtaskbusyports'
  346. showtaskcoalitions -- For more information run 'help showtaskcoalitions'
  347. showtaskipc -- For more information run 'help showtaskipc'
  348. showtaskledgers -- For more information run 'help showtaskledgers'
  349. showtaskloadinfo -- For more information run 'help showtaskloadinfo'
  350. showtaskrights -- For more information run 'help showtaskrights'
  351. showtaskrightsbt -- For more information run 'help showtaskrightsbt'
  352. showtaskstacks -- For more information run 'help showtaskstacks'
  353. showtasksuspenders -- For more information run 'help showtasksuspenders'
  354. showtaskthreads -- For more information run 'help showtaskthreads'
  355. showtaskuserargs -- For more information run 'help showtaskuserargs'
  356. showtaskuserdyldinfo -- For more information run 'help showtaskuserdyldinfo'
  357. showtaskuserlibraries -- For more information run 'help showtaskuserlibraries'
  358. showtaskuserstacks -- For more information run 'help showtaskuserstacks'
  359. showtaskvm -- For more information run 'help showtaskvm'
  360. showtaskvme -- For more information run 'help showtaskvme'
  361. showterminatedtasks -- For more information run 'help showterminatedtasks'
  362. showthreadfortid -- For more information run 'help showthreadfortid'
  363. showthreaduserstack -- For more information run 'help showthreaduserstack'
  364. showtimerwakeupstats -- For more information run 'help showtimerwakeupstats'
  365. showtopztrace -- For more information run 'help showtopztrace'
  366. showtty -- For more information run 'help showtty'
  367. showversion -- For more information run 'help showversion'
  368. showvmtags -- For more information run 'help showvmtags'
  369. showvnode -- For more information run 'help showvnode'
  370. showvnodecleanblk -- For more information run 'help showvnodecleanblk'
  371. showvnodedev -- For more information run 'help showvnodedev'
  372. showvnodedirtyblk -- For more information run 'help showvnodedirtyblk'
  373. showvnodelocks -- For more information run 'help showvnodelocks'
  374. showvnodepath -- For more information run 'help showvnodepath'
  375. showvolbusyvnodes -- For more information run 'help showvolbusyvnodes'
  376. showvolvnodes -- For more information run 'help showvolvnodes'
  377. showvoucher -- For more information run 'help showvoucher'
  378. showwaitq -- For more information run 'help showwaitq'
  379. showwaitqlink -- For more information run 'help showwaitqlink'
  380. showworkqvnodes -- For more information run 'help showworkqvnodes'
  381. showzalloc -- For more information run 'help showzalloc'
  382. showzallochistogram -- For more information run 'help showzallochistogram'
  383. showzallocs -- For more information run 'help showzallocs'
  384. showzallocsfortrace -- For more information run 'help showzallocsfortrace'
  385. showzfreelist -- For more information run 'help showzfreelist'
  386. showzstacktrace -- For more information run 'help showzstacktrace'
  387. showzstats -- For more information run 'help showzstats'
  388. showztrace -- For more information run 'help showztrace'
  389. showztraceaddr -- For more information run 'help showztraceaddr'
  390. showztracehistogram -- For more information run 'help showztracehistogram'
  391. showztraces -- For more information run 'help showztraces'
  392. showztracesabove -- For more information run 'help showztracesabove'
  393. switchtoact -- For more information run 'help switchtoact'
  394. switchtoregs -- For more information run 'help switchtoregs'
  395. symbolicate -- For more information run 'help symbolicate'
  396. systemlog -- For more information run 'help systemlog'
  397. taskforpmap -- For more information run 'help taskforpmap'
  398. vmobjectwalkpages -- For more information run 'help vmobjectwalkpages'
  399. vmpage_get_phys_page -- For more information run 'help vmpage_get_phys_page'
  400. vmpage_unpack_ptr -- For more information run 'help vmpage_unpack_ptr'
  401. vmpagelookup -- For more information run 'help vmpagelookup'
  402. walkkauthcache -- For more information run 'help walkkauthcache'
  403. walklist_entry -- For more information run 'help walklist_entry'
  404. walkqueue_head -- For more information run 'help walkqueue_head'
  405. whatis -- For more information run 'help whatis'
  406. workingkuserlibraries -- For more information run 'help workingkuserlibraries'
  407. workinguserstacks -- For more information run 'help workinguserstacks'
  408. writeioport16 -- For more information run 'help writeioport16'
  409. writeioport32 -- For more information run 'help writeioport32'
  410. writeioport8 -- For more information run 'help writeioport8'
  411. writemsr64 -- For more information run 'help writemsr64'
  412. writephys -- For more information run 'help writephys'
  413. xi -- For more information run 'help xi'
  414. xnudebug -- For more information run 'help xnudebug'
  415. zombproc -- For more information run 'help zombproc'
  416. zombstacks -- For more information run 'help zombstacks'
  417. zombtasks -- For more information run 'help zombtasks'
  418. zprint -- For more information run 'help zprint'
  419. zstack -- For more information run 'help zstack'
  420. zstack_findelem -- For more information run 'help zstack_findelem'
  421. zstack_findleak -- For more information run 'help zstack_findleak'
  422. zstack_inorder -- For more information run 'help zstack_inorder'
  423. zstack_showzonesbeinglogged -- For more information run 'help zstack_showzonesbeinglogged'
  424.  
  425. For more information on any command, type 'help <command-name>'.
  426. (lldb)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement