-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsym.txt
9446 lines (9446 loc) · 308 KB
/
sym.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0x8056c7d2 IopFreeDCB
0x804ffbb6 KiQuantumEnd
0x8063bbac PiControlHaltDevice
0x80661c9c MiAllocateSpecialPool
0x80562284 FsRtlDissectName
0x8054ad50 KiContextSwapLock
0x80533712 ExAllocatePoolWithQuota
0x80552268 KiAmdK6Mtrr
0x80563a4e FsRtlIsHpfsDbcsLegal
0x80559914 PopFullWake
0x805a8b62 MmExtendSection
0x805e01c6 RtlFreeHotPatchData
0x80522b62 ObfDereferenceObject
0x806a1426 ExInitSystemPhase2
0x804fe068 ZwCreateEventPair
0x8053a8d0 IoFreeMapRegisters
0x8050e1b6 MmDeleteKernelStack
0x805c2a4a PspSetPrimaryToken
0x80542c06 MiAllocatePoolPages
0x804ee598 IoGetAttachedDeviceReference
0x8062ec46 CmpInitializeHive
0x80558608 MmUnusedSubsectionCount
0x804f6d8c KeQuerySystemTime
0x8055b040 ExpDebuggerWorkItem
0x805517a4 IopUniqueDeviceObjectNumber
0x805f2988 VdmPrinterStatus
0x804ff01c ZwSetSecurityObject
0x804f354a IopInvalidDeviceRequest
0x80614144 CcPfBootQueueEndTraceTimer
0x805597d0 ObpRemoveObjectList
0x806049f8 ExMapHandleToPointerEx
0x805c938a PsLookupProcessByProcessId
0x804e9d5a FsRtlFreeLockInfo
0x805b8222 ObDereferenceSecurityDescriptor
0x806ade00 CmpLoadOptions
0x8053a960 VidDisplayString
0x8054c2f8 Kd_CLASSPNP_Mask
0x80689a56 PpInitGetGroupOrderIndex
0x8058ef8e PiResizeTargetDeviceBlock
0x8054aaac ExpNumberOfPagedPools
0x8056a486 IoQueryFileDosDeviceName
0x8054a0d4 MmWsExpandThreshold
0x8055b034 ExpDebuggerProcessAttach
0x805e357c SepCreateImpersonationTokenDacl
0x80650982 VfQueryPerformanceCounter
0x804fdde8 ZwAccessCheckByTypeAndAuditAlarm
0x804fe770 ZwOpenSemaphore
0x804f6e28 KeEnableInterrupts
0x8056e38a NtCreateMailslotFile
0x80550034 CcMapDataNoWait
0x806775bc KdNumberOfSpecialCalls
0x8064e27c ViInsertPoolAllocation
0x804ec154 FsFilterFreeCompletionStack
0x804e8262 FsRtlNumberOfRunsInLargeMcb
0x80654704 VfIrpFree
0x805299f0 RtlDelete
0x8055b3e0 KdDumpEnableOffset
0x804d7e24 GUID_DEVCLASS_INFRARED
0x80657ea0 VfpPacketNotificationCallback
0x80552cdc KiMXCsrMask
0x804ff790 KeSwitchKernelStack
0x8056c0ce NtQueryAttributesFile
0x80559b80 PopSIdle
0x80514c9a MiMarkImageMappedInSystemSpace
0x804e121e CcFindBitmapRangeToClean
0x8059349e IopIrqInitialize
0x804fe9b4 ZwQueryInformationThread
0x8063e1a4 OpcodeHLTV86
0x8052a602 RtlpVerCompare
0x80628970 CmLoadKey
0x804f735c KeReadStateProcess
0x806221e2 CmpReportNotifyHelper
0x805886bc PpIrpQueryResourceRequirements
0x80658308 VfGenericVerifyNewRequest
0x80553b30 ___PchSym_
0x8054ad64 KiProfileLock
0x804f68de KdPollBreakIn
0x805581f0 MmSystemDriverPage
0x80528d04 RtlNumberOfSetBits
0x8054c32c Kd_MOUCLASS_Mask
0x80671ee8 PspFixedQuantums
0x805af93a MmHotPatchRoutine
0x8059a428 NtCreateWaitablePort
0x80533f0a ExExtendZone
0x8054c408 Kd_DMSERVER_Mask
0x80579734 IoInitializeRemoveLockEx
0x806383c0 CmCheckRegistry
0x80506a66 MmMapLockedPages
0x805929b8 PnPBiosGetBiosInfo
0x8057eff2 IoReportTargetDeviceChange
0x804d7620 _imp__VidCleanUp
0x80589f04 IopDestroyDeviceNode
0x806011e8 WmipUpdateRemoveGuid
0x80626c3a CmpFindControlSet
0x8059b836 LpcpInitializePortQueue
0x805be178 NtSetThreadExecutionState
0x8062244c CmpLockKCBTree
0x80672930 UdpIpGuid
0x805bef7c PopApplyPolicy
0x8055a150 PspShutdownThread
0x80535604 sin
0x8053a77c _decomp
0x804fe568 ZwLockFile
0x8055a1b0 PspQuotaLock
0x806131a2 ArbTestAllocation
0x805d2784 RtlValidAcl
0x804fe428 ZwFsControlFile
0x8069c842 RtlInitializeRangeListPackage
0x80553f80 MmSharedUserDataPte
0x80654b2c VfIrpSendSynchronousIrp
0x80525430 PopCalculateBusyPercentage
0x805d1bb4 RtlInitializeUnicodePrefix
0x804ea742 FsRtlPrivateCancelFileLockIrp
0x8055c71c PsEmbeddedNTMask
0x80592cba PiProfileSendHardwareProfileCommit
0x8055f5c0 CcPinRead
0x804fea68 ZwQueryOpenSubKeys
0x8055b0b0 ExDelayedWorkerThreads
0x8062de52 HvpReleaseCellMapped
0x804e9e1a FsRtlUninitializeFileLock
0x8065b68e IovUtilGetBottomDeviceObject
0x80591b50 PipIsFirmwareMapperDevicePresent
0x8059687a KeQueryLogicalProcessorInformation
0x805d3002 RtlCreateAtomTable
0x805ba030 ObpCreateSymbolicLinkName
0x805692c8 IoGetConfigurationInformation
0x80585b2c PiMarkDeviceTreeForReenumerationWorker
0x8053fa54 V86_kitc_a
0x8055d988 ObpTypeMapping
0x80530028 INCREASE_MAPPED_TRANSFER_BYTE_COUNT
0x80692c18 LpcInitSystem
0x80559b6c PoHiberInProgress
0x804f733a KeReleaseInterruptSpinLock
0x805023e4 VerifierAllocatePoolWithQuota
0x80650402 VfInjectDmaFailure
0x804fa680 KiAbiosGetGdt
0x8068be48 MapperFreeList
0x806a18ea ExpSemaphoreInitialization
0x804d7710 _imp_ExReleaseFastMutex
0x8067251c szDaylightBias
0x805f6a92 WmipStartLogger
0x8052cfac RtlpTraceDatabaseAllocate
0x8052a3be RtlDeleteElementGenericTableAvl
0x805dfcb8 LdrProcessRelocationBlockLongLong
0x80603c5e ExpAllocateLowLevelTable
0x80558700 MmSectionBasedMutex
0x805d3d8c RtlpCopyRangeListEntry
0x80693362 MiInitializeVerifyingComponents
0x8053e6bc V86_kit3_a
0x80559960 PopIdleScanDpc
0x8055d130 Class10Descriptions
0x80602f82 ExfUnblockPushLock
0x80552f14 KeUserCallbackDispatcher
0x8051b068 MiCauseOverCommitPopup
0x8064fd14 MmAreMdlPagesLocked
0x805fa706 WmipQueryGLRegistryRoutine
0x8057f2ac IopNotifyTargetDeviceChange
0x805416d0 Abios_kit_a
0x804d86f4 GUID_DEVINTERFACE_MEDIUMCHANGER
0x8055860c MmUnusedSegmentCount
0x80654aae VerifierIoAllocateIrp1
0x804faa46 KeInitializeApc
0x80550044 CcFastMdlReadNoWait
0x805f4a38 WmiFlushTrace
0x805b4642 ObpReferenceDeviceMap
0x80589ed0 PipForAllDeviceNodesCallback
0x80559fc0 PopShutdownEvent
0x804f6ede KeAreApcsDisabled
0x8065536e ViDeadlockSimilarNodes
0x80604ee6 ExpFreeHandleTableEntry
0x8054c444 Kd_STORPORT_Mask
0x804f1440 IopWriteDriverList
0x805df474 RtlGetSetBootStatusData
0x804f2124 IopWriteToDisk
0x8055b0a0 ExpThreadSetManagerEvent
0x8060371a ExpWin32OkayToCloseProcedure
0x8054c3a4 Kd_BURNENG_Mask
0x80621d1e CmpPostNotify
0x806728b0 GenericMessageGuid
0x8056286c FsRtlBalanceReads
0x80672500 szDaylightName
0x8055b560 PoolVector
0x80639fb2 DbgkCreateThread
0x806496a0 PopDumpSystemIrp
0x8051f2b0 MiDecrementReferenceCount
0x80542538 RtlLargeIntegerShiftLeft
0x80524192 PoSetSystemState
0x805597e4 ObpNumTracedObjects
0x80632e42 CmpFileRead
0x805fc55c WmipUpdateDS
0x804feec8 ZwSetEventBoostPriority
0x80589ea2 PipForAllChildDeviceNodes
0x806119db SdbpFindNextIndexedWildCardTag
0x806043ee ExSweepHandleTable
0x805f3cc6 VdmQueryDirectoryFile
0x805c57f4 PsAssignImpersonationToken
0x8064f5d2 VerifierKeRaiseIrqlToDpcLevel
0x8058b7fa IopFreeReqAlternative
0x8055002c CcMapDataNoWaitMiss
0x804d9008 _real
0x8058a438 IopRearrangeAssignTable
0x8065f306 KdpCheckLowMemory
0x805260f6 PopPolicyWorkerThread
0x806a2780 CcPfParametersInitialize
0x80660706 KdpSysReadMsr
0x8069f354 KeNumaInitialize
0x8054a06c KeI386EFlagsOrMaskV86
0x805b09aa ObpRemoveObjectRoutine
0x80513f5c MiMakeSystemAddressValidPfnSystemWs
0x80537bc8 wcschr
0x80537d5e wcsrchr
0x8052fb16 ViFreeToContiguousMemory
0x805db584 RtlpGenerateInheritAcl
0x8050a68a MmIsFileObjectAPagingFile
0x8065a62a IovpInternalCompletionTrap
0x805a9d66 MiInitializeSessionPool
0x80672870 MS_SYSTEM_INFORMATION_GUID
0x805a5504 MiAllocateVad
0x805e3a3c SeQueryAuthenticationIdToken
0x80550fe0 ___PchSym_
0x80529e66 ExpDummyAllocate
0x80610262 SdbpDoesFileExists_U
0x804eb168 FsRtlIsNtstatusExpected
0x804fb95c KeSetSystemAffinityThread
0x8058ab86 IopSetLegacyDeviceInstance
0x8054c744 MiFillModuloPages
0x804d7ce4 GUID_DEVCLASS_1394DEBUG
0x80673e9c CmpCentaurID
0x804f7770 KeSetProcess
0x8054a504 MiEstimationShift
0x8055a280 PspLoadImageNotifyRoutine
0x805e1e0c NtAdjustPrivilegesToken
0x80538508 _rttospop
0x80551268 CmBrand
0x80558464 MmSystemLockOwner
0x80670c80 CmCheckRegistryDebug
0x805522a0 KiSMTProcessorsPresent
0x805218d6 MiDownShareCountFlushEntireTb
0x8055133c InbvOldIrql
0x8055d9d8 PspJobMapping
0x8052c7dc RtlLargeIntegerDivide
0x804d7e64 GUID_DEVCLASS_MEDIA
0x8066f8b0 InitNlsSectionPointer
0x80635ece HvpFindFreeCellInBin
0x80670af8 CmRegistryMachineHardwareOwnerMapName
0x8054b4ac CmSelfHeal
0x8060acae ExRaiseHardError
0x805b654e ObpAllocateObjectNameBuffer
0x8054b5a4 CcTotalDirtyPages
0x8064452a MiInsertPhysicalViewAndRefControlArea
0x804fe090 ZwCreateIoCompletion
0x8069817e MiInitMachineDependent
0x8054ad38 IopVpbSpinLock
0x805d9196 RtlLengthSid
0x8054ffb9 CmpTrackHiveClose
0x80552ce0 KeI386ForceNpxEmulation
0x806560bc VfDeadlockAcquireResource
0x8053850a _rtnospop
0x805f55a2 IoWMIQueryAllData
0x80657e6e VfPacketFindAndLock
0x8052d6f2 RtlUnwind
0x8055d858 MiKernelVerifierThunks
0x805372d0 rand
0x80670c40 CmpMiniNTBoot
0x805d909e RtlEqualPrefixSid
0x8064be60 XpressEncodeCreate
0x804ff2b0 ZwWaitForMultipleObjects
0x8060110c WmipFindISInDSByGuid
0x8051e2ec MiInsertStandbyListAtFront
0x8055afc0 XIPlocatecnt
0x8054adc4 KiIdealDpcRate
0x80533884 ExUnregisterCallback
0x804d7c74 PARTITION_ENTRY_UNUSED_GUID
0x805ee4fa SeTokenImpersonationLevel
0x804f0312 IoBuildDeviceIoControlRequest
0x8060d268 NtQueryTimer
0x8055c620 ExpBootFinishedTimer
0x80503c98 MmUpdateMdlTracker
0x80596d0c KeInitializeProcess
0x8060cb26 NtSetSystemEnvironmentValueEx
0x804f77c8 KiAttachProcess
0x80660590 KdpSysReadIoSpace
0x8054ffc5 IopRemoteBootCardInitialized
0x8051b6fe MiGetSystemPteAvailability
0x805ded22 RtlComputeLfnChecksum
0x805511c0 Square2
0x8064f614 VerifierKfLowerIrql
0x8065e8e4 KdpSearchPhysicalPage
0x804f39aa IopVerifyDeviceObjectOnStack
0x80588da2 IopQueryRemoveLockedDeviceNode
0x804f0c2a IoCsqInsertIrp
0x8069570c MiInitializeMemoryEvents
0x8061decc CmpInitializeHiveList
0x8051b676 MmAllocateSpecialPool
0x80661606 MiExpandSpecialPool
0x8063da93 OpcodeGenericPrefixV86
0x805e75a4 SepAdtOpenObjectForDeleteAuditAlarm
0x80677ef0 InstrCountInternal
0x805bbe42 PoRequestShutdownEvent
0x80587db6 IopIncDisableableDepends
0x8059d882 MmAllocateNonCachedMemory
0x8054b4f8 KiReadyQueueIndex
0x80553d98 MmTriageActionTaken
0x805c736a NtCreateProcessEx
0x806709a0 ExpShuttingDown
0x804d8704 GUID_DEVINTERFACE_FLOPPY
0x8061c5ea CmpConfigureProcessors
0x8052a2e4 RtlEnumerateGenericTableWithoutSplayingAvl
0x80529b2c RtlInsertElementGenericTableFull
0x80658c60 VfPnpVerifyNewRequest
0x8062ac94 CmpSearchForOpenSubKeys
0x8054ffc8 IovpCancelCount
0x805597d4 ObpSymbolicLinkObjectType
0x80523b64 PopRunDownSourceTargetList
0x80610c52 FindFileInfo
0x804f43fe IopGetDevicePDO
0x80552ee0 KiGenericCallDpcMutex
0x8066f8fc IoLoaderArcBootDeviceName
0x805d01dc RtlUpcaseUnicodeToOemN
0x80558190 MiDeadPteTrackerSListHead
0x80657f70 VfGenericVerifyFinalIrpStack
0x80553c5c MiSpecialPoolLastPte
0x8053bda8 IovUtilRelateDeviceObjects
0x8052eaae SeMakeAnonymousLogonTokenNoEveryone
0x8063f406 xHalSetWakeAlarm
0x80670f08 IopQueryOperationAccess
0x806950e4 MiFindInitializationCode
0x805ee008 SeCheckPrivilegedObject
0x8056ae1c IopCreateFile
0x80519c52 MmAttachSession
0x8066269e HdlspAddLogEntry
0x805e8f30 SeAuditProcessExit
0x805011d6 KeSetAutoAlignmentProcess
0x805587f0 MmSizeOfNonPagedPoolInBytes
0x804e60c8 CcWorkerThread
0x80568ca6 IoCreateStreamFileObjectLite
0x806705d4 SeEnableDelegationPrivilege
0x805381a7 strtol
0x8055c5fc PoolTrackTableSize
0x805ce2ea RawFileSystemControl
0x8055b0b8 ExpAdditionalDelayedWorkerThreads
0x8054ad1c CcDeferredWriteSpinLock
0x8063c9fe OpcodeInvalid
0x8060223a WmipFindSysIdTable
0x8052d57e RtlDispatchException
0x8054ca80 ObSystemDeviceMap
0x806aaf36 IopCacheNetbiosNameForIpAddress
0x80538625 _fload_withFB
0x8054ffd8 CcLostDelayedWrites
0x8063be70 PiInitializeDevice
0x804e2a2c CcUnpinRepinnedBcb
0x8051b5c2 MiCheckSingleFilter
0x805d4b44 RtlpDestroyUnCommittedRange
0x804e95cc FsRtlGetNextFileLock
0x806a16ee ExpWorkerInitialization
0x80601aca WmipRemoveDataSourceByDS
0x805bcfce PoShutdownBugCheck
0x8056915c IoDisconnectInterrupt
0x806728a0 WmiEventLoggerGuid
0x8050ddd2 MiDeletePteRange
0x8054b600 TunnelLookasideList
0x80537650 strncat
0x8055ec20 CcZeroData
0x804fb05e KeInitializeQueue
0x80534e86 ExpTimerApcRoutine
0x805587f4 MmTrackLockedPages
0x805197f0 MiSessionCommitPageTables
0x805f8708 WmipSendEnableDisableRequest
0x804d9228 MMSECT
0x806a47c6 CmpIsLoadType
0x8064d3be ExGetNextWakeTime
0x80568a1c IoCheckShareAccess
0x80553c80 MmSpecialPoolRejected
0x805d4c7c RtlpFindAndCommitPages
0x805e8626 SepAdtCloseObjectAuditAlarm
0x8052a38a RtlInsertElementGenericTableAvl
0x80670ae8 CmRegistryMachineHardwareDeviceMapName
0x80558720 MmSectionCommitMutex
0x8056c222 NtQueryFullAttributesFile
0x8054a484 ViTrimSpaces
0x8054a998 ViVerifyMode
0x80611e27 SdbpVerQueryValue
0x806a77e2 CmpMatchPointerRule
0x8065bf8c ObvUtilStartObRefMonitoring
0x80550018 CcPinReadNoWaitMiss
0x804ff828 NtCallbackReturn
0x8066fb28 PsDefaultThreadLocaleId
0x8053e034 CommonDispatchException
0x8060f216 SdbpReadMappedData
0x80578db8 IopDeleteFile
0x805bbe78 PoQueueShutdownWorkItem
0x80524dac PopProcessorInformation
0x80683550 ViMessageClassFailDriverLogo
0x8055a1e0 PsJobType
0x805cac22 NtResumeThread
0x806728e0 HardFaultGuid
0x806472ce PopIOWrite
0x805b8462 ObKillProcess
0x8066f968 IopSetupNotifyData
0x804e532c CcSetFileSizes
0x80614e8c CcPfIsVolumeMounted
0x8065b648 IovUtilInit
0x80594f5c IopAllocateRelationList
0x806a8b5e CmpSearchInfSection
0x80553d20 MmPoolFailures
0x804faea8 KeInitializeMutex
0x8066f974 IopDeferredRegistrationList
0x80573b86 IopRaiseInformationalHardError
0x8056851a IoCreateDisk
0x8054ffa4 CmpSystemHiveHysteresisCallback
0x80553af8 MxPfnAllocation
0x805af3b0 MiSessionRemoveImage
0x80641386 MmGetPhysicalMemoryRanges
0x8054bb00 FsRtlLockTreeNodeLookasideList
0x8054c430 Kd_RTLTHREADPOOL_Mask
0x8059dae4 MiInsertBasedSection
0x8068d586 PnPBiosIoResourceListToCmResourceList
0x8054adb8 KiMaximumDpcQueueDepth
0x804fdf3c ZwCancelDeviceWakeupRequest
0x80670b48 CmRegistryMachineSystemCurrentControlSetControlBootLog
0x80671cc8 PopApmActiveFlag
0x8061375c ArbFindSuitableRange
0x805be456 NtRequestDeviceWakeup
0x804fafc4 KeRundownQueue
0x80671bf0 PopCompositeBatteryName
0x804f3524 IopCheckHardErrorEmpty
0x8054a0cc MmWorkingSetSizeExpansion
0x806775c0 InitialSP
0x8055aa80 WmipSMMutex
0x80558300 MiVerifyAllDrivers
0x805b1ff2 ObpChargeQuotaForObject
0x8055a160 PspActiveProcessMutex
0x8058c462 IopResourceRequirementsListToReqList
0x8066fb54 PspSystemDll
0x8065d79c ObPerfHandleTableWalk
0x80672018 RtlDecompressFragmentProcs
0x80552d00 KiAbiosGdt
0x804eeff2 IopStartNextPacket
0x8066fd84 NlsAnsiToUnicodeData
0x80536516 atoi
0x804eeb0c IoPageRead
0x80539e30 __ascii_memicmp
0x804fbe80 KeTerminateThread
0x80596d8e KeInitializeEventPair
0x8064e6b4 VerifierKeAcquireSpinLockAtDpcLevel
0x80551bc0 IopRootBusNumberArbiter
0x804d8724 GUID_DEVINTERFACE_STORAGEPORT
0x80536491 atol
0x80630d14 HvWriteHive
0x8050222c NtYieldExecution
0x805db26a RtlpCompareAces
0x804d8244 GUID_IO_DEVICE_BECOMING_READY
0x804d76e0 _imp__HalAllocateCrashDumpRegisters
0x806703f0 SeBatchSid
0x8064e052 VerifierUnlockPages
0x804f4202 IopErrorLogRequeueEntry
0x8063c7f6 PpPagePathAssign
0x805229a2 ObDereferenceObjectEx
0x8064e3e2 ViCancelPoolAllocation
0x80659d74 VfUtilIsMemoryRangeReadable
0x80568be4 IopCreateVpb
0x804fcd5a xKdCheckPowerButton
0x80527f58 WRITE_REGISTER_USHORT
0x8064ebe0 ViInsertVerifierEntry
0x805425c8 RtlLargeIntegerSubtract
0x80670b80 CmpMachineHiveList
0x804e681e ReferenceVacbLevel
0x805f2212 VdmpStartExecution
0x80564870 FsRtlNotifyCleanup
0x805c0542 PopDispatchAcDcCallback
0x804f0036 IoAsynchronousPageWrite
0x8055a904 ViSearchedNodesLimitFromRegistry
0x805c7420 NtCreateProcess
0x804fdd98 ZwAcceptConnectPort
0x8062a0fc CmpFlushNotifiesOnKeyBodyList
0x804fa688 KiI386CallAbios
0x8054ae40 __security_cookie
0x8063ac4e PiQueueDeviceRequest
0x80648384 PopEndCompressedPageSet
0x8058565c PipGetRegistrySecurityWithFallback
0x805c009a PopCalculatePerfIncreaseDecreaseTime
0x80531804 WmiTraceMessage
0x805bb6c0 ObSetDirectoryDeviceMap
0x8054ad98 IopLookasideIrpFloat
0x8055a948 WmipSysId1394Count
0x80654782 VerifierIoFreeIrp
0x8059cf0e MiUnmapSinglePage
0x805abf40 NtLockVirtualMemory
0x804fcd5a __security_check_cookie
0x80672fe0 CmpRegistryMachineSystemString
0x805e995e SeAuditingHardLinkEventsWithContext
0x80550020 CcPinReadNoWait
0x805598a0 PopUnlockComplete
0x80553b10 MiAvailablePagesEventLowSets
0x804f7e2e KeDeregisterBugCheckCallback
0x805426e4 __InterlockedCompareExchange
0x8054aa20 WmipDSChunkInfo
0x805e5716 SepUpdateParentTypeList
0x8050a6c6 MiExtendPagingFileMaximum
0x804dc500 ExpProtectedPoolBlockMessage
0x804d8334 GUID_TARGET_DEVICE_REMOVE_COMPLETE
0x8062a79e CmpInitializeCache
0x805290e2 RtlFindLeastSignificantBit
0x804eb1ce FsRtlAllocatePoolWithQuota
0x80551f30 PiEnumerationLock
0x8054ca00 ObpCreateInfoLookasideList
0x806a482c CmpDoSort
0x80558918 MmDynamicPfn
0x8054a4ec MmUserProtectionToMask2
0x80617022 CcPfPrefetchScenario
0x805918cc IopTranslatorHandlerCm
0x80567160 FstubGetDiskGeometry
0x806389aa NtCreateDebugObject
0x805ddf20 RtlDecompressFragment
0x804e6398 CcPrefillVacbLevelZone
0x8054092c Dr_kit11_a
0x8065d76c ObPerfDumpHandleEntry
0x8062fa9e CmpSyncKeyValues
0x804d7658 _imp__HalReturnToFirmware
0x80610345 SdbpGetFileDirectoryAttributesNT
0x806a7df2 CmpFindRSDTTable
0x80553ca0 MiSpecialPoolExtra
0x804eeb6e IopCheckHardErrorsDisabled
0x804e43d4 CcCancelMmWaitForUninitializeCacheMap
0x805f1964 VdmFetchBop1
0x805ff60e WmipISCleanup
0x806a8eb6 CmpParseInfBuffer
0x80558568 MmFreePagingSpaceLow
0x804fc04c KiSegSsFromTrapFrame
0x806711dc IopWstrReservedResources
0x8062e0cc HvpDelistFreeCell
0x80683580 ViMessageIoVerifierOverrides
0x804efa90 IoIsFileOriginRemote
0x805f1898 VdmFetchBop4
0x8060c2b4 NtDeleteAtom
0x804eadea FsRtlFastUnlockAll
0x805d20fa RtlInsertUnicodePrefix
0x805ba660 ObQueryNameString
0x80553e98 MmProductType
0x805d6d88 RtlFreeHeapSlowly
0x804feb1c ZwQuerySystemInformation
0x8054c3bc Kd_TAPE_Mask
0x8054a510 MiMaximumWslesPerSweep
0x8065c3aa WmipIsLoggerOn
0x8062a128 CmpComputeKcbConvKey
0x805a1be8 MiCaptureImageExceptionValues
0x8054a820 ViDmaVerifierTag
0x8055f30c CcMapData
0x805f9f92 WmipDeleteMethod
0x8064e748 VerifierExTryToAcquireFastMutex
0x8054c344 Kd_VIDEO_Mask
0x8054ae9c __decimal_point
0x8056bee8 NtFlushBuffersFile
0x8052a6d6 RtlpVerGetConditionMask
0x8055b020 ExSemaphoreObjectType
0x804d7db4 GUID_DEVCLASS_ENUM1394
0x8063f8e4 IoGetPoNotifyParent
0x8055aed8 PerfInfoSampledProfileCaching
0x8054a560 ValidKernelPde
0x80574e38 IopTrackLink
0x806a01fa ExpInitializeCallbacks
0x805ead6a SeOpenObjectAuditAlarm
0x8057a5fa IoForwardIrpSynchronously
0x80532902 ExAcquireSharedStarveExclusive
0x8060cb50 NtQueryBootEntryOrder
0x8054a558 ValidKernelPte
0x8052f916 VF_FIND_BUFFER
0x80553eb0 MmSystemPageDirectory
0x80654e2c ViDeadlockAllocateFromPoolCache
0x8065539c ViDeadlockMergeNodes
0x804eef9c IoSetThreadHardErrorMode
0x804ef4f2 IoCallDriver
0x80552f18 KeUserApcDispatcher
0x80531d84 PerfInfoLogDpc
0x8065e262 KdpWriteControlSpace
0x8058a706 IopTranslateAndAdjustReqDesc
0x804faaa8 KeInsertQueueApc
0x8064cda0 ExpShutdownWorkerThreads
0x805587d8 MmPageAlignedPoolBase
0x805a25b6 MiWriteProtectSystemImage
0x8064f696 VerifierKeLowerIrql
0x805f50fa IoWMIAllocateInstanceIds
0x8052da0c RtlInitStackTraceDataBaseEx
0x8063cc87 OpcodeINB
0x805a712c MiUnmapViewInSystemSpace
0x806adea0 CmTypeName
0x8054b588 CcQueueThrottle
0x804fe928 ZwQueryEvent
0x8052990a SwapSplayLinks
0x80551e40 IopRootPortArbiter
0x8062baee CmpLoadHiveVolatile
0x80657090 ViBugcheckProcessMessageText
0x8067110c IopWstrBusTranslated
0x805513e0 IovDriverListHead
0x805691da IoFastQueryNetworkAttributes
0x804fe838 ZwPrivilegedServiceAuditAlarm
0x804e169c CcRepinBcb
0x8054c378 Kd_SERENUM_Mask
0x80551328 ExPageLockHandle
0x804feab8 ZwQuerySecurityObject
0x8055a9b8 WmipRegistrationSpinLock
0x80567070 FstubReadPartitionTableMBR
0x8051ac30 MiSessionPoolFreed
0x80642c08 MmAdjustWorkingSetSize
0x80639776 DbgkClearProcessDebugObject
0x80659b9c VfMessageRetrieveErrorData
0x804d7640 _imp__HalTranslateBusAddress
0x804f985e KeWaitForMultipleObjects
0x80580cd4 IopDeviceObjectToDeviceInstance
0x80553bc0 MiSystemPteSListHeadLock
0x80553b3c MiDelayPageFaults
0x8065e734 KdpSearchMemory
0x805d8048 RtlPrefixUnicodeString
0x8054c45c KdpTimeSlipEventLock
0x805d451a RtlMergeRangeLists
0x80514528 MiDereferenceControlArea
0x8054bc00 FsRtlWaitingLockLookasideList
0x804d7d94 GUID_DEVCLASS_DOT4
0x805eab36 NtCloseObjectAuditAlarm
0x805165f4 MiAttachAndLockWorkingSet
0x804d85f4 GUID_DEVICE_SURPRISE_REMOVAL
0x80553dec MiExtendedSubsectionsConvertedToDynamic
0x8054aa3c WmipGEChunkInfo
0x80519472 MmZeroPageThread
0x8067042c SeAnonymousLogonSid
0x804fb796 KeQueryPriorityThread
0x80536156 _strnicmp
0x804e7a5e ExFreeToPagedLookasideList
0x805cd75a NtTerminateJobObject
0x80594bd2 PnPBiosExamineBiosDeviceKey
0x8063ccc1 OpcodeINW
0x8066f8ac FsRtlpRedirs
0x805519ac PbBiosEntryPoint
0x8058fbfc PiWalkDeviceList
0x805500bc CcAggressiveZeroCount
0x80558184 MiNonCachedCollisions
0x80520444 MiRepointWsleHashIndex
0x80654964 VfIrpWatermark
0x8066fa2c OpcodeDispatchV86
0x8059da62 MmProbeAndLockProcessPages
0x805279f6 RawCompletionRoutine
0x8051a3fc MiAddRangeToCrashDump
0x80551800 IopTimer
0x8051816a MiRemoveMappedPtes
0x805e658c SeAccessCheckByType
0x80541e2c RtlpInterlockedPushEntrySList
0x804d8424 GUID_ACPI_CMOS_INTERFACE_STANDARD
0x80558460 MmExpansionLock
0x80524338 PopResetRangeEnum
0x8053cab4 KeReleaseSpinLockFromDpcLevel
0x80553af4 MxFreeDescriptor
0x80552de0 KiProcessInSwapListHead
0x8058ebd4 PiNotifyUserModeRemoveVetoed
0x8054a940 `VF_ASSERT_MAX_IRQL_::`3_::enable
0x804fe2d4 ZwDisplayString
0x8053bf36 TriageGetLoaderEntry
0x80563c66 FsRtlIsNotifyOnList
0x805799c2 IoSynchronousInvalidateDeviceRelations
0x805d1bd6 RtlRemoveUnicodePrefix
0x8052a53e RtlLookupElementGenericTableAvl
0x80670508 SepPrimaryDomainAdminSid
0x8052e0ba RtlpCopyAndNormalizePeHeaderForHash
0x80530ab0 ViSwap
0x8053850c _rttosnpop
0x805f5498 IoWMIOpenBlock
0x80546f00 KiDoubleFaultStack
0x80534298 ExpGetPoolTagInfo
0x80521de6 MiCheckForUserStackOverflow
0x804eb6ac FsRtlAcknowledgeOplockBreak
0x804dc458 DpcGuid
0x80554018 MmPteCodeEnd
0x805ce962 LdrpAccessResourceDataNoMultipleLanguage
0x80537f4b _SEH_epilog
0x80532c9c ExQueryPoolBlockSize
0x80648dd6 NtSetSystemPowerState
0x805a5756 MiMakeSystemAddressValid
0x8064fbde VerifierAllocatePoolWithTagPriority
0x80618fa0 NtSetInformationKey
0x8054b4b0 CmpLazyFlushIntervalInSeconds
0x80670420 SeAliasSystemOpsSid
0x8059b184 NtReadRequestData
0x804f38bc IopAllocateReserveIrp
0x8065d450 PerfInfoSysModuleRunDown
0x8054c2e4 Kd_NTFS_Mask
0x805cb526 PspGetJobFromSet
0x805d25e6 RtlMakeSelfRelativeSD
0x8064ea1c VerifierKeReleaseMutex
0x8058dfa2 IopReallocateResources
0x80622480 CmpLockRegistry
0x805ee0d8 SeSetSecurityDescriptorInfo
0x80627a66 CmDeleteValueKey
0x8069a218 MiRemoveModuloPages
0x80565e1c IoReadPartitionTable
0x8052f966 VF_FIND_DEVICE_INFORMATION
0x805cbee0 NtQueryInformationJobObject
0x80671f70 PspJobInfoAlign
0x805d2af0 RtlQueryInformationAcl
0x8060308e ExAcquireCacheAwarePushLockExclusive
0x80552dc0 KiProfileListHead
0x8053867e _fast_exit
0x80527bdc RtlpBreakWithStatusInstruction
0x80570ad0 NtSetQuotaInformationFile
0x8062f54e CmpInitializeKeyNameString
0x80524a8c PopIdleUpdateIdleHandler
0x8052ecee IsRunningOnXPSP2
0x80670964 ExpLastTimeZoneBias
0x80514554 MiReferenceSubsection
0x805f120a SepCheckAcl
0x8055c600 PoolTrackTable
0x80553c58 MiSpecialPagesNonPaged
0x804ecfd0 FsRtlPostPagingFileStackOverflow
0x805385f5 _load_CW
0x8059dc64 MmGetFileObjectForSection
0x80662ee8 HdlspPutMore
0x804db588 NormalYearDayToMonth
0x805bc976 PopEnableHiberFile
0x8058a480 IopNeedToReleaseBootResources
0x8056919c IoEnqueueIrp
0x80670430 SeLocalServiceSid
0x80617f18 CcPfParametersSave
0x80510a22 MiInitializePfnForOtherProcess
0x8067ff0c KdpSearchEndPageFrame
0x8051a15a MiIsAddressRangeValid
0x805d2f2a RtlpDestroyHandleTableForAtomTable
0x8055fbcc CcCreateVacbArray
0x80655fe8 ViDeadlockAddResource
0x804d768c _imp__KeRaiseIrqlToSynchLevel
0x805517ec IoControllerObjectType
0x805500ec CcVacbs
0x804efb8c IoValidateDeviceIoControlAccess
0x8053f7f8 V86_kitb_a
0x8062179a CmpCmdRenameHive
0x8063d5b5 SwitchToHandlerStack
0x804e860c FsRtlUninitializeLargeMcb
0x8051efbc MiInsertPageInFreeList
0x805c4cf6 PsReferencePrimaryToken
0x804fed38 ZwRequestWaitReplyPort
0x804fa49e KeI386FlatToGdtSelector
0x80670584 SeBackupPrivilege
0x8065f78c KdpReportExceptionStateChange
0x8053fbf2 VdmFixEspEbp
0x8054ad28 NonPagedPoolLock
0x80533730 ExNotifyCallback
0x8054a9d0 WmipMaxKmWnodeEventSize
0x805e02ec RtlpApplyRelocationFixups
0x805d3f7e RtlFindRange
0x80657bce VerifierNtWriteFile
0x805001a2 KiContinuePreviousModeUser
0x804f08c8 IoDeleteDevice
0x8054a630 PopIdle0TimeCheck
0x806896e2 PipInsertDriverList
0x8068f2d0 IopFileUtilClearAttributes
0x80671fac RtlBaseAceType
0x8065950c VfPnpVerifyIrpStackUpward
0x805e1bc6 SepAdjustGroups
0x806106a8 SdbGetStringTagPtr
0x8060454e ExSnapShotHandleTables
0x805581ec MmTransitionSharedPagesPeak
0x8054a1c4 MmSystemProcessWorkingSetMax
0x8055d140 Class11Descriptions
0x80551aa8 PiProfileDeviceListHead
0x80553a44 MiAddPtesCount
0x8065febe KdpLowRestoreBreakpoint
0x80670c38 CmpKeyObjectType
0x805cbab4 PspAddProcessToJob
0x8054c3a8 Kd_IMAPI_Mask
0x8061cc48 CmpCreatePredefined
0x8063e004 OpcodeCLIV86
0x805bde66 PoVolumeDevice
0x8061e24c CmpSetGlobalQuotaAllowed
0x8050eae4 MmAllowWorkingSetExpansion
0x80539de0 _matherr
0x804f735c KeReadStateEvent
0x805510b4 ReleaseOpsReservePool
0x804dc448 PowerGuid
0x80671528 MiVerifierPoolThunks
0x80639b56 NtRemoveProcessDebug
0x80684228 FsRtlInitializeLargeMcbs
0x805802a4 PipConcatenateUnicodeStrings
0x806ab554 IopAddRemoteBootValuesToRegistry
0x80545d78 KdComponentTable
0x80670808 SepLogonSessions
0x804e6478 CcDrainVacbLevelZone
0x8054ae5a _piby2
0x805597bc ObpXXX1
0x805e351e SeFastFilterToken
0x805fa35a WmipCheckGuidAccess
0x8054a944 `ADD_MAP_REGISTERS_::`6_::enable
0x8053bf04 TriageActUpon
0x8069f242 VfGenericInit
0x80505374 MmGetPhysicalAddress
0x804d763c _imp__KeStallExecutionProcessor
0x80559c0c PopNotifyEvents
0x805587c0 MmFirstFreeSystemPte
0x804dc3f8 HeapGuid
0x8054c370 Kd_SCCLIENT_Mask
0x804d9240 MmTwentySeconds
0x805d36dc RtlPinAtomInAtomTable
0x8060dfb6 NtStopProfile
0x8067050c SeCreateTokenPrivilege
0x8054a05c KeZeroPage
0x8065f390 KdpSendWaitContinue
0x80671ac0 ObpDosDevicesShortNameRoot
0x805de354 RtlpSysVolCreateSecurityDescriptor
0x80551f0c IoDeviceNodeTreeSequence
0x8064e866 VerifierExReleaseFastMutex
0x80550d20 CmpLoadWorkerEvent
0x8051d7bc MiFindEmptyAddressRange
0x8051693e MiCheckAndSetSystemTrimCriteria
0x8069e5e8 SeMakeAnonymousLogonToken
0x80656740 VerifierIoAttachDeviceToDeviceStack
0x805289b0 RtlSetBits
0x8053cad0 KiReleaseSpinLock
0x806acb1c CmInstallUILanguageIdType
0x80541643 KiInterruptTemplate2ndDispatch
0x804fedec ZwSaveMergedKeys
0x805bd9b2 PopInitializePowerPolicySimulate
0x8058adda IopQueryConflictFillConflicts
0x8060f138 LsaDeregisterLogonProcess
0x804db714 NormalYearDaysPrecedingMonth
0x80642dcc MmUnlockPagedPool
0x80567042 xHalQueryBusSlots
0x8066fb4c PspBootAccessToken
0x805458dc InbvTerminalBkgdColor
0x8053b320 CcPfTraceTimerRoutine
0x80550c60 CmpRegistryLock
0x804f0d2e IoCsqRemoveIrp
0x8052e616 ExAllocateLocallyUniqueId
0x805d87a4 RtlOemStringToUnicodeString
0x805ee110 SeSetSecurityDescriptorInfoEx
0x805520f8 IopGroupTable
0x8062f61a CmpSyncSubKeysAfterDelete
0x8055af88 ExEventPairObjectType
0x805266ca PopBattWakeDpc
0x805bffaa PopPolicySystemIdle
0x806224ae CmpLockRegistryExclusive
0x806729b0 WmipGuidList
0x80670c3d CmFirstTime
0x805a5084 MmCreatePeb
0x806ade90 CmpUnknownBusCount
0x805eddce NtPrivilegeCheck
0x804f1e38 IopWritePageToDisk
0x805ef34a SeGetTokenControlInformation
0x8055aac0 WmipAnyoneAccessSecurityDescriptor
0x80562246 FsRtlInitializeMcb
0x8052bd54 RtlIpv4StringToAddressExA
0x80536015 _itow
0x804d81d4 GUID_IO_VOLUME_NAME_CHANGE
0x804f6dd4 KeQueryTickCount
0x806978b0 MiInitializeCommitment
0x8060ff26 SdbTagRefToTagID
0x80542734 ExInterlockedAddLargeInteger
0x806703d4 SeCreatorOwnerSid
0x8063b7b6 PiControlQueryConflictList
0x8055aa00 WmipFastIoDispatch
0x80520c5c MiLocateAddressInTree
0x805513ec IopInitFailCode
0x80519bb2 MmGetNextSession
0x80545ef4 KdComponentTableSize
0x805e27ea SepDuplicateToken
0x80656dc0 VfMajorIsNewRequest
0x806709c4 ExpExpirationDataIoSb
0x8053bef0 IovUtilWatermarkIrp
0x805b5e68 ObGetObjectSecurity
0x80553b20 MmAvailablePagesEventHigh
0x80598a46 LpcpRequestWaitReplyPort
0x8055a9d0 WmipDockUndockNotificationEntry
0x805bdaf4 PoInvalidateDevicePowerRelations
0x8055dd98 CmpUpdateSignature
0x8058fe7c PpSetDeviceClassChange
0x804fd5b2 KiGetCurrentLogicalProcessorInformation
0x804fe194 ZwCreateSemaphore
0x805913c4 PiDeviceRegistration
0x80638446 HvCheckBin
0x8054fb24 ExReadyForErrors
0x805387f1 _flsbuf
0x805def24 RtlGenerate8dot3Name
0x8059a6fc NtQueryInformationPort
0x80528130 RtlValidateUnicodeString
0x8050c00a MiCheckProtoPtePageState
0x8054b700 FsRtlFastMutexLookasideList
0x805248f2 PopIdleVerifyIdleHandlers
0x804ff9c0 RDTSC
0x80551240 Square3
0x805f8ac4 WmipDoDisableRequest
0x805979d4 Ki386CheckDivideByZeroTrap
0x8066fb2c PsDefaultUILanguageId
0x80634f5c HvCloneHive
0x8066fa28 ExVdmSegmentNotPresent
0x80569b18 IoRegisterLastChanceShutdownNotification
0x804fe694 ZwOpenEventPair
0x8054281c ExInterlockedDecrementLong
0x805b573e ObpGetObjectSecurity
0x8064959e PopCheckSystemPowerIrpStatus
0x806391b8 DbgkpConvertKernelToUserStateChange
0x805428d0 ExecuteHandler
0x8054fd68 CcPfEnablePrefetcher
0x8053a8f4 HalFreeCommonBuffer
0x8060f520 SdbCloseDatabaseRead
0x80527650 PsGetCurrentProcessId
0x804ede8c InbvRotateGuiBootDisplay
0x80634b56 HvpMapFileImageAndBuildMap
0x8053cab0 KefReleaseSpinLockFromDpcLevel
0x804fe6a8 ZwOpenFile
0x8054a5c4 MmSysPteMinimumFree
0x805a742a MmUnmapViewInSystemSpace
0x8060315e ExInitializePoolDescriptor
0x805a45a0 MiResolveImageReferences
0x80567a62 FstubWritePartitionTableEFI
0x80536129 _strlwr
0x80516f84 MiRemoveMappedView
0x8069aa14 ObpCreateDosDevicesDirectory
0x80550100 CcIdleDelayTick
0x805017aa KeRestoreMtrr
0x8055826c ViTrackIrqlQueue
0x805e9304 SeDeleteObjectAuditAlarm
0x80542354 RtlPrefetchMemoryNonTemporal
0x80657f70 VfDriverInit
0x8068f382 IopFileUtilRename
0x8060d08e NtCreateTimer
0x8054a500 MiAgingShift
0x805f0cf8 SepAuditFailed
0x8059b882 LpcpFreeToPortZone
0x805fdeae WmipClearObjectFromThreadList
0x80616744 CcPfGetPrefetchInstructions
0x805500c0 CcCapturedSystemSize
0x804d7d34 GUID_DEVCLASS_BATTERY
0x805e57e4 SepAddAccessTypeList
0x805605ea FsRtlFindInTunnelCache
0x805e0818 RtlReadSingleHookValidation
0x804d84b4 GUID_BUS_TYPE_USBPRINT
0x804f3a74 IopIncrementDeviceObjectHandleCount
0x805ce3ac RawCleanup
0x8065d806 KdEnterDebugger
0x805e188a RtlAcquirePebLock
0x80659870 VfIrpDatabaseEntryDereference
0x80537f10 _SEH_prolog
0x8068fafc IDT
0x805426d8 __InterlockedDecrement
0x804feb80 ZwQueryVirtualMemory
0x804e6c36 SetVacb
0x8063daae OpcodeINSBV86
0x805a16de MmFlushVirtualMemory
0x805513e4 ___PchSym_
0x80658696 VfGenericVerifyNewIrp
0x804fb6ce KeDisableApcQueuingThread
0x804e7b7c FsRtlRegisterFileSystemFilterCallbacks
0x8056706a xHalEndOfBoot
0x80538577 _nan2
0x805459f8 FadingIn
0x8054c3cc Kd_FLOPPY_Mask
0x80684666 InbvIndicateProgress
0x805690dc IoDeleteSymbolicLink
0x80562cce FsRtlpRegisterProviderWithMUP
0x8052df3a RtlpNormalizePeHeaderForIdHash
0x805617d0 FsRtlIncrementCcFastReadWait
0x8056222a FsRtlAcquireToCreateMappedSection
0x8059be56 MmRemovePhysicalMemory
0x805bc8b0 PopGetHiberFlags
0x8052d246 RtlTraceDatabaseDestroy
0x80531b80 IoWMIHandleToInstanceName
0x805a1ab8 NtFlushVirtualMemory
0x805ce618 RawQueryVolumeInformation
0x8057453a IopGetDriverNameFromKeyNode
0x80538668 _checkTOS_withFB
0x8065b838 IovUtilIsWdmStack
0x804f79c8 KeStackAttachProcess
0x805ef278 SeAssignPrimaryToken
0x804e684a CcGetVirtualAddressIfMapped
0x8055b02c ExpDebuggerWork
0x80537aff towupper
0x804dc3b8 SystemTraceControlGuid
0x8062ca7c CmpQuerySecurityDescriptorInfo
0x804e5a8e CcScheduleLazyWriteScan
0x804d9530 ValidPdePde
0x805219ec MiRetrievePageDirectoryFrames
0x804edf66 IoAllocateDriverObjectExtension
0x805ed3a6 SeMarkLogonSessionForTerminationNotification
0x8060d1b0 NtOpenTimer
0x8069fa4c WmipDriverEntry
0x80634a12 HvpGetLogHeader
0x80527bd4 DbgUserBreakPoint
0x8067051c SeLockMemoryPrivilege
0x8056a780 IoEnumerateRegisteredFiltersList
0x80552c04 KiFastSystemCallDisable
0x80541e4c InterlockedPushListSList
0x804ef812 IoEnumerateDeviceObjectList
0x8053a8dc IoFreeAdapterChannel
0x80604c94 ExpGetHandleInfo
0x805e6fac SeAppendPrivileges
0x80542640 ExfInterlockedInsertHeadList
0x804f3860 IopCallBootDriverReinitializationRoutines
0x80689580 PipGetDriverTagPriority
0x8060f256 SdbpGetMappedData
0x806adffc _IMPORT_DESCRIPTOR_HAL
0x80623b46 CmpFindSubKeyInRoot
0x80671fd4 RtlpIntegerWChars
0x80553f44 MmLowMemoryThreshold
0x8069360a MmSetPageProtection
0x8060cb34 NtEnumerateSystemEnvironmentValuesEx