mdbxmou 0.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +32 -0
- package/.github/workflows/publish.yml +27 -0
- package/.gitmodules +3 -0
- package/CMakeLists.txt +53 -0
- package/LICENSE +201 -0
- package/README.md +639 -0
- package/build.js +11 -0
- package/deps/libmdbx/.clang-format +3 -0
- package/deps/libmdbx/.cmake-format.yaml +3 -0
- package/deps/libmdbx/.le.ini +40 -0
- package/deps/libmdbx/CMakeLists.txt +1269 -0
- package/deps/libmdbx/COPYRIGHT +159 -0
- package/deps/libmdbx/ChangeLog.md +2786 -0
- package/deps/libmdbx/GNUmakefile +950 -0
- package/deps/libmdbx/LICENSE +177 -0
- package/deps/libmdbx/Makefile +16 -0
- package/deps/libmdbx/NOTICE +39 -0
- package/deps/libmdbx/README.md +863 -0
- package/deps/libmdbx/TODO.md +43 -0
- package/deps/libmdbx/cmake/compiler.cmake +1221 -0
- package/deps/libmdbx/cmake/profile.cmake +58 -0
- package/deps/libmdbx/cmake/utils.cmake +524 -0
- package/deps/libmdbx/conanfile.py +323 -0
- package/deps/libmdbx/docs/Doxyfile.in +2734 -0
- package/deps/libmdbx/docs/_preface.md +47 -0
- package/deps/libmdbx/docs/_restrictions.md +248 -0
- package/deps/libmdbx/docs/_starting.md +245 -0
- package/deps/libmdbx/docs/_toc.md +34 -0
- package/deps/libmdbx/docs/header.html +96 -0
- package/deps/libmdbx/example/CMakeLists.txt +6 -0
- package/deps/libmdbx/example/README.md +1 -0
- package/deps/libmdbx/example/example-mdbx.c +154 -0
- package/deps/libmdbx/example/sample-bdb.txt +77 -0
- package/deps/libmdbx/mdbx.h +6655 -0
- package/deps/libmdbx/mdbx.h++ +6428 -0
- package/deps/libmdbx/packages/buildroot/0001-package-libmdbx-new-package-library-database.patch +173 -0
- package/deps/libmdbx/src/alloy.c +54 -0
- package/deps/libmdbx/src/api-cold.c +543 -0
- package/deps/libmdbx/src/api-copy.c +912 -0
- package/deps/libmdbx/src/api-cursor.c +754 -0
- package/deps/libmdbx/src/api-dbi.c +315 -0
- package/deps/libmdbx/src/api-env.c +1434 -0
- package/deps/libmdbx/src/api-extra.c +165 -0
- package/deps/libmdbx/src/api-key-transform.c +197 -0
- package/deps/libmdbx/src/api-misc.c +286 -0
- package/deps/libmdbx/src/api-opts.c +575 -0
- package/deps/libmdbx/src/api-range-estimate.c +365 -0
- package/deps/libmdbx/src/api-txn-data.c +454 -0
- package/deps/libmdbx/src/api-txn.c +921 -0
- package/deps/libmdbx/src/atomics-ops.h +364 -0
- package/deps/libmdbx/src/atomics-types.h +97 -0
- package/deps/libmdbx/src/audit.c +109 -0
- package/deps/libmdbx/src/bits.md +34 -0
- package/deps/libmdbx/src/chk.c +1796 -0
- package/deps/libmdbx/src/cogs.c +309 -0
- package/deps/libmdbx/src/cogs.h +506 -0
- package/deps/libmdbx/src/coherency.c +170 -0
- package/deps/libmdbx/src/config.h.in +88 -0
- package/deps/libmdbx/src/cursor.c +2396 -0
- package/deps/libmdbx/src/cursor.h +391 -0
- package/deps/libmdbx/src/dbi.c +717 -0
- package/deps/libmdbx/src/dbi.h +142 -0
- package/deps/libmdbx/src/debug_begin.h +36 -0
- package/deps/libmdbx/src/debug_end.h +15 -0
- package/deps/libmdbx/src/dpl.c +486 -0
- package/deps/libmdbx/src/dpl.h +134 -0
- package/deps/libmdbx/src/dxb.c +1335 -0
- package/deps/libmdbx/src/env.c +607 -0
- package/deps/libmdbx/src/essentials.h +125 -0
- package/deps/libmdbx/src/gc-get.c +1345 -0
- package/deps/libmdbx/src/gc-put.c +970 -0
- package/deps/libmdbx/src/gc.h +40 -0
- package/deps/libmdbx/src/global.c +474 -0
- package/deps/libmdbx/src/internals.h +585 -0
- package/deps/libmdbx/src/layout-dxb.h +288 -0
- package/deps/libmdbx/src/layout-lck.h +289 -0
- package/deps/libmdbx/src/lck-posix.c +859 -0
- package/deps/libmdbx/src/lck-windows.c +607 -0
- package/deps/libmdbx/src/lck.c +174 -0
- package/deps/libmdbx/src/lck.h +110 -0
- package/deps/libmdbx/src/logging_and_debug.c +250 -0
- package/deps/libmdbx/src/logging_and_debug.h +159 -0
- package/deps/libmdbx/src/man1/mdbx_chk.1 +106 -0
- package/deps/libmdbx/src/man1/mdbx_copy.1 +95 -0
- package/deps/libmdbx/src/man1/mdbx_drop.1 +48 -0
- package/deps/libmdbx/src/man1/mdbx_dump.1 +101 -0
- package/deps/libmdbx/src/man1/mdbx_load.1 +105 -0
- package/deps/libmdbx/src/man1/mdbx_stat.1 +86 -0
- package/deps/libmdbx/src/mdbx.c++ +1837 -0
- package/deps/libmdbx/src/meta.c +656 -0
- package/deps/libmdbx/src/meta.h +168 -0
- package/deps/libmdbx/src/mvcc-readers.c +414 -0
- package/deps/libmdbx/src/node.c +365 -0
- package/deps/libmdbx/src/node.h +102 -0
- package/deps/libmdbx/src/ntdll.def +1246 -0
- package/deps/libmdbx/src/options.h +534 -0
- package/deps/libmdbx/src/osal.c +3485 -0
- package/deps/libmdbx/src/osal.h +587 -0
- package/deps/libmdbx/src/page-get.c +483 -0
- package/deps/libmdbx/src/page-iov.c +185 -0
- package/deps/libmdbx/src/page-iov.h +34 -0
- package/deps/libmdbx/src/page-ops.c +744 -0
- package/deps/libmdbx/src/page-ops.h +142 -0
- package/deps/libmdbx/src/pnl.c +236 -0
- package/deps/libmdbx/src/pnl.h +146 -0
- package/deps/libmdbx/src/preface.h +990 -0
- package/deps/libmdbx/src/proto.h +105 -0
- package/deps/libmdbx/src/refund.c +212 -0
- package/deps/libmdbx/src/sort.h +484 -0
- package/deps/libmdbx/src/spill.c +431 -0
- package/deps/libmdbx/src/spill.h +74 -0
- package/deps/libmdbx/src/table.c +107 -0
- package/deps/libmdbx/src/tls.c +551 -0
- package/deps/libmdbx/src/tls.h +43 -0
- package/deps/libmdbx/src/tools/chk.c +673 -0
- package/deps/libmdbx/src/tools/copy.c +166 -0
- package/deps/libmdbx/src/tools/drop.c +199 -0
- package/deps/libmdbx/src/tools/dump.c +515 -0
- package/deps/libmdbx/src/tools/load.c +831 -0
- package/deps/libmdbx/src/tools/stat.c +516 -0
- package/deps/libmdbx/src/tools/wingetopt.c +87 -0
- package/deps/libmdbx/src/tools/wingetopt.h +30 -0
- package/deps/libmdbx/src/tree-ops.c +1554 -0
- package/deps/libmdbx/src/tree-search.c +140 -0
- package/deps/libmdbx/src/txl.c +99 -0
- package/deps/libmdbx/src/txl.h +26 -0
- package/deps/libmdbx/src/txn.c +1083 -0
- package/deps/libmdbx/src/unaligned.h +205 -0
- package/deps/libmdbx/src/utils.c +32 -0
- package/deps/libmdbx/src/utils.h +76 -0
- package/deps/libmdbx/src/version.c.in +44 -0
- package/deps/libmdbx/src/walk.c +290 -0
- package/deps/libmdbx/src/walk.h +20 -0
- package/deps/libmdbx/src/windows-import.c +152 -0
- package/deps/libmdbx/src/windows-import.h +128 -0
- package/deps/libmdbx/test/CMakeLists.txt +317 -0
- package/deps/libmdbx/test/append.c++ +237 -0
- package/deps/libmdbx/test/base.h++ +92 -0
- package/deps/libmdbx/test/battery-tmux.sh +64 -0
- package/deps/libmdbx/test/cases.c++ +118 -0
- package/deps/libmdbx/test/chrono.c++ +134 -0
- package/deps/libmdbx/test/chrono.h++ +85 -0
- package/deps/libmdbx/test/config.c++ +643 -0
- package/deps/libmdbx/test/config.h++ +334 -0
- package/deps/libmdbx/test/copy.c++ +62 -0
- package/deps/libmdbx/test/dead.c++ +39 -0
- package/deps/libmdbx/test/dump-load.sh +40 -0
- package/deps/libmdbx/test/extra/crunched_delete.c++ +409 -0
- package/deps/libmdbx/test/extra/cursor_closing.c++ +410 -0
- package/deps/libmdbx/test/extra/dbi.c++ +229 -0
- package/deps/libmdbx/test/extra/doubtless_positioning.c++ +253 -0
- package/deps/libmdbx/test/extra/dupfix_addodd.c +94 -0
- package/deps/libmdbx/test/extra/dupfix_multiple.c++ +311 -0
- package/deps/libmdbx/test/extra/early_close_dbi.c++ +137 -0
- package/deps/libmdbx/test/extra/hex_base64_base58.c++ +118 -0
- package/deps/libmdbx/test/extra/maindb_ordinal.c++ +61 -0
- package/deps/libmdbx/test/extra/open.c++ +96 -0
- package/deps/libmdbx/test/extra/pcrf/README.md +2 -0
- package/deps/libmdbx/test/extra/pcrf/pcrf_test.c +380 -0
- package/deps/libmdbx/test/extra/probe.c++ +10 -0
- package/deps/libmdbx/test/extra/txn.c++ +407 -0
- package/deps/libmdbx/test/extra/upsert_alldups.c +193 -0
- package/deps/libmdbx/test/fork.c++ +263 -0
- package/deps/libmdbx/test/hill.c++ +447 -0
- package/deps/libmdbx/test/jitter.c++ +197 -0
- package/deps/libmdbx/test/keygen.c++ +393 -0
- package/deps/libmdbx/test/keygen.h++ +130 -0
- package/deps/libmdbx/test/log.c++ +358 -0
- package/deps/libmdbx/test/log.h++ +91 -0
- package/deps/libmdbx/test/main.c++ +706 -0
- package/deps/libmdbx/test/nested.c++ +318 -0
- package/deps/libmdbx/test/osal-unix.c++ +647 -0
- package/deps/libmdbx/test/osal-windows.c++ +440 -0
- package/deps/libmdbx/test/osal.h++ +41 -0
- package/deps/libmdbx/test/stochastic.sh +690 -0
- package/deps/libmdbx/test/stub/LICENSE +24 -0
- package/deps/libmdbx/test/stub/README.md +8 -0
- package/deps/libmdbx/test/stub/pthread_barrier.c +104 -0
- package/deps/libmdbx/test/stub/pthread_barrier.h +77 -0
- package/deps/libmdbx/test/test.c++ +1551 -0
- package/deps/libmdbx/test/test.h++ +298 -0
- package/deps/libmdbx/test/tmux.conf +3 -0
- package/deps/libmdbx/test/try.c++ +30 -0
- package/deps/libmdbx/test/ttl.c++ +240 -0
- package/deps/libmdbx/test/utils.c++ +203 -0
- package/deps/libmdbx/test/utils.h++ +326 -0
- package/deps/libmdbx/test/valgrind_suppress.txt +536 -0
- package/lib/mdbx_evn_async.js +211 -0
- package/lib/mdbx_worker.js +195 -0
- package/lib/nativemou.js +6 -0
- package/package.json +38 -0
- package/src/async/envmou_close.cpp +34 -0
- package/src/async/envmou_close.hpp +32 -0
- package/src/async/envmou_copy_to.cpp +29 -0
- package/src/async/envmou_copy_to.hpp +38 -0
- package/src/async/envmou_keys.cpp +201 -0
- package/src/async/envmou_keys.hpp +50 -0
- package/src/async/envmou_open.cpp +38 -0
- package/src/async/envmou_open.hpp +33 -0
- package/src/async/envmou_query.cpp +167 -0
- package/src/async/envmou_query.hpp +53 -0
- package/src/dbimou.cpp +522 -0
- package/src/dbimou.hpp +82 -0
- package/src/env_arg0.hpp +24 -0
- package/src/envmou.cpp +445 -0
- package/src/envmou.hpp +116 -0
- package/src/modulemou.cpp +113 -0
- package/src/querymou.cpp +177 -0
- package/src/querymou.hpp +93 -0
- package/src/txnmou.cpp +254 -0
- package/src/txnmou.hpp +122 -0
- package/src/typemou.hpp +239 -0
- package/src/valuemou.hpp +194 -0
- package/test/async.js +67 -0
- package/test/e3.js +38 -0
- package/test/e4.js +89 -0
- package/test/e5.js +162 -0
- package/test/test-batch-ops.js +243 -0
- package/test/test-cursor-mode.js +84 -0
- package/test/test-multi-mode.js +87 -0
|
@@ -0,0 +1,1246 @@
|
|
|
1
|
+
LIBRARY ntdll
|
|
2
|
+
EXPORTS
|
|
3
|
+
CsrAllocateCaptureBuffer
|
|
4
|
+
CsrAllocateMessagePointer
|
|
5
|
+
CsrCaptureMessageBuffer
|
|
6
|
+
CsrCaptureMessageMultiUnicodeStringsInPlace
|
|
7
|
+
CsrCaptureMessageString
|
|
8
|
+
CsrCaptureTimeout
|
|
9
|
+
CsrClientCallServer
|
|
10
|
+
CsrClientConnectToServer
|
|
11
|
+
CsrFreeCaptureBuffer
|
|
12
|
+
CsrGetProcessId
|
|
13
|
+
CsrIdentifyAlertableThread
|
|
14
|
+
CsrSetPriorityClass
|
|
15
|
+
DbgBreakPoint
|
|
16
|
+
DbgPrint
|
|
17
|
+
DbgPrintEx
|
|
18
|
+
DbgPrintReturnControlC
|
|
19
|
+
DbgPrompt
|
|
20
|
+
DbgQueryDebugFilterState
|
|
21
|
+
DbgSetDebugFilterState
|
|
22
|
+
DbgUiConnectToDbg
|
|
23
|
+
DbgUiContinue
|
|
24
|
+
DbgUiConvertStateChangeStructure
|
|
25
|
+
DbgUiDebugActiveProcess
|
|
26
|
+
DbgUiGetThreadDebugObject
|
|
27
|
+
DbgUiIssueRemoteBreakin
|
|
28
|
+
DbgUiRemoteBreakin
|
|
29
|
+
DbgUiSetThreadDebugObject
|
|
30
|
+
DbgUiStopDebugging
|
|
31
|
+
DbgUiWaitStateChange
|
|
32
|
+
DbgUserBreakPoint
|
|
33
|
+
KiRaiseUserExceptionDispatcher
|
|
34
|
+
KiUserApcDispatcher
|
|
35
|
+
KiUserCallbackDispatcher
|
|
36
|
+
KiUserExceptionDispatcher
|
|
37
|
+
LdrAccessResource
|
|
38
|
+
LdrAddRefDll
|
|
39
|
+
LdrDisableThreadCalloutsForDll
|
|
40
|
+
LdrEnumResources
|
|
41
|
+
LdrEnumerateLoadedModules
|
|
42
|
+
LdrFindEntryForAddress
|
|
43
|
+
LdrFindResourceDirectory_U
|
|
44
|
+
LdrFindResourceEx_U
|
|
45
|
+
LdrFindResource_U
|
|
46
|
+
LdrFlushAlternateResourceModules
|
|
47
|
+
LdrGetDllHandle
|
|
48
|
+
LdrGetDllHandleEx
|
|
49
|
+
LdrGetProcedureAddress
|
|
50
|
+
LdrInitShimEngineDynamic
|
|
51
|
+
LdrInitializeThunk
|
|
52
|
+
LdrLoadAlternateResourceModule
|
|
53
|
+
LdrLoadDll
|
|
54
|
+
LdrLockLoaderLock
|
|
55
|
+
LdrProcessRelocationBlock
|
|
56
|
+
LdrQueryImageFileExecutionOptions
|
|
57
|
+
LdrQueryProcessModuleInformation
|
|
58
|
+
LdrSetAppCompatDllRedirectionCallback
|
|
59
|
+
LdrSetDllManifestProber
|
|
60
|
+
LdrShutdownProcess
|
|
61
|
+
LdrShutdownThread
|
|
62
|
+
LdrUnloadAlternateResourceModule
|
|
63
|
+
LdrUnloadDll
|
|
64
|
+
LdrUnlockLoaderLock
|
|
65
|
+
LdrVerifyImageMatchesChecksum
|
|
66
|
+
NlsAnsiCodePage
|
|
67
|
+
NlsMbCodePageTag
|
|
68
|
+
NlsMbOemCodePageTag
|
|
69
|
+
NtAcceptConnectPort
|
|
70
|
+
NtAccessCheck
|
|
71
|
+
NtAccessCheckAndAuditAlarm
|
|
72
|
+
NtAccessCheckByType
|
|
73
|
+
NtAccessCheckByTypeAndAuditAlarm
|
|
74
|
+
NtAccessCheckByTypeResultList
|
|
75
|
+
NtAccessCheckByTypeResultListAndAuditAlarm
|
|
76
|
+
NtAccessCheckByTypeResultListAndAuditAlarmByHandle
|
|
77
|
+
NtAddAtom
|
|
78
|
+
NtAddBootEntry
|
|
79
|
+
NtAdjustGroupsToken
|
|
80
|
+
NtAdjustPrivilegesToken
|
|
81
|
+
NtAlertResumeThread
|
|
82
|
+
NtAlertThread
|
|
83
|
+
NtAllocateLocallyUniqueId
|
|
84
|
+
NtAllocateUserPhysicalPages
|
|
85
|
+
NtAllocateUuids
|
|
86
|
+
NtAllocateVirtualMemory
|
|
87
|
+
NtAreMappedFilesTheSame
|
|
88
|
+
NtAssignProcessToJobObject
|
|
89
|
+
NtCallbackReturn
|
|
90
|
+
NtCancelIoFile
|
|
91
|
+
NtCancelTimer
|
|
92
|
+
NtClearEvent
|
|
93
|
+
NtClose
|
|
94
|
+
NtCloseObjectAuditAlarm
|
|
95
|
+
NtCompactKeys
|
|
96
|
+
NtCompareTokens
|
|
97
|
+
NtCompleteConnectPort
|
|
98
|
+
NtCompressKey
|
|
99
|
+
NtConnectPort
|
|
100
|
+
NtContinue
|
|
101
|
+
NtCreateDebugObject
|
|
102
|
+
NtCreateDirectoryObject
|
|
103
|
+
NtCreateEvent
|
|
104
|
+
NtCreateEventPair
|
|
105
|
+
NtCreateFile
|
|
106
|
+
NtCreateIoCompletion
|
|
107
|
+
NtCreateJobObject
|
|
108
|
+
NtCreateJobSet
|
|
109
|
+
NtCreateKey
|
|
110
|
+
NtCreateKeyedEvent
|
|
111
|
+
NtCreateMailslotFile
|
|
112
|
+
NtCreateMutant
|
|
113
|
+
NtCreateNamedPipeFile
|
|
114
|
+
NtCreatePagingFile
|
|
115
|
+
NtCreatePort
|
|
116
|
+
NtCreateProcess
|
|
117
|
+
NtCreateProcessEx
|
|
118
|
+
NtCreateProfile
|
|
119
|
+
NtCreateSection
|
|
120
|
+
NtCreateSemaphore
|
|
121
|
+
NtCreateSymbolicLinkObject
|
|
122
|
+
NtCreateThread
|
|
123
|
+
NtCreateTimer
|
|
124
|
+
NtCreateToken
|
|
125
|
+
NtCreateWaitablePort
|
|
126
|
+
NtDebugActiveProcess
|
|
127
|
+
NtDebugContinue
|
|
128
|
+
NtDelayExecution
|
|
129
|
+
NtDeleteAtom
|
|
130
|
+
NtDeleteBootEntry
|
|
131
|
+
NtDeleteFile
|
|
132
|
+
NtDeleteKey
|
|
133
|
+
NtDeleteObjectAuditAlarm
|
|
134
|
+
NtDeleteValueKey
|
|
135
|
+
NtDeviceIoControlFile
|
|
136
|
+
NtDisplayString
|
|
137
|
+
NtDuplicateObject
|
|
138
|
+
NtDuplicateToken
|
|
139
|
+
NtEnumerateBootEntries
|
|
140
|
+
NtEnumerateKey
|
|
141
|
+
NtEnumerateSystemEnvironmentValuesEx
|
|
142
|
+
NtEnumerateValueKey
|
|
143
|
+
NtExtendSection
|
|
144
|
+
NtFilterToken
|
|
145
|
+
NtFindAtom
|
|
146
|
+
NtFlushBuffersFile
|
|
147
|
+
NtFlushInstructionCache
|
|
148
|
+
NtFlushKey
|
|
149
|
+
NtFlushVirtualMemory
|
|
150
|
+
NtFlushWriteBuffer
|
|
151
|
+
NtFreeUserPhysicalPages
|
|
152
|
+
NtFreeVirtualMemory
|
|
153
|
+
NtFsControlFile
|
|
154
|
+
NtGetContextThread
|
|
155
|
+
NtGetDevicePowerState
|
|
156
|
+
NtGetWriteWatch
|
|
157
|
+
NtImpersonateAnonymousToken
|
|
158
|
+
NtImpersonateClientOfPort
|
|
159
|
+
NtImpersonateThread
|
|
160
|
+
NtInitializeRegistry
|
|
161
|
+
NtInitiatePowerAction
|
|
162
|
+
NtIsProcessInJob
|
|
163
|
+
NtIsSystemResumeAutomatic
|
|
164
|
+
NtListenPort
|
|
165
|
+
NtLoadDriver
|
|
166
|
+
NtLoadKey
|
|
167
|
+
NtLoadKey2
|
|
168
|
+
NtLockFile
|
|
169
|
+
NtLockProductActivationKeys
|
|
170
|
+
NtLockRegistryKey
|
|
171
|
+
NtLockVirtualMemory
|
|
172
|
+
NtMakePermanentObject
|
|
173
|
+
NtMakeTemporaryObject
|
|
174
|
+
NtMapUserPhysicalPages
|
|
175
|
+
NtMapUserPhysicalPagesScatter
|
|
176
|
+
NtMapViewOfSection
|
|
177
|
+
NtModifyBootEntry
|
|
178
|
+
NtNotifyChangeDirectoryFile
|
|
179
|
+
NtNotifyChangeKey
|
|
180
|
+
NtNotifyChangeMultipleKeys
|
|
181
|
+
NtOpenDirectoryObject
|
|
182
|
+
NtOpenEvent
|
|
183
|
+
NtOpenEventPair
|
|
184
|
+
NtOpenFile
|
|
185
|
+
NtOpenIoCompletion
|
|
186
|
+
NtOpenJobObject
|
|
187
|
+
NtOpenKey
|
|
188
|
+
NtOpenKeyedEvent
|
|
189
|
+
NtOpenMutant
|
|
190
|
+
NtOpenObjectAuditAlarm
|
|
191
|
+
NtOpenProcess
|
|
192
|
+
NtOpenProcessToken
|
|
193
|
+
NtOpenProcessTokenEx
|
|
194
|
+
NtOpenSection
|
|
195
|
+
NtOpenSemaphore
|
|
196
|
+
NtOpenSymbolicLinkObject
|
|
197
|
+
NtOpenThread
|
|
198
|
+
NtOpenThreadToken
|
|
199
|
+
NtOpenThreadTokenEx
|
|
200
|
+
NtOpenTimer
|
|
201
|
+
NtPlugPlayControl
|
|
202
|
+
NtPowerInformation
|
|
203
|
+
NtPrivilegeCheck
|
|
204
|
+
NtPrivilegeObjectAuditAlarm
|
|
205
|
+
NtPrivilegedServiceAuditAlarm
|
|
206
|
+
NtProtectVirtualMemory
|
|
207
|
+
NtPulseEvent
|
|
208
|
+
NtQueryAttributesFile
|
|
209
|
+
NtQueryBootEntryOrder
|
|
210
|
+
NtQueryBootOptions
|
|
211
|
+
NtQueryDebugFilterState
|
|
212
|
+
NtQueryDefaultLocale
|
|
213
|
+
NtQueryDefaultUILanguage
|
|
214
|
+
NtQueryDirectoryFile
|
|
215
|
+
NtQueryDirectoryObject
|
|
216
|
+
NtQueryEaFile
|
|
217
|
+
NtQueryEvent
|
|
218
|
+
NtQueryFullAttributesFile
|
|
219
|
+
NtQueryInformationAtom
|
|
220
|
+
NtQueryInformationFile
|
|
221
|
+
NtQueryInformationJobObject
|
|
222
|
+
NtQueryInformationPort
|
|
223
|
+
NtQueryInformationProcess
|
|
224
|
+
NtQueryInformationThread
|
|
225
|
+
NtQueryInformationToken
|
|
226
|
+
NtQueryInstallUILanguage
|
|
227
|
+
NtQueryIntervalProfile
|
|
228
|
+
NtQueryIoCompletion
|
|
229
|
+
NtQueryKey
|
|
230
|
+
NtQueryMultipleValueKey
|
|
231
|
+
NtQueryMutant
|
|
232
|
+
NtQueryObject
|
|
233
|
+
NtQueryOpenSubKeys
|
|
234
|
+
NtQueryPerformanceCounter
|
|
235
|
+
NtQueryPortInformationProcess
|
|
236
|
+
NtQueryQuotaInformationFile
|
|
237
|
+
NtQuerySection
|
|
238
|
+
NtQuerySecurityObject
|
|
239
|
+
NtQuerySemaphore
|
|
240
|
+
NtQuerySymbolicLinkObject
|
|
241
|
+
NtQuerySystemEnvironmentValue
|
|
242
|
+
NtQuerySystemEnvironmentValueEx
|
|
243
|
+
NtQuerySystemInformation
|
|
244
|
+
NtQuerySystemTime
|
|
245
|
+
NtQueryTimer
|
|
246
|
+
NtQueryTimerResolution
|
|
247
|
+
NtQueryValueKey
|
|
248
|
+
NtQueryVirtualMemory
|
|
249
|
+
NtQueryVolumeInformationFile
|
|
250
|
+
NtQueueApcThread
|
|
251
|
+
NtRaiseException
|
|
252
|
+
NtRaiseHardError
|
|
253
|
+
NtReadFile
|
|
254
|
+
NtReadFileScatter
|
|
255
|
+
NtReadRequestData
|
|
256
|
+
NtReadVirtualMemory
|
|
257
|
+
NtRegisterThreadTerminatePort
|
|
258
|
+
NtReleaseKeyedEvent
|
|
259
|
+
NtReleaseMutant
|
|
260
|
+
NtReleaseSemaphore
|
|
261
|
+
NtRemoveIoCompletion
|
|
262
|
+
NtRemoveProcessDebug
|
|
263
|
+
NtRenameKey
|
|
264
|
+
NtReplaceKey
|
|
265
|
+
NtReplyPort
|
|
266
|
+
NtReplyWaitReceivePort
|
|
267
|
+
NtReplyWaitReceivePortEx
|
|
268
|
+
NtReplyWaitReplyPort
|
|
269
|
+
NtRequestPort
|
|
270
|
+
NtRequestWaitReplyPort
|
|
271
|
+
NtResetEvent
|
|
272
|
+
NtResetWriteWatch
|
|
273
|
+
NtRestoreKey
|
|
274
|
+
NtResumeProcess
|
|
275
|
+
NtResumeThread
|
|
276
|
+
NtSaveKey
|
|
277
|
+
NtSaveKeyEx
|
|
278
|
+
NtSaveMergedKeys
|
|
279
|
+
NtSecureConnectPort
|
|
280
|
+
NtSetBootEntryOrder
|
|
281
|
+
NtSetBootOptions
|
|
282
|
+
NtSetContextThread
|
|
283
|
+
NtSetDebugFilterState
|
|
284
|
+
NtSetDefaultHardErrorPort
|
|
285
|
+
NtSetDefaultLocale
|
|
286
|
+
NtSetDefaultUILanguage
|
|
287
|
+
NtSetEaFile
|
|
288
|
+
NtSetEvent
|
|
289
|
+
NtSetEventBoostPriority
|
|
290
|
+
NtSetHighEventPair
|
|
291
|
+
NtSetHighWaitLowEventPair
|
|
292
|
+
NtSetInformationDebugObject
|
|
293
|
+
NtSetInformationFile
|
|
294
|
+
NtSetInformationJobObject
|
|
295
|
+
NtSetInformationKey
|
|
296
|
+
NtSetInformationObject
|
|
297
|
+
NtSetInformationProcess
|
|
298
|
+
NtSetInformationThread
|
|
299
|
+
NtSetInformationToken
|
|
300
|
+
NtSetIntervalProfile
|
|
301
|
+
NtSetIoCompletion
|
|
302
|
+
NtSetLdtEntries
|
|
303
|
+
NtSetLowEventPair
|
|
304
|
+
NtSetLowWaitHighEventPair
|
|
305
|
+
NtSetQuotaInformationFile
|
|
306
|
+
NtSetSecurityObject
|
|
307
|
+
NtSetSystemEnvironmentValue
|
|
308
|
+
NtSetSystemEnvironmentValueEx
|
|
309
|
+
NtSetSystemInformation
|
|
310
|
+
NtSetSystemPowerState
|
|
311
|
+
NtSetSystemTime
|
|
312
|
+
NtSetThreadExecutionState
|
|
313
|
+
NtSetTimer
|
|
314
|
+
NtSetTimerResolution
|
|
315
|
+
NtSetUuidSeed
|
|
316
|
+
NtSetValueKey
|
|
317
|
+
NtSetVolumeInformationFile
|
|
318
|
+
NtShutdownSystem
|
|
319
|
+
NtSignalAndWaitForSingleObject
|
|
320
|
+
NtStartProfile
|
|
321
|
+
NtStopProfile
|
|
322
|
+
NtSuspendProcess
|
|
323
|
+
NtSuspendThread
|
|
324
|
+
NtSystemDebugControl
|
|
325
|
+
NtTerminateJobObject
|
|
326
|
+
NtTerminateProcess
|
|
327
|
+
NtTerminateThread
|
|
328
|
+
NtTestAlert
|
|
329
|
+
NtTraceEvent
|
|
330
|
+
NtTranslateFilePath
|
|
331
|
+
NtUnloadDriver
|
|
332
|
+
NtUnloadKey
|
|
333
|
+
NtUnloadKeyEx
|
|
334
|
+
NtUnlockFile
|
|
335
|
+
NtUnlockVirtualMemory
|
|
336
|
+
NtUnmapViewOfSection
|
|
337
|
+
NtVdmControl
|
|
338
|
+
NtWaitForDebugEvent
|
|
339
|
+
NtWaitForKeyedEvent
|
|
340
|
+
NtWaitForMultipleObjects
|
|
341
|
+
NtWaitForSingleObject
|
|
342
|
+
NtWaitHighEventPair
|
|
343
|
+
NtWaitLowEventPair
|
|
344
|
+
NtWriteFile
|
|
345
|
+
NtWriteFileGather
|
|
346
|
+
NtWriteRequestData
|
|
347
|
+
NtWriteVirtualMemory
|
|
348
|
+
NtYieldExecution
|
|
349
|
+
PfxFindPrefix
|
|
350
|
+
PfxInitialize
|
|
351
|
+
PfxInsertPrefix
|
|
352
|
+
PfxRemovePrefix
|
|
353
|
+
RtlAbortRXact
|
|
354
|
+
RtlAbsoluteToSelfRelativeSD
|
|
355
|
+
RtlAcquirePebLock
|
|
356
|
+
RtlAcquireResourceExclusive
|
|
357
|
+
RtlAcquireResourceShared
|
|
358
|
+
RtlActivateActivationContext
|
|
359
|
+
RtlActivateActivationContextEx
|
|
360
|
+
RtlActivateActivationContextUnsafeFast
|
|
361
|
+
RtlAddAccessAllowedAce
|
|
362
|
+
RtlAddAccessAllowedAceEx
|
|
363
|
+
RtlAddAccessAllowedObjectAce
|
|
364
|
+
RtlAddAccessDeniedAce
|
|
365
|
+
RtlAddAccessDeniedAceEx
|
|
366
|
+
RtlAddAccessDeniedObjectAce
|
|
367
|
+
RtlAddAce
|
|
368
|
+
RtlAddActionToRXact
|
|
369
|
+
RtlAddAtomToAtomTable
|
|
370
|
+
RtlAddAttributeActionToRXact
|
|
371
|
+
RtlAddAuditAccessAce
|
|
372
|
+
RtlAddAuditAccessAceEx
|
|
373
|
+
RtlAddAuditAccessObjectAce
|
|
374
|
+
RtlAddCompoundAce
|
|
375
|
+
RtlAddRefActivationContext
|
|
376
|
+
RtlAddRefMemoryStream
|
|
377
|
+
RtlAddVectoredExceptionHandler
|
|
378
|
+
RtlAddressInSectionTable
|
|
379
|
+
RtlAdjustPrivilege
|
|
380
|
+
RtlAllocateAndInitializeSid
|
|
381
|
+
RtlAllocateHandle
|
|
382
|
+
RtlAllocateHeap
|
|
383
|
+
RtlAnsiCharToUnicodeChar
|
|
384
|
+
RtlAnsiStringToUnicodeSize
|
|
385
|
+
RtlAnsiStringToUnicodeString
|
|
386
|
+
RtlAppendAsciizToString
|
|
387
|
+
RtlAppendPathElement
|
|
388
|
+
RtlAppendStringToString
|
|
389
|
+
RtlAppendUnicodeStringToString
|
|
390
|
+
RtlAppendUnicodeToString
|
|
391
|
+
RtlApplicationVerifierStop
|
|
392
|
+
RtlApplyRXact
|
|
393
|
+
RtlApplyRXactNoFlush
|
|
394
|
+
RtlAreAllAccessesGranted
|
|
395
|
+
RtlAreAnyAccessesGranted
|
|
396
|
+
RtlAreBitsClear
|
|
397
|
+
RtlAreBitsSet
|
|
398
|
+
RtlAssert
|
|
399
|
+
RtlCancelTimer
|
|
400
|
+
RtlCaptureContext
|
|
401
|
+
RtlCaptureStackBackTrace
|
|
402
|
+
RtlCharToInteger
|
|
403
|
+
RtlCheckForOrphanedCriticalSections
|
|
404
|
+
RtlCheckRegistryKey
|
|
405
|
+
RtlClearAllBits
|
|
406
|
+
RtlClearBits
|
|
407
|
+
RtlCloneMemoryStream
|
|
408
|
+
RtlCommitMemoryStream
|
|
409
|
+
RtlCompactHeap
|
|
410
|
+
RtlCompareMemory
|
|
411
|
+
RtlCompareMemoryUlong
|
|
412
|
+
RtlCompareString
|
|
413
|
+
RtlCompareUnicodeString
|
|
414
|
+
RtlCompressBuffer
|
|
415
|
+
RtlComputeCrc32
|
|
416
|
+
RtlComputeImportTableHash
|
|
417
|
+
RtlComputePrivatizedDllName_U
|
|
418
|
+
RtlConsoleMultiByteToUnicodeN
|
|
419
|
+
RtlConvertExclusiveToShared
|
|
420
|
+
RtlConvertSharedToExclusive
|
|
421
|
+
RtlConvertSidToUnicodeString
|
|
422
|
+
RtlConvertToAutoInheritSecurityObject
|
|
423
|
+
RtlCopyLuid
|
|
424
|
+
RtlCopyLuidAndAttributesArray
|
|
425
|
+
RtlCopyMemoryStreamTo
|
|
426
|
+
RtlCopyOutOfProcessMemoryStreamTo
|
|
427
|
+
RtlCopySecurityDescriptor
|
|
428
|
+
RtlCopySid
|
|
429
|
+
RtlCopySidAndAttributesArray
|
|
430
|
+
RtlCopyString
|
|
431
|
+
RtlCopyUnicodeString
|
|
432
|
+
RtlCreateAcl
|
|
433
|
+
RtlCreateActivationContext
|
|
434
|
+
RtlCreateAndSetSD
|
|
435
|
+
RtlCreateAtomTable
|
|
436
|
+
RtlCreateBootStatusDataFile
|
|
437
|
+
RtlCreateEnvironment
|
|
438
|
+
RtlCreateHeap
|
|
439
|
+
RtlCreateProcessParameters
|
|
440
|
+
RtlCreateQueryDebugBuffer
|
|
441
|
+
RtlCreateRegistryKey
|
|
442
|
+
RtlCreateSecurityDescriptor
|
|
443
|
+
RtlCreateServiceSid
|
|
444
|
+
RtlCreateSystemVolumeInformationFolder
|
|
445
|
+
RtlCreateTagHeap
|
|
446
|
+
RtlCreateTimer
|
|
447
|
+
RtlCreateTimerQueue
|
|
448
|
+
RtlCreateUnicodeString
|
|
449
|
+
RtlCreateUnicodeStringFromAsciiz
|
|
450
|
+
RtlCreateUserProcess
|
|
451
|
+
RtlCreateUserSecurityObject
|
|
452
|
+
RtlCreateUserThread
|
|
453
|
+
RtlCustomCPToUnicodeN
|
|
454
|
+
RtlCutoverTimeToSystemTime
|
|
455
|
+
RtlDeNormalizeProcessParams
|
|
456
|
+
RtlDeactivateActivationContext
|
|
457
|
+
RtlDeactivateActivationContextUnsafeFast
|
|
458
|
+
RtlDebugPrintTimes
|
|
459
|
+
RtlDecodePointer
|
|
460
|
+
RtlDecodeSystemPointer
|
|
461
|
+
RtlDecompressBuffer
|
|
462
|
+
RtlDecompressFragment
|
|
463
|
+
RtlDefaultNpAcl
|
|
464
|
+
RtlDelete
|
|
465
|
+
RtlDeleteAce
|
|
466
|
+
RtlDeleteAtomFromAtomTable
|
|
467
|
+
RtlDeleteCriticalSection
|
|
468
|
+
RtlDeleteElementGenericTable
|
|
469
|
+
RtlDeleteElementGenericTableAvl
|
|
470
|
+
RtlDeleteNoSplay
|
|
471
|
+
RtlDeleteRegistryValue
|
|
472
|
+
RtlDeleteResource
|
|
473
|
+
RtlDeleteSecurityObject
|
|
474
|
+
RtlDeleteTimer
|
|
475
|
+
RtlDeleteTimerQueue
|
|
476
|
+
RtlDeleteTimerQueueEx
|
|
477
|
+
RtlDeregisterWait
|
|
478
|
+
RtlDeregisterWaitEx
|
|
479
|
+
RtlDestroyAtomTable
|
|
480
|
+
RtlDestroyEnvironment
|
|
481
|
+
RtlDestroyHandleTable
|
|
482
|
+
RtlDestroyHeap
|
|
483
|
+
RtlDestroyProcessParameters
|
|
484
|
+
RtlDestroyQueryDebugBuffer
|
|
485
|
+
RtlDetermineDosPathNameType_U
|
|
486
|
+
RtlDllShutdownInProgress
|
|
487
|
+
RtlDnsHostNameToComputerName
|
|
488
|
+
RtlDoesFileExists_U
|
|
489
|
+
RtlDosApplyFileIsolationRedirection_Ustr
|
|
490
|
+
RtlDosPathNameToNtPathName_U
|
|
491
|
+
RtlDosSearchPath_U
|
|
492
|
+
RtlDosSearchPath_Ustr
|
|
493
|
+
RtlDowncaseUnicodeChar
|
|
494
|
+
RtlDowncaseUnicodeString
|
|
495
|
+
RtlDumpResource
|
|
496
|
+
RtlDuplicateUnicodeString
|
|
497
|
+
RtlEmptyAtomTable
|
|
498
|
+
RtlEnableEarlyCriticalSectionEventCreation
|
|
499
|
+
RtlEncodePointer
|
|
500
|
+
RtlEncodeSystemPointer
|
|
501
|
+
RtlEnterCriticalSection
|
|
502
|
+
RtlEnumProcessHeaps
|
|
503
|
+
RtlEnumerateGenericTable
|
|
504
|
+
RtlEnumerateGenericTableAvl
|
|
505
|
+
RtlEnumerateGenericTableLikeADirectory
|
|
506
|
+
RtlEnumerateGenericTableWithoutSplaying
|
|
507
|
+
RtlEnumerateGenericTableWithoutSplayingAvl
|
|
508
|
+
RtlEqualComputerName
|
|
509
|
+
RtlEqualDomainName
|
|
510
|
+
RtlEqualLuid
|
|
511
|
+
RtlEqualPrefixSid
|
|
512
|
+
RtlEqualSid
|
|
513
|
+
RtlEqualString
|
|
514
|
+
RtlEqualUnicodeString
|
|
515
|
+
RtlEraseUnicodeString
|
|
516
|
+
RtlExitUserThread
|
|
517
|
+
RtlExpandEnvironmentStrings_U
|
|
518
|
+
RtlFillMemory
|
|
519
|
+
RtlFinalReleaseOutOfProcessMemoryStream
|
|
520
|
+
RtlFindActivationContextSectionGuid
|
|
521
|
+
RtlFindActivationContextSectionString
|
|
522
|
+
RtlFindCharInUnicodeString
|
|
523
|
+
RtlFindClearBits
|
|
524
|
+
RtlFindClearBitsAndSet
|
|
525
|
+
RtlFindClearRuns
|
|
526
|
+
RtlFindLastBackwardRunClear
|
|
527
|
+
RtlFindLeastSignificantBit
|
|
528
|
+
RtlFindLongestRunClear
|
|
529
|
+
RtlFindMessage
|
|
530
|
+
RtlFindMostSignificantBit
|
|
531
|
+
RtlFindNextForwardRunClear
|
|
532
|
+
RtlFindSetBits
|
|
533
|
+
RtlFindSetBitsAndClear
|
|
534
|
+
RtlFirstEntrySList
|
|
535
|
+
RtlFirstFreeAce
|
|
536
|
+
RtlFlushSecureMemoryCache
|
|
537
|
+
RtlFormatCurrentUserKeyPath
|
|
538
|
+
RtlFormatMessage
|
|
539
|
+
RtlFreeAnsiString
|
|
540
|
+
RtlFreeHandle
|
|
541
|
+
RtlFreeHeap
|
|
542
|
+
RtlFreeOemString
|
|
543
|
+
RtlFreeSid
|
|
544
|
+
RtlFreeThreadActivationContextStack
|
|
545
|
+
RtlFreeUnicodeString
|
|
546
|
+
RtlGUIDFromString
|
|
547
|
+
RtlGenerate8dot3Name
|
|
548
|
+
RtlGetAce
|
|
549
|
+
RtlGetActiveActivationContext
|
|
550
|
+
RtlGetCallersAddress
|
|
551
|
+
RtlGetCompressionWorkSpaceSize
|
|
552
|
+
RtlGetControlSecurityDescriptor
|
|
553
|
+
RtlGetCurrentDirectory_U
|
|
554
|
+
RtlGetCurrentPeb
|
|
555
|
+
RtlGetDaclSecurityDescriptor
|
|
556
|
+
RtlGetElementGenericTable
|
|
557
|
+
RtlGetElementGenericTableAvl
|
|
558
|
+
RtlGetFrame
|
|
559
|
+
RtlGetFullPathName_U
|
|
560
|
+
RtlGetGroupSecurityDescriptor
|
|
561
|
+
RtlGetLastNtStatus
|
|
562
|
+
RtlGetLastWin32Error
|
|
563
|
+
RtlGetLengthWithoutLastFullDosOrNtPathElement
|
|
564
|
+
RtlGetLengthWithoutTrailingPathSeperators
|
|
565
|
+
RtlGetLongestNtPathLength
|
|
566
|
+
RtlGetNativeSystemInformation
|
|
567
|
+
RtlGetNtGlobalFlags
|
|
568
|
+
RtlGetNtProductType
|
|
569
|
+
RtlGetNtVersionNumbers
|
|
570
|
+
RtlGetOwnerSecurityDescriptor
|
|
571
|
+
RtlGetProcessHeaps
|
|
572
|
+
RtlGetSaclSecurityDescriptor
|
|
573
|
+
RtlGetSecurityDescriptorRMControl
|
|
574
|
+
RtlGetSetBootStatusData
|
|
575
|
+
RtlGetUnloadEventTrace
|
|
576
|
+
RtlGetUserInfoHeap
|
|
577
|
+
RtlGetVersion
|
|
578
|
+
RtlHashUnicodeString
|
|
579
|
+
RtlIdentifierAuthoritySid
|
|
580
|
+
RtlImageDirectoryEntryToData
|
|
581
|
+
RtlImageNtHeader
|
|
582
|
+
RtlImageRvaToSection
|
|
583
|
+
RtlImageRvaToVa
|
|
584
|
+
RtlImpersonateSelf
|
|
585
|
+
RtlInitAnsiString
|
|
586
|
+
RtlInitCodePageTable
|
|
587
|
+
RtlInitMemoryStream
|
|
588
|
+
RtlInitNlsTables
|
|
589
|
+
RtlInitOutOfProcessMemoryStream
|
|
590
|
+
RtlInitString
|
|
591
|
+
RtlInitUnicodeString
|
|
592
|
+
RtlInitUnicodeStringEx
|
|
593
|
+
RtlInitializeAtomPackage
|
|
594
|
+
RtlInitializeBitMap
|
|
595
|
+
RtlInitializeContext
|
|
596
|
+
RtlInitializeCriticalSection
|
|
597
|
+
RtlInitializeCriticalSectionAndSpinCount
|
|
598
|
+
RtlInitializeGenericTable
|
|
599
|
+
RtlInitializeGenericTableAvl
|
|
600
|
+
RtlInitializeHandleTable
|
|
601
|
+
RtlInitializeRXact
|
|
602
|
+
RtlInitializeResource
|
|
603
|
+
RtlInitializeSListHead
|
|
604
|
+
RtlInitializeSid
|
|
605
|
+
RtlInsertElementGenericTable
|
|
606
|
+
RtlInsertElementGenericTableAvl
|
|
607
|
+
RtlInt64ToUnicodeString
|
|
608
|
+
RtlIntegerToChar
|
|
609
|
+
RtlIntegerToUnicodeString
|
|
610
|
+
RtlInterlockedFlushSList
|
|
611
|
+
RtlInterlockedPopEntrySList
|
|
612
|
+
RtlInterlockedPushEntrySList
|
|
613
|
+
RtlInterlockedPushListSList
|
|
614
|
+
RtlIpv4AddressToStringA
|
|
615
|
+
RtlIpv4AddressToStringExA
|
|
616
|
+
RtlIpv4AddressToStringExW
|
|
617
|
+
RtlIpv4AddressToStringW
|
|
618
|
+
RtlIpv4StringToAddressA
|
|
619
|
+
RtlIpv4StringToAddressExA
|
|
620
|
+
RtlIpv4StringToAddressExW
|
|
621
|
+
RtlIpv4StringToAddressW
|
|
622
|
+
RtlIpv6AddressToStringA
|
|
623
|
+
RtlIpv6AddressToStringExA
|
|
624
|
+
RtlIpv6AddressToStringExW
|
|
625
|
+
RtlIpv6AddressToStringW
|
|
626
|
+
RtlIpv6StringToAddressA
|
|
627
|
+
RtlIpv6StringToAddressExA
|
|
628
|
+
RtlIpv6StringToAddressExW
|
|
629
|
+
RtlIpv6StringToAddressW
|
|
630
|
+
RtlIsActivationContextActive
|
|
631
|
+
RtlIsDosDeviceName_U
|
|
632
|
+
RtlIsGenericTableEmpty
|
|
633
|
+
RtlIsGenericTableEmptyAvl
|
|
634
|
+
RtlIsNameLegalDOS8Dot3
|
|
635
|
+
RtlIsTextUnicode
|
|
636
|
+
RtlIsThreadWithinLoaderCallout
|
|
637
|
+
RtlIsValidHandle
|
|
638
|
+
RtlIsValidIndexHandle
|
|
639
|
+
RtlLargeIntegerToChar
|
|
640
|
+
RtlLeaveCriticalSection
|
|
641
|
+
RtlLengthRequiredSid
|
|
642
|
+
RtlLengthSecurityDescriptor
|
|
643
|
+
RtlLengthSid
|
|
644
|
+
RtlLocalTimeToSystemTime
|
|
645
|
+
RtlLockBootStatusData
|
|
646
|
+
RtlLockHeap
|
|
647
|
+
RtlLockMemoryStreamRegion
|
|
648
|
+
RtlLogStackBackTrace
|
|
649
|
+
RtlLookupAtomInAtomTable
|
|
650
|
+
RtlLookupElementGenericTable
|
|
651
|
+
RtlLookupElementGenericTableAvl
|
|
652
|
+
RtlMakeSelfRelativeSD
|
|
653
|
+
RtlMapGenericMask
|
|
654
|
+
RtlMapSecurityErrorToNtStatus
|
|
655
|
+
RtlMoveMemory
|
|
656
|
+
RtlMultiAppendUnicodeStringBuffer
|
|
657
|
+
RtlMultiByteToUnicodeN
|
|
658
|
+
RtlMultiByteToUnicodeSize
|
|
659
|
+
RtlNewInstanceSecurityObject
|
|
660
|
+
RtlNewSecurityGrantedAccess
|
|
661
|
+
RtlNewSecurityObject
|
|
662
|
+
RtlNewSecurityObjectEx
|
|
663
|
+
RtlNewSecurityObjectWithMultipleInheritance
|
|
664
|
+
RtlNormalizeProcessParams
|
|
665
|
+
RtlNtPathNameToDosPathName
|
|
666
|
+
RtlNtStatusToDosError
|
|
667
|
+
RtlNtStatusToDosErrorNoTeb
|
|
668
|
+
RtlNumberGenericTableElements
|
|
669
|
+
RtlNumberGenericTableElementsAvl
|
|
670
|
+
RtlNumberOfClearBits
|
|
671
|
+
RtlNumberOfSetBits
|
|
672
|
+
RtlOemStringToUnicodeSize
|
|
673
|
+
RtlOemStringToUnicodeString
|
|
674
|
+
RtlOemToUnicodeN
|
|
675
|
+
RtlOpenCurrentUser
|
|
676
|
+
RtlPcToFileHeader
|
|
677
|
+
RtlPinAtomInAtomTable
|
|
678
|
+
RtlPopFrame
|
|
679
|
+
RtlPrefixString
|
|
680
|
+
RtlPrefixUnicodeString
|
|
681
|
+
RtlProtectHeap
|
|
682
|
+
RtlPushFrame
|
|
683
|
+
RtlQueryAtomInAtomTable
|
|
684
|
+
RtlQueryDepthSList
|
|
685
|
+
RtlQueryEnvironmentVariable_U
|
|
686
|
+
RtlQueryHeapInformation
|
|
687
|
+
RtlQueryInformationAcl
|
|
688
|
+
RtlQueryInformationActivationContext
|
|
689
|
+
RtlQueryInformationActiveActivationContext
|
|
690
|
+
RtlQueryInterfaceMemoryStream
|
|
691
|
+
RtlQueryProcessBackTraceInformation
|
|
692
|
+
RtlQueryProcessDebugInformation
|
|
693
|
+
RtlQueryProcessHeapInformation
|
|
694
|
+
RtlQueryProcessLockInformation
|
|
695
|
+
RtlQueryRegistryValues
|
|
696
|
+
RtlQuerySecurityObject
|
|
697
|
+
RtlQueryTagHeap
|
|
698
|
+
RtlQueryTimeZoneInformation
|
|
699
|
+
RtlQueueApcWow64Thread
|
|
700
|
+
RtlQueueWorkItem
|
|
701
|
+
RtlRaiseException
|
|
702
|
+
RtlRaiseStatus
|
|
703
|
+
RtlRandom
|
|
704
|
+
RtlRandomEx
|
|
705
|
+
RtlReAllocateHeap
|
|
706
|
+
RtlReadMemoryStream
|
|
707
|
+
RtlReadOutOfProcessMemoryStream
|
|
708
|
+
RtlRealPredecessor
|
|
709
|
+
RtlRealSuccessor
|
|
710
|
+
RtlRegisterSecureMemoryCacheCallback
|
|
711
|
+
RtlRegisterWait
|
|
712
|
+
RtlReleaseActivationContext
|
|
713
|
+
RtlReleaseMemoryStream
|
|
714
|
+
RtlReleasePebLock
|
|
715
|
+
RtlReleaseResource
|
|
716
|
+
RtlRemoteCall
|
|
717
|
+
RtlRemoveVectoredExceptionHandler
|
|
718
|
+
RtlResetRtlTranslations
|
|
719
|
+
RtlRestoreLastWin32Error
|
|
720
|
+
RtlRevertMemoryStream
|
|
721
|
+
RtlRunDecodeUnicodeString
|
|
722
|
+
RtlRunEncodeUnicodeString
|
|
723
|
+
RtlSecondsSince1970ToTime
|
|
724
|
+
RtlSecondsSince1980ToTime
|
|
725
|
+
RtlSeekMemoryStream
|
|
726
|
+
RtlSelfRelativeToAbsoluteSD
|
|
727
|
+
RtlSelfRelativeToAbsoluteSD2
|
|
728
|
+
RtlSetAllBits
|
|
729
|
+
RtlSetAttributesSecurityDescriptor
|
|
730
|
+
RtlSetBits
|
|
731
|
+
RtlSetControlSecurityDescriptor
|
|
732
|
+
RtlSetCriticalSectionSpinCount
|
|
733
|
+
RtlSetCurrentDirectory_U
|
|
734
|
+
RtlSetCurrentEnvironment
|
|
735
|
+
RtlSetDaclSecurityDescriptor
|
|
736
|
+
RtlSetEnvironmentVariable
|
|
737
|
+
RtlSetGroupSecurityDescriptor
|
|
738
|
+
RtlSetHeapInformation
|
|
739
|
+
RtlSetInformationAcl
|
|
740
|
+
RtlSetIoCompletionCallback
|
|
741
|
+
RtlSetLastWin32Error
|
|
742
|
+
RtlSetLastWin32ErrorAndNtStatusFromNtStatus
|
|
743
|
+
RtlSetMemoryStreamSize
|
|
744
|
+
RtlSetOwnerSecurityDescriptor
|
|
745
|
+
RtlSetProcessIsCritical
|
|
746
|
+
RtlSetSaclSecurityDescriptor
|
|
747
|
+
RtlSetSecurityDescriptorRMControl
|
|
748
|
+
RtlSetSecurityObject
|
|
749
|
+
RtlSetSecurityObjectEx
|
|
750
|
+
RtlSetThreadIsCritical
|
|
751
|
+
RtlSetThreadPoolStartFunc
|
|
752
|
+
RtlSetTimeZoneInformation
|
|
753
|
+
RtlSetTimer
|
|
754
|
+
RtlSetUserFlagsHeap
|
|
755
|
+
RtlSetUserValueHeap
|
|
756
|
+
RtlSizeHeap
|
|
757
|
+
RtlSplay
|
|
758
|
+
RtlStartRXact
|
|
759
|
+
RtlStatMemoryStream
|
|
760
|
+
RtlStringFromGUID
|
|
761
|
+
RtlSubAuthorityCountSid
|
|
762
|
+
RtlSubAuthoritySid
|
|
763
|
+
RtlSubtreePredecessor
|
|
764
|
+
RtlSubtreeSuccessor
|
|
765
|
+
RtlSystemTimeToLocalTime
|
|
766
|
+
RtlTimeFieldsToTime
|
|
767
|
+
RtlTimeToElapsedTimeFields
|
|
768
|
+
RtlTimeToSecondsSince1970
|
|
769
|
+
RtlTimeToSecondsSince1980
|
|
770
|
+
RtlTimeToTimeFields
|
|
771
|
+
RtlTraceDatabaseAdd
|
|
772
|
+
RtlTraceDatabaseCreate
|
|
773
|
+
RtlTraceDatabaseDestroy
|
|
774
|
+
RtlTraceDatabaseEnumerate
|
|
775
|
+
RtlTraceDatabaseFind
|
|
776
|
+
RtlTraceDatabaseLock
|
|
777
|
+
RtlTraceDatabaseUnlock
|
|
778
|
+
RtlTraceDatabaseValidate
|
|
779
|
+
RtlTryEnterCriticalSection
|
|
780
|
+
RtlUnhandledExceptionFilter
|
|
781
|
+
RtlUnhandledExceptionFilter2
|
|
782
|
+
RtlUnicodeStringToAnsiSize
|
|
783
|
+
RtlUnicodeStringToAnsiString
|
|
784
|
+
RtlUnicodeStringToCountedOemString
|
|
785
|
+
RtlUnicodeStringToInteger
|
|
786
|
+
RtlUnicodeStringToOemSize
|
|
787
|
+
RtlUnicodeStringToOemString
|
|
788
|
+
RtlUnicodeToCustomCPN
|
|
789
|
+
RtlUnicodeToMultiByteN
|
|
790
|
+
RtlUnicodeToMultiByteSize
|
|
791
|
+
RtlUnicodeToOemN
|
|
792
|
+
RtlUniform
|
|
793
|
+
RtlUnlockBootStatusData
|
|
794
|
+
RtlUnlockHeap
|
|
795
|
+
RtlUnlockMemoryStreamRegion
|
|
796
|
+
RtlUnwind
|
|
797
|
+
RtlUpcaseUnicodeChar
|
|
798
|
+
RtlUpcaseUnicodeString
|
|
799
|
+
RtlUpcaseUnicodeStringToAnsiString
|
|
800
|
+
RtlUpcaseUnicodeStringToCountedOemString
|
|
801
|
+
RtlUpcaseUnicodeStringToOemString
|
|
802
|
+
RtlUpcaseUnicodeToCustomCPN
|
|
803
|
+
RtlUpcaseUnicodeToMultiByteN
|
|
804
|
+
RtlUpcaseUnicodeToOemN
|
|
805
|
+
RtlUpdateTimer
|
|
806
|
+
RtlUpperChar
|
|
807
|
+
RtlUpperString
|
|
808
|
+
RtlValidAcl
|
|
809
|
+
RtlValidRelativeSecurityDescriptor
|
|
810
|
+
RtlValidSecurityDescriptor
|
|
811
|
+
RtlValidSid
|
|
812
|
+
RtlValidateHeap
|
|
813
|
+
RtlValidateProcessHeaps
|
|
814
|
+
RtlValidateUnicodeString
|
|
815
|
+
RtlVerifyVersionInfo
|
|
816
|
+
RtlWalkFrameChain
|
|
817
|
+
RtlWalkHeap
|
|
818
|
+
RtlWriteMemoryStream
|
|
819
|
+
RtlWriteRegistryValue
|
|
820
|
+
RtlZeroHeap
|
|
821
|
+
RtlZeroMemory
|
|
822
|
+
RtlZombifyActivationContext
|
|
823
|
+
RtlpApplyLengthFunction
|
|
824
|
+
RtlpEnsureBufferSize
|
|
825
|
+
RtlpNotOwnerCriticalSection
|
|
826
|
+
RtlpNtCreateKey
|
|
827
|
+
RtlpNtEnumerateSubKey
|
|
828
|
+
RtlpNtMakeTemporaryKey
|
|
829
|
+
RtlpNtOpenKey
|
|
830
|
+
RtlpNtQueryValueKey
|
|
831
|
+
RtlpNtSetValueKey
|
|
832
|
+
RtlpUnWaitCriticalSection
|
|
833
|
+
RtlpWaitForCriticalSection
|
|
834
|
+
RtlxAnsiStringToUnicodeSize
|
|
835
|
+
RtlxOemStringToUnicodeSize
|
|
836
|
+
RtlxUnicodeStringToAnsiSize
|
|
837
|
+
RtlxUnicodeStringToOemSize
|
|
838
|
+
VerSetConditionMask
|
|
839
|
+
ZwAcceptConnectPort
|
|
840
|
+
ZwAccessCheck
|
|
841
|
+
ZwAccessCheckAndAuditAlarm
|
|
842
|
+
ZwAccessCheckByType
|
|
843
|
+
ZwAccessCheckByTypeAndAuditAlarm
|
|
844
|
+
ZwAccessCheckByTypeResultList
|
|
845
|
+
ZwAccessCheckByTypeResultListAndAuditAlarm
|
|
846
|
+
ZwAccessCheckByTypeResultListAndAuditAlarmByHandle
|
|
847
|
+
ZwAddAtom
|
|
848
|
+
ZwAddBootEntry
|
|
849
|
+
ZwAdjustGroupsToken
|
|
850
|
+
ZwAdjustPrivilegesToken
|
|
851
|
+
ZwAlertResumeThread
|
|
852
|
+
ZwAlertThread
|
|
853
|
+
ZwAllocateLocallyUniqueId
|
|
854
|
+
ZwAllocateUserPhysicalPages
|
|
855
|
+
ZwAllocateUuids
|
|
856
|
+
ZwAllocateVirtualMemory
|
|
857
|
+
ZwAreMappedFilesTheSame
|
|
858
|
+
ZwAssignProcessToJobObject
|
|
859
|
+
ZwCallbackReturn
|
|
860
|
+
ZwCancelIoFile
|
|
861
|
+
ZwCancelTimer
|
|
862
|
+
ZwClearEvent
|
|
863
|
+
ZwClose
|
|
864
|
+
ZwCloseObjectAuditAlarm
|
|
865
|
+
ZwCompactKeys
|
|
866
|
+
ZwCompareTokens
|
|
867
|
+
ZwCompleteConnectPort
|
|
868
|
+
ZwCompressKey
|
|
869
|
+
ZwConnectPort
|
|
870
|
+
ZwContinue
|
|
871
|
+
ZwCreateDebugObject
|
|
872
|
+
ZwCreateDirectoryObject
|
|
873
|
+
ZwCreateEvent
|
|
874
|
+
ZwCreateEventPair
|
|
875
|
+
ZwCreateFile
|
|
876
|
+
ZwCreateIoCompletion
|
|
877
|
+
ZwCreateJobObject
|
|
878
|
+
ZwCreateJobSet
|
|
879
|
+
ZwCreateKey
|
|
880
|
+
ZwCreateKeyedEvent
|
|
881
|
+
ZwCreateMailslotFile
|
|
882
|
+
ZwCreateMutant
|
|
883
|
+
ZwCreateNamedPipeFile
|
|
884
|
+
ZwCreatePagingFile
|
|
885
|
+
ZwCreatePort
|
|
886
|
+
ZwCreateProcess
|
|
887
|
+
ZwCreateProcessEx
|
|
888
|
+
ZwCreateProfile
|
|
889
|
+
ZwCreateSection
|
|
890
|
+
ZwCreateSemaphore
|
|
891
|
+
ZwCreateSymbolicLinkObject
|
|
892
|
+
ZwCreateThread
|
|
893
|
+
ZwCreateTimer
|
|
894
|
+
ZwCreateToken
|
|
895
|
+
ZwCreateWaitablePort
|
|
896
|
+
ZwDebugActiveProcess
|
|
897
|
+
ZwDebugContinue
|
|
898
|
+
ZwDelayExecution
|
|
899
|
+
ZwDeleteAtom
|
|
900
|
+
ZwDeleteBootEntry
|
|
901
|
+
ZwDeleteFile
|
|
902
|
+
ZwDeleteKey
|
|
903
|
+
ZwDeleteObjectAuditAlarm
|
|
904
|
+
ZwDeleteValueKey
|
|
905
|
+
ZwDeviceIoControlFile
|
|
906
|
+
ZwDisplayString
|
|
907
|
+
ZwDuplicateObject
|
|
908
|
+
ZwDuplicateToken
|
|
909
|
+
ZwEnumerateBootEntries
|
|
910
|
+
ZwEnumerateKey
|
|
911
|
+
ZwEnumerateSystemEnvironmentValuesEx
|
|
912
|
+
ZwEnumerateValueKey
|
|
913
|
+
ZwExtendSection
|
|
914
|
+
ZwFilterToken
|
|
915
|
+
ZwFindAtom
|
|
916
|
+
ZwFlushBuffersFile
|
|
917
|
+
ZwFlushInstructionCache
|
|
918
|
+
ZwFlushKey
|
|
919
|
+
ZwFlushVirtualMemory
|
|
920
|
+
ZwFlushWriteBuffer
|
|
921
|
+
ZwFreeUserPhysicalPages
|
|
922
|
+
ZwFreeVirtualMemory
|
|
923
|
+
ZwFsControlFile
|
|
924
|
+
ZwGetContextThread
|
|
925
|
+
ZwGetDevicePowerState
|
|
926
|
+
ZwGetWriteWatch
|
|
927
|
+
ZwImpersonateAnonymousToken
|
|
928
|
+
ZwImpersonateClientOfPort
|
|
929
|
+
ZwImpersonateThread
|
|
930
|
+
ZwInitializeRegistry
|
|
931
|
+
ZwInitiatePowerAction
|
|
932
|
+
ZwIsProcessInJob
|
|
933
|
+
ZwIsSystemResumeAutomatic
|
|
934
|
+
ZwListenPort
|
|
935
|
+
ZwLoadDriver
|
|
936
|
+
ZwLoadKey
|
|
937
|
+
ZwLoadKey2
|
|
938
|
+
ZwLockFile
|
|
939
|
+
ZwLockProductActivationKeys
|
|
940
|
+
ZwLockRegistryKey
|
|
941
|
+
ZwLockVirtualMemory
|
|
942
|
+
ZwMakePermanentObject
|
|
943
|
+
ZwMakeTemporaryObject
|
|
944
|
+
ZwMapUserPhysicalPages
|
|
945
|
+
ZwMapUserPhysicalPagesScatter
|
|
946
|
+
ZwMapViewOfSection
|
|
947
|
+
ZwModifyBootEntry
|
|
948
|
+
ZwNotifyChangeDirectoryFile
|
|
949
|
+
ZwNotifyChangeKey
|
|
950
|
+
ZwNotifyChangeMultipleKeys
|
|
951
|
+
ZwOpenDirectoryObject
|
|
952
|
+
ZwOpenEvent
|
|
953
|
+
ZwOpenEventPair
|
|
954
|
+
ZwOpenFile
|
|
955
|
+
ZwOpenIoCompletion
|
|
956
|
+
ZwOpenJobObject
|
|
957
|
+
ZwOpenKey
|
|
958
|
+
ZwOpenKeyedEvent
|
|
959
|
+
ZwOpenMutant
|
|
960
|
+
ZwOpenObjectAuditAlarm
|
|
961
|
+
ZwOpenProcess
|
|
962
|
+
ZwOpenProcessToken
|
|
963
|
+
ZwOpenProcessTokenEx
|
|
964
|
+
ZwOpenSection
|
|
965
|
+
ZwOpenSemaphore
|
|
966
|
+
ZwOpenSymbolicLinkObject
|
|
967
|
+
ZwOpenThread
|
|
968
|
+
ZwOpenThreadToken
|
|
969
|
+
ZwOpenThreadTokenEx
|
|
970
|
+
ZwOpenTimer
|
|
971
|
+
ZwPlugPlayControl
|
|
972
|
+
ZwPowerInformation
|
|
973
|
+
ZwPrivilegeCheck
|
|
974
|
+
ZwPrivilegeObjectAuditAlarm
|
|
975
|
+
ZwPrivilegedServiceAuditAlarm
|
|
976
|
+
ZwProtectVirtualMemory
|
|
977
|
+
ZwPulseEvent
|
|
978
|
+
ZwQueryAttributesFile
|
|
979
|
+
ZwQueryBootEntryOrder
|
|
980
|
+
ZwQueryBootOptions
|
|
981
|
+
ZwQueryDebugFilterState
|
|
982
|
+
ZwQueryDefaultLocale
|
|
983
|
+
ZwQueryDefaultUILanguage
|
|
984
|
+
ZwQueryDirectoryFile
|
|
985
|
+
ZwQueryDirectoryObject
|
|
986
|
+
ZwQueryEaFile
|
|
987
|
+
ZwQueryEvent
|
|
988
|
+
ZwQueryFullAttributesFile
|
|
989
|
+
ZwQueryInformationAtom
|
|
990
|
+
ZwQueryInformationFile
|
|
991
|
+
ZwQueryInformationJobObject
|
|
992
|
+
ZwQueryInformationPort
|
|
993
|
+
ZwQueryInformationProcess
|
|
994
|
+
ZwQueryInformationThread
|
|
995
|
+
ZwQueryInformationToken
|
|
996
|
+
ZwQueryInstallUILanguage
|
|
997
|
+
ZwQueryIntervalProfile
|
|
998
|
+
ZwQueryIoCompletion
|
|
999
|
+
ZwQueryKey
|
|
1000
|
+
ZwQueryMultipleValueKey
|
|
1001
|
+
ZwQueryMutant
|
|
1002
|
+
ZwQueryObject
|
|
1003
|
+
ZwQueryOpenSubKeys
|
|
1004
|
+
ZwQueryPerformanceCounter
|
|
1005
|
+
ZwQueryPortInformationProcess
|
|
1006
|
+
ZwQueryQuotaInformationFile
|
|
1007
|
+
ZwQuerySection
|
|
1008
|
+
ZwQuerySecurityObject
|
|
1009
|
+
ZwQuerySemaphore
|
|
1010
|
+
ZwQuerySymbolicLinkObject
|
|
1011
|
+
ZwQuerySystemEnvironmentValue
|
|
1012
|
+
ZwQuerySystemEnvironmentValueEx
|
|
1013
|
+
ZwQuerySystemInformation
|
|
1014
|
+
ZwQuerySystemTime
|
|
1015
|
+
ZwQueryTimer
|
|
1016
|
+
ZwQueryTimerResolution
|
|
1017
|
+
ZwQueryValueKey
|
|
1018
|
+
ZwQueryVirtualMemory
|
|
1019
|
+
ZwQueryVolumeInformationFile
|
|
1020
|
+
ZwQueueApcThread
|
|
1021
|
+
ZwRaiseException
|
|
1022
|
+
ZwRaiseHardError
|
|
1023
|
+
ZwReadFile
|
|
1024
|
+
ZwReadFileScatter
|
|
1025
|
+
ZwReadRequestData
|
|
1026
|
+
ZwReadVirtualMemory
|
|
1027
|
+
ZwRegisterThreadTerminatePort
|
|
1028
|
+
ZwReleaseKeyedEvent
|
|
1029
|
+
ZwReleaseMutant
|
|
1030
|
+
ZwReleaseSemaphore
|
|
1031
|
+
ZwRemoveIoCompletion
|
|
1032
|
+
ZwRemoveProcessDebug
|
|
1033
|
+
ZwRenameKey
|
|
1034
|
+
ZwReplaceKey
|
|
1035
|
+
ZwReplyPort
|
|
1036
|
+
ZwReplyWaitReceivePort
|
|
1037
|
+
ZwReplyWaitReceivePortEx
|
|
1038
|
+
ZwReplyWaitReplyPort
|
|
1039
|
+
ZwRequestPort
|
|
1040
|
+
ZwRequestWaitReplyPort
|
|
1041
|
+
ZwResetEvent
|
|
1042
|
+
ZwResetWriteWatch
|
|
1043
|
+
ZwRestoreKey
|
|
1044
|
+
ZwResumeProcess
|
|
1045
|
+
ZwResumeThread
|
|
1046
|
+
ZwSaveKey
|
|
1047
|
+
ZwSaveKeyEx
|
|
1048
|
+
ZwSaveMergedKeys
|
|
1049
|
+
ZwSecureConnectPort
|
|
1050
|
+
ZwSetBootEntryOrder
|
|
1051
|
+
ZwSetBootOptions
|
|
1052
|
+
ZwSetContextThread
|
|
1053
|
+
ZwSetDebugFilterState
|
|
1054
|
+
ZwSetDefaultHardErrorPort
|
|
1055
|
+
ZwSetDefaultLocale
|
|
1056
|
+
ZwSetDefaultUILanguage
|
|
1057
|
+
ZwSetEaFile
|
|
1058
|
+
ZwSetEvent
|
|
1059
|
+
ZwSetEventBoostPriority
|
|
1060
|
+
ZwSetHighEventPair
|
|
1061
|
+
ZwSetHighWaitLowEventPair
|
|
1062
|
+
ZwSetInformationDebugObject
|
|
1063
|
+
ZwSetInformationFile
|
|
1064
|
+
ZwSetInformationJobObject
|
|
1065
|
+
ZwSetInformationKey
|
|
1066
|
+
ZwSetInformationObject
|
|
1067
|
+
ZwSetInformationProcess
|
|
1068
|
+
ZwSetInformationThread
|
|
1069
|
+
ZwSetInformationToken
|
|
1070
|
+
ZwSetIntervalProfile
|
|
1071
|
+
ZwSetIoCompletion
|
|
1072
|
+
ZwSetLdtEntries
|
|
1073
|
+
ZwSetLowEventPair
|
|
1074
|
+
ZwSetLowWaitHighEventPair
|
|
1075
|
+
ZwSetQuotaInformationFile
|
|
1076
|
+
ZwSetSecurityObject
|
|
1077
|
+
ZwSetSystemEnvironmentValue
|
|
1078
|
+
ZwSetSystemEnvironmentValueEx
|
|
1079
|
+
ZwSetSystemInformation
|
|
1080
|
+
ZwSetSystemPowerState
|
|
1081
|
+
ZwSetSystemTime
|
|
1082
|
+
ZwSetThreadExecutionState
|
|
1083
|
+
ZwSetTimer
|
|
1084
|
+
ZwSetTimerResolution
|
|
1085
|
+
ZwSetUuidSeed
|
|
1086
|
+
ZwSetValueKey
|
|
1087
|
+
ZwSetVolumeInformationFile
|
|
1088
|
+
ZwShutdownSystem
|
|
1089
|
+
ZwSignalAndWaitForSingleObject
|
|
1090
|
+
ZwStartProfile
|
|
1091
|
+
ZwStopProfile
|
|
1092
|
+
ZwSuspendProcess
|
|
1093
|
+
ZwSuspendThread
|
|
1094
|
+
ZwSystemDebugControl
|
|
1095
|
+
ZwTerminateJobObject
|
|
1096
|
+
ZwTerminateProcess
|
|
1097
|
+
ZwTerminateThread
|
|
1098
|
+
ZwTestAlert
|
|
1099
|
+
ZwTraceEvent
|
|
1100
|
+
ZwTranslateFilePath
|
|
1101
|
+
ZwUnloadDriver
|
|
1102
|
+
ZwUnloadKey
|
|
1103
|
+
ZwUnloadKeyEx
|
|
1104
|
+
ZwUnlockFile
|
|
1105
|
+
ZwUnlockVirtualMemory
|
|
1106
|
+
ZwUnmapViewOfSection
|
|
1107
|
+
ZwVdmControl
|
|
1108
|
+
ZwWaitForDebugEvent
|
|
1109
|
+
ZwWaitForKeyedEvent
|
|
1110
|
+
ZwWaitForMultipleObjects
|
|
1111
|
+
ZwWaitForSingleObject
|
|
1112
|
+
ZwWaitHighEventPair
|
|
1113
|
+
ZwWaitLowEventPair
|
|
1114
|
+
ZwWriteFile
|
|
1115
|
+
ZwWriteFileGather
|
|
1116
|
+
ZwWriteRequestData
|
|
1117
|
+
ZwWriteVirtualMemory
|
|
1118
|
+
ZwYieldExecution
|
|
1119
|
+
__isascii
|
|
1120
|
+
__iscsym
|
|
1121
|
+
__iscsymf
|
|
1122
|
+
__toascii
|
|
1123
|
+
_alldiv
|
|
1124
|
+
_alldvrm
|
|
1125
|
+
_allmul
|
|
1126
|
+
_allrem
|
|
1127
|
+
_allshl
|
|
1128
|
+
_allshr
|
|
1129
|
+
_atoi64
|
|
1130
|
+
_aulldiv
|
|
1131
|
+
_aulldvrm
|
|
1132
|
+
_aullrem
|
|
1133
|
+
_aullshr
|
|
1134
|
+
_fltused
|
|
1135
|
+
_i64toa
|
|
1136
|
+
_i64tow
|
|
1137
|
+
_itoa
|
|
1138
|
+
_itow
|
|
1139
|
+
_lfind
|
|
1140
|
+
_ltoa
|
|
1141
|
+
_ltow
|
|
1142
|
+
_memccpy
|
|
1143
|
+
_memicmp
|
|
1144
|
+
_snprintf
|
|
1145
|
+
_snwprintf
|
|
1146
|
+
_splitpath
|
|
1147
|
+
_strcmpi
|
|
1148
|
+
_stricmp
|
|
1149
|
+
_strlwr
|
|
1150
|
+
_strnicmp
|
|
1151
|
+
_strupr
|
|
1152
|
+
_ui64toa
|
|
1153
|
+
_ui64tow
|
|
1154
|
+
_ultoa
|
|
1155
|
+
_ultow
|
|
1156
|
+
_vsnprintf
|
|
1157
|
+
_vsnwprintf
|
|
1158
|
+
_wcsicmp
|
|
1159
|
+
_wcslwr
|
|
1160
|
+
_wcsnicmp
|
|
1161
|
+
_wcsupr
|
|
1162
|
+
_wtoi
|
|
1163
|
+
_wtoi64
|
|
1164
|
+
_wtol
|
|
1165
|
+
abs
|
|
1166
|
+
atan
|
|
1167
|
+
atoi
|
|
1168
|
+
atol
|
|
1169
|
+
bsearch
|
|
1170
|
+
ceil
|
|
1171
|
+
cos
|
|
1172
|
+
fabs
|
|
1173
|
+
floor
|
|
1174
|
+
isalnum
|
|
1175
|
+
isalpha
|
|
1176
|
+
iscntrl
|
|
1177
|
+
isdigit
|
|
1178
|
+
isgraph
|
|
1179
|
+
islower
|
|
1180
|
+
isprint
|
|
1181
|
+
ispunct
|
|
1182
|
+
isspace
|
|
1183
|
+
isupper
|
|
1184
|
+
iswalpha
|
|
1185
|
+
iswctype
|
|
1186
|
+
iswdigit
|
|
1187
|
+
iswlower
|
|
1188
|
+
iswspace
|
|
1189
|
+
iswxdigit
|
|
1190
|
+
isxdigit
|
|
1191
|
+
labs
|
|
1192
|
+
log
|
|
1193
|
+
mbstowcs
|
|
1194
|
+
memchr
|
|
1195
|
+
memcmp
|
|
1196
|
+
memcpy
|
|
1197
|
+
memmove
|
|
1198
|
+
memset
|
|
1199
|
+
pow
|
|
1200
|
+
qsort
|
|
1201
|
+
sin
|
|
1202
|
+
sprintf
|
|
1203
|
+
sqrt
|
|
1204
|
+
sscanf
|
|
1205
|
+
strcat
|
|
1206
|
+
strchr
|
|
1207
|
+
strcmp
|
|
1208
|
+
strcpy
|
|
1209
|
+
strcspn
|
|
1210
|
+
strlen
|
|
1211
|
+
strncat
|
|
1212
|
+
strncmp
|
|
1213
|
+
strncpy
|
|
1214
|
+
strpbrk
|
|
1215
|
+
strrchr
|
|
1216
|
+
strspn
|
|
1217
|
+
strstr
|
|
1218
|
+
strtol
|
|
1219
|
+
strtoul
|
|
1220
|
+
swprintf
|
|
1221
|
+
tan
|
|
1222
|
+
tolower
|
|
1223
|
+
toupper
|
|
1224
|
+
towlower
|
|
1225
|
+
towupper
|
|
1226
|
+
vDbgPrintEx
|
|
1227
|
+
vDbgPrintExWithPrefix
|
|
1228
|
+
vsprintf
|
|
1229
|
+
wcscat
|
|
1230
|
+
wcschr
|
|
1231
|
+
wcscmp
|
|
1232
|
+
wcscpy
|
|
1233
|
+
wcscspn
|
|
1234
|
+
wcslen
|
|
1235
|
+
wcsncat
|
|
1236
|
+
wcsncmp
|
|
1237
|
+
wcsncpy
|
|
1238
|
+
wcspbrk
|
|
1239
|
+
wcsrchr
|
|
1240
|
+
wcsspn
|
|
1241
|
+
wcsstr
|
|
1242
|
+
wcstol
|
|
1243
|
+
wcstombs
|
|
1244
|
+
wcstoul
|
|
1245
|
+
__C_specific_handler
|
|
1246
|
+
_except_handler4_common
|