Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.9 KiB

  1. /*++
  2. Copyright (c) 1992 Microsoft Corporation
  3. Module Name:
  4. help.c
  5. Abstract:
  6. help for HSM kd extensions
  7. Author:
  8. Ravisankar Pudipeddi 22 June 1998
  9. Environment:
  10. User Mode.
  11. Revision History:
  12. --*/
  13. #include "pch.h"
  14. DECLARE_API( help )
  15. {
  16. dprintf("\nHSM Debugger Extensions\n");
  17. dprintf("rpfilename <filename> [flags]"
  18. " - dumps the context for the specified filename\n"
  19. " filename: dumps entries matching the filename\n"
  20. " flags: 1 - verbose\n");
  21. dprintf("rpfilecontext <filecontext> [flags]"
  22. " - dumps the specified file context\n"
  23. " flags: 1 - verbose\n"
  24. " 2 - dump all entries from <filecontext> (or from queue head if it is 0)\n");
  25. dprintf("rpfileobj <fileobj> [flags] - dumps the specified RP_FILE_OBJ entry\n");
  26. dprintf("rpirp <irp_queue_entry> [flags] - dumps the specified RP_IRP_QUEUE entry\n");
  27. dprintf("rpmsg <RP_MSG_ENTRY pointer> - dumps the specified RP_MSG_ENTRY\n");
  28. dprintf("rpbuf <cache_buffer_entry> [flags] - dumps the specified RP_FILE_BUF entry\n");
  29. dprintf("rpbucket <bucket-number> [flags] - dumps the specified cache hash bucket\n");
  30. dprintf("rplru [flags] - dumps the list of file buffers on the LRU\n");
  31. dprintf("rpdata <rpdata> [flags] - dumps the reparse point data\n");
  32. dprintf("rpsummary - dumps assorted counters and variables\n");
  33. dprintf("rpvalque <q-head> [flags] - counts the number of entries in the queue optionally dumping entry details\n");
  34. dprintf("rpioq [flags] - dumps the queue of Irps for sending requests to the recall engine\n");
  35. dprintf("\n");
  36. return;
  37. }