From 6751d511aeedfdd568e79c0e7b03546965c4227a Mon Sep 17 00:00:00 2001 From: pravic Date: Thu, 14 Apr 2016 00:40:16 +0300 Subject: add missed debug module docs (gitignore :() --- doc/km/debug/enum.DPFLTR_ID.html | 126 +++++++++++++++++++++ doc/km/debug/enum.DPFLTR_LEVEL.html | 119 ++++++++++++++++++++ doc/km/debug/fn.DbgBreakPoint.html | 113 +++++++++++++++++++ doc/km/debug/fn.DbgBreakPointWithStatus.html | 113 +++++++++++++++++++ doc/km/debug/fn.DbgPrint.html | 113 +++++++++++++++++++ doc/km/debug/fn.DbgPrintEx.html | 113 +++++++++++++++++++ doc/km/debug/index.html | 157 +++++++++++++++++++++++++++ doc/km/debug/sidebar-items.js | 1 + 8 files changed, 855 insertions(+) create mode 100644 doc/km/debug/enum.DPFLTR_ID.html create mode 100644 doc/km/debug/enum.DPFLTR_LEVEL.html create mode 100644 doc/km/debug/fn.DbgBreakPoint.html create mode 100644 doc/km/debug/fn.DbgBreakPointWithStatus.html create mode 100644 doc/km/debug/fn.DbgPrint.html create mode 100644 doc/km/debug/fn.DbgPrintEx.html create mode 100644 doc/km/debug/index.html create mode 100644 doc/km/debug/sidebar-items.js (limited to 'doc/km/debug') diff --git a/doc/km/debug/enum.DPFLTR_ID.html b/doc/km/debug/enum.DPFLTR_ID.html new file mode 100644 index 0000000..80dbaf3 --- /dev/null +++ b/doc/km/debug/enum.DPFLTR_ID.html @@ -0,0 +1,126 @@ + + + + + + + + + + km::debug::DPFLTR_ID - Rust + + + + + + + + + + + + + + + + + +
+

Enum km::debug::DPFLTR_ID + + [] + + [src]

+
pub enum DPFLTR_ID {
+    SYSTEM,
+    SMSS,
+    SETUP,
+    NTFS,
+    IHVDRIVER,
+    IHVVIDEO,
+    IHVAUDIO,
+    IHVNETWORK,
+    IHVSTREAMING,
+    IHVBUS,
+    DEFAULT,
+}

DbgPrintEx Component name.

+

Variants

+
SYSTEM
SMSS
SETUP
NTFS
IHVDRIVER
IHVVIDEO
IHVAUDIO
IHVNETWORK
IHVSTREAMING
IHVBUS
DEFAULT
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/doc/km/debug/enum.DPFLTR_LEVEL.html b/doc/km/debug/enum.DPFLTR_LEVEL.html new file mode 100644 index 0000000..43d398d --- /dev/null +++ b/doc/km/debug/enum.DPFLTR_LEVEL.html @@ -0,0 +1,119 @@ + + + + + + + + + + km::debug::DPFLTR_LEVEL - Rust + + + + + + + + + + + + + + + + + +
+

Enum km::debug::DPFLTR_LEVEL + + [] + + [src]

+
pub enum DPFLTR_LEVEL {
+    ERROR,
+    WARNING,
+    TRACE,
+    INFO,
+}

DbgPrintEx Message severity.

+

Variants

+
ERROR
WARNING
TRACE
INFO
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/doc/km/debug/fn.DbgBreakPoint.html b/doc/km/debug/fn.DbgBreakPoint.html new file mode 100644 index 0000000..0eab778 --- /dev/null +++ b/doc/km/debug/fn.DbgBreakPoint.html @@ -0,0 +1,113 @@ + + + + + + + + + + km::debug::DbgBreakPoint - Rust + + + + + + + + + + + + + + + + + +
+

km::debug::DbgBreakPoint + + [] + + [src]

+
pub unsafe extern "system" fn DbgBreakPoint()

Breaks into the kernel debugger.

+
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/doc/km/debug/fn.DbgBreakPointWithStatus.html b/doc/km/debug/fn.DbgBreakPointWithStatus.html new file mode 100644 index 0000000..f6f51de --- /dev/null +++ b/doc/km/debug/fn.DbgBreakPointWithStatus.html @@ -0,0 +1,113 @@ + + + + + + + + + + km::debug::DbgBreakPointWithStatus - Rust + + + + + + + + + + + + + + + + + +
+

km::debug::DbgBreakPointWithStatus + + [] + + [src]

+
pub unsafe extern "system" fn DbgBreakPointWithStatus(Status: NTSTATUS)

Breaks into the kernel debugger and sends the value of Status to the debugger.

+
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/doc/km/debug/fn.DbgPrint.html b/doc/km/debug/fn.DbgPrint.html new file mode 100644 index 0000000..dd725f1 --- /dev/null +++ b/doc/km/debug/fn.DbgPrint.html @@ -0,0 +1,113 @@ + + + + + + + + + + km::debug::DbgPrint - Rust + + + + + + + + + + + + + + + + + +
+

km::debug::DbgPrint + + [] + + [src]

+
pub unsafe extern fn DbgPrint(Format: *const u8, ...) -> NTSTATUS

DbgPrint routine sends a message to the kernel debugger.

+
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/doc/km/debug/fn.DbgPrintEx.html b/doc/km/debug/fn.DbgPrintEx.html new file mode 100644 index 0000000..95f0b2f --- /dev/null +++ b/doc/km/debug/fn.DbgPrintEx.html @@ -0,0 +1,113 @@ + + + + + + + + + + km::debug::DbgPrintEx - Rust + + + + + + + + + + + + + + + + + +
+

km::debug::DbgPrintEx + + [] + + [src]

+
pub unsafe extern fn DbgPrintEx(ComponentId: u32, Level: u32, Format: *const u8, ...) -> NTSTATUS

The DbgPrintEx routine sends a string to the kernel debugger if certain conditions are met.

+
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/doc/km/debug/index.html b/doc/km/debug/index.html new file mode 100644 index 0000000..2109e2e --- /dev/null +++ b/doc/km/debug/index.html @@ -0,0 +1,157 @@ + + + + + + + + + + km::debug - Rust + + + + + + + + + + + + + + + + + +
+

Module km::debug + + [] + + [src]

+

Debugger support.

+

Enums

+ + + + + + + + +
DPFLTR_ID +

DbgPrintEx Component name.

+
DPFLTR_LEVEL +

DbgPrintEx Message severity.

+

Functions

+ + + + + + + + + + + + + + + + +
DbgBreakPoint +

Breaks into the kernel debugger.

+
DbgBreakPointWithStatus +

Breaks into the kernel debugger and sends the value of Status to the debugger.

+
DbgPrint +

DbgPrint routine sends a message to the kernel debugger.

+
DbgPrintEx +

The DbgPrintEx routine sends a string to the kernel debugger if certain conditions are met.

+
+ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/doc/km/debug/sidebar-items.js b/doc/km/debug/sidebar-items.js new file mode 100644 index 0000000..f296936 --- /dev/null +++ b/doc/km/debug/sidebar-items.js @@ -0,0 +1 @@ +initSidebarItems({"enum":[["DPFLTR_ID","`DbgPrintEx` Component name."],["DPFLTR_LEVEL","`DbgPrintEx` Message severity."]],"fn":[["DbgBreakPoint","Breaks into the kernel debugger."],["DbgBreakPointWithStatus","Breaks into the kernel debugger and sends the value of `Status` to the debugger."],["DbgPrint","`DbgPrint` routine sends a message to the kernel debugger."],["DbgPrintEx","The `DbgPrintEx` routine sends a string to the kernel debugger if certain conditions are met."]]}); \ No newline at end of file -- cgit v1.2.3