-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsym_64.txt
9446 lines (9446 loc) · 382 KB
/
sym_64.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
0x11223344556fcf5a IopFreeDCB
0x112233445569033e KiQuantumEnd
0x11223344557cc334 PiControlHaltDevice
0x11223344557f2424 MiAllocateSpecialPool
0x11223344556f2a0c FsRtlDissectName
0x11223344556db4d8 KiContextSwapLock
0x11223344556c3e9a ExAllocatePoolWithQuota
0x11223344556e29f0 KiAmdK6Mtrr
0x11223344556f41d6 FsRtlIsHpfsDbcsLegal
0x11223344556ea09c PopFullWake
0x11223344557392ea MmExtendSection
0x112233445577094e RtlFreeHotPatchData
0x11223344556b32ea ObfDereferenceObject
0x1122334455831bae ExInitSystemPhase2
0x112233445568e7f0 ZwCreateEventPair
0x11223344556cb058 IoFreeMapRegisters
0x112233445569e93e MmDeleteKernelStack
0x11223344557531d2 PspSetPrimaryToken
0x11223344556d338e MiAllocatePoolPages
0x112233445567ed20 IoGetAttachedDeviceReference
0x11223344557bf3ce CmpInitializeHive
0x11223344556e8d90 MmUnusedSubsectionCount
0x1122334455687514 KeQuerySystemTime
0x11223344556eb7c8 ExpDebuggerWorkItem
0x11223344556e1f2c IopUniqueDeviceObjectNumber
0x1122334455783110 VdmPrinterStatus
0x112233445568f7a4 ZwSetSecurityObject
0x1122334455683cd2 IopInvalidDeviceRequest
0x11223344557a48cc CcPfBootQueueEndTraceTimer
0x11223344556e9f58 ObpRemoveObjectList
0x1122334455795180 ExMapHandleToPointerEx
0x1122334455759b12 PsLookupProcessByProcessId
0x112233445567a4e2 FsRtlFreeLockInfo
0x11223344557489aa ObDereferenceSecurityDescriptor
0x112233445583e588 CmpLoadOptions
0x11223344556cb0e8 VidDisplayString
0x11223344556dca80 Kd_CLASSPNP_Mask
0x112233445581a1de PpInitGetGroupOrderIndex
0x112233445571f716 PiResizeTargetDeviceBlock
0x11223344556db234 ExpNumberOfPagedPools
0x11223344556fac0e IoQueryFileDosDeviceName
0x11223344556da85c MmWsExpandThreshold
0x11223344556eb7bc ExpDebuggerProcessAttach
0x1122334455773d04 SepCreateImpersonationTokenDacl
0x11223344557e110a VfQueryPerformanceCounter
0x112233445568e570 ZwAccessCheckByTypeAndAuditAlarm
0x112233445568eef8 ZwOpenSemaphore
0x11223344556875b0 KeEnableInterrupts
0x11223344556feb12 NtCreateMailslotFile
0x11223344556e07bc CcMapDataNoWait
0x1122334455807d44 KdNumberOfSpecialCalls
0x11223344557dea04 ViInsertPoolAllocation
0x112233445567c8dc FsFilterFreeCompletionStack
0x11223344556789ea FsRtlNumberOfRunsInLargeMcb
0x11223344557e4e8c VfIrpFree
0x11223344556ba178 RtlDelete
0x11223344556ebb68 KdDumpEnableOffset
0x11223344556685ac GUID_DEVCLASS_INFRARED
0x11223344557e8628 VfpPacketNotificationCallback
0x11223344556e3464 KiMXCsrMask
0x112233445568ff18 KeSwitchKernelStack
0x11223344556fc856 NtQueryAttributesFile
0x11223344556ea308 PopSIdle
0x11223344556a5422 MiMarkImageMappedInSystemSpace
0x11223344556719a6 CcFindBitmapRangeToClean
0x1122334455723c26 IopIrqInitialize
0x112233445568f13c ZwQueryInformationThread
0x11223344557ce92c OpcodeHLTV86
0x11223344556bad8a RtlpVerCompare
0x11223344557b90f8 CmLoadKey
0x1122334455687ae4 KeReadStateProcess
0x11223344557b296a CmpReportNotifyHelper
0x1122334455718e44 PpIrpQueryResourceRequirements
0x11223344557e8a90 VfGenericVerifyNewRequest
0x11223344556e42b8 ___PchSym_
0x11223344556db4ec KiProfileLock
0x1122334455687066 KdPollBreakIn
0x11223344556e8978 MmSystemDriverPage
0x11223344556b948c RtlNumberOfSetBits
0x11223344556dcab4 Kd_MOUCLASS_Mask
0x1122334455802670 PspFixedQuantums
0x11223344557400c2 MmHotPatchRoutine
0x112233445572abb0 NtCreateWaitablePort
0x11223344556c4692 ExExtendZone
0x11223344556dcb90 Kd_DMSERVER_Mask
0x1122334455709ebc IoInitializeRemoveLockEx
0x11223344557c8b48 CmCheckRegistry
0x11223344556971ee MmMapLockedPages
0x1122334455723140 PnPBiosGetBiosInfo
0x112233445570f77a IoReportTargetDeviceChange
0x1122334455667da8 _imp__VidCleanUp
0x112233445571a68c IopDestroyDeviceNode
0x1122334455791970 WmipUpdateRemoveGuid
0x11223344557b73c2 CmpFindControlSet
0x112233445572bfbe LpcpInitializePortQueue
0x112233445574e900 NtSetThreadExecutionState
0x11223344557b2bd4 CmpLockKCBTree
0x11223344558030b8 UdpIpGuid
0x112233445574f704 PopApplyPolicy
0x11223344556ea8d8 PspShutdownThread
0x11223344556c5d8c sin
0x11223344556caf04 _decomp
0x112233445568ecf0 ZwLockFile
0x11223344556ea938 PspQuotaLock
0x11223344557a392a ArbTestAllocation
0x1122334455762f0c RtlValidAcl
0x112233445568ebb0 ZwFsControlFile
0x112233445582cfca RtlInitializeRangeListPackage
0x11223344556e4708 MmSharedUserDataPte
0x11223344557e52b4 VfIrpSendSynchronousIrp
0x11223344556b5bb8 PopCalculateBusyPercentage
0x112233445576233c RtlInitializeUnicodePrefix
0x112233445567aeca FsRtlPrivateCancelFileLockIrp
0x11223344556ecea4 PsEmbeddedNTMask
0x1122334455723442 PiProfileSendHardwareProfileCommit
0x11223344556efd48 CcPinRead
0x112233445568f1f0 ZwQueryOpenSubKeys
0x11223344556eb838 ExDelayedWorkerThreads
0x11223344557be5da HvpReleaseCellMapped
0x112233445567a5a2 FsRtlUninitializeFileLock
0x11223344557ebe16 IovUtilGetBottomDeviceObject
0x11223344557222d8 PipIsFirmwareMapperDevicePresent
0x1122334455727002 KeQueryLogicalProcessorInformation
0x112233445576378a RtlCreateAtomTable
0x112233445574a7b8 ObpCreateSymbolicLinkName
0x11223344556f9a50 IoGetConfigurationInformation
0x11223344557162b4 PiMarkDeviceTreeForReenumerationWorker
0x11223344556d01dc V86_kitc_a
0x11223344556ee110 ObpTypeMapping
0x11223344556c07b0 INCREASE_MAPPED_TRANSFER_BYTE_COUNT
0x11223344558233a0 LpcInitSystem
0x11223344556ea2f4 PoHiberInProgress
0x1122334455687ac2 KeReleaseInterruptSpinLock
0x1122334455692b6c VerifierAllocatePoolWithQuota
0x11223344557e0b8a VfInjectDmaFailure
0x112233445568ae08 KiAbiosGetGdt
0x112233445581c5d0 MapperFreeList
0x1122334455832072 ExpSemaphoreInitialization
0x1122334455667e98 _imp_ExReleaseFastMutex
0x1122334455802ca4 szDaylightBias
0x112233445578721a WmipStartLogger
0x11223344556bd734 RtlpTraceDatabaseAllocate
0x11223344556bab46 RtlDeleteElementGenericTableAvl
0x1122334455770440 LdrProcessRelocationBlockLongLong
0x11223344557943e6 ExpAllocateLowLevelTable
0x11223344556e8e88 MmSectionBasedMutex
0x1122334455764514 RtlpCopyRangeListEntry
0x1122334455823aea MiInitializeVerifyingComponents
0x11223344556cee44 V86_kit3_a
0x11223344556ea0e8 PopIdleScanDpc
0x11223344556ed8b8 Class10Descriptions
0x112233445579370a ExfUnblockPushLock
0x11223344556e369c KeUserCallbackDispatcher
0x11223344556ab7f0 MiCauseOverCommitPopup
0x11223344557e049c MmAreMdlPagesLocked
0x112233445578ae8e WmipQueryGLRegistryRoutine
0x112233445570fa34 IopNotifyTargetDeviceChange
0x11223344556d1e58 Abios_kit_a
0x1122334455668e7c GUID_DEVINTERFACE_MEDIUMCHANGER
0x11223344556e8d94 MmUnusedSegmentCount
0x11223344557e5236 VerifierIoAllocateIrp1
0x112233445568b1ce KeInitializeApc
0x11223344556e07cc CcFastMdlReadNoWait
0x11223344557851c0 WmiFlushTrace
0x1122334455744dca ObpReferenceDeviceMap
0x112233445571a658 PipForAllDeviceNodesCallback
0x11223344556ea748 PopShutdownEvent
0x1122334455687666 KeAreApcsDisabled
0x11223344557e5af6 ViDeadlockSimilarNodes
0x112233445579566e ExpFreeHandleTableEntry
0x11223344556dcbcc Kd_STORPORT_Mask
0x1122334455681bc8 IopWriteDriverList
0x112233445576fbfc RtlGetSetBootStatusData
0x11223344556828ac IopWriteToDisk
0x11223344556eb828 ExpThreadSetManagerEvent
0x1122334455793ea2 ExpWin32OkayToCloseProcedure
0x11223344556dcb2c Kd_BURNENG_Mask
0x11223344557b24a6 CmpPostNotify
0x1122334455803038 GenericMessageGuid
0x11223344556f2ff4 FsRtlBalanceReads
0x1122334455802c88 szDaylightName
0x11223344556ebce8 PoolVector
0x11223344557ca73a DbgkCreateThread
0x11223344557d9e28 PopDumpSystemIrp
0x11223344556afa38 MiDecrementReferenceCount
0x11223344556d2cc0 RtlLargeIntegerShiftLeft
0x11223344556b491a PoSetSystemState
0x11223344556e9f6c ObpNumTracedObjects
0x11223344557c35ca CmpFileRead
0x112233445578cce4 WmipUpdateDS
0x112233445568f650 ZwSetEventBoostPriority
0x112233445571a62a PipForAllChildDeviceNodes
0x11223344557a2163 SdbpFindNextIndexedWildCardTag
0x1122334455794b76 ExSweepHandleTable
0x112233445578444e VdmQueryDirectoryFile
0x1122334455755f7c PsAssignImpersonationToken
0x11223344557dfd5a VerifierKeRaiseIrqlToDpcLevel
0x112233445571bf82 IopFreeReqAlternative
0x11223344556e07b4 CcMapDataNoWaitMiss
0x1122334455669790 _real
0x112233445571abc0 IopRearrangeAssignTable
0x11223344557efa8e KdpCheckLowMemory
0x11223344556b687e PopPolicyWorkerThread
0x1122334455832f08 CcPfParametersInitialize
0x11223344557f0e8e KdpSysReadMsr
0x112233445582fadc KeNumaInitialize
0x11223344556da7f4 KeI386EFlagsOrMaskV86
0x1122334455741132 ObpRemoveObjectRoutine
0x11223344556a46e4 MiMakeSystemAddressValidPfnSystemWs
0x11223344556c8350 wcschr
0x11223344556c84e6 wcsrchr
0x11223344556c029e ViFreeToContiguousMemory
0x112233445576bd0c RtlpGenerateInheritAcl
0x112233445569ae12 MmIsFileObjectAPagingFile
0x11223344557eadb2 IovpInternalCompletionTrap
0x112233445573a4ee MiInitializeSessionPool
0x1122334455802ff8 MS_SYSTEM_INFORMATION_GUID
0x1122334455735c8c MiAllocateVad
0x11223344557741c4 SeQueryAuthenticationIdToken
0x11223344556e1768 ___PchSym_
0x11223344556ba5ee ExpDummyAllocate
0x11223344557a09ea SdbpDoesFileExists_U
0x112233445567b8f0 FsRtlIsNtstatusExpected
0x112233445568c0e4 KeSetSystemAffinityThread
0x112233445571b30e IopSetLegacyDeviceInstance
0x11223344556dcecc MiFillModuloPages
0x112233445566846c GUID_DEVCLASS_1394DEBUG
0x1122334455804624 CmpCentaurID
0x1122334455687ef8 KeSetProcess
0x11223344556dac8c MiEstimationShift
0x11223344556eaa08 PspLoadImageNotifyRoutine
0x1122334455772594 NtAdjustPrivilegesToken
0x11223344556c8c90 _rttospop
0x11223344556e19f0 CmBrand
0x11223344556e8bec MmSystemLockOwner
0x1122334455801408 CmCheckRegistryDebug
0x11223344556e2a28 KiSMTProcessorsPresent
0x11223344556b205e MiDownShareCountFlushEntireTb
0x11223344556e1ac4 InbvOldIrql
0x11223344556ee160 PspJobMapping
0x11223344556bcf64 RtlLargeIntegerDivide
0x11223344556685ec GUID_DEVCLASS_MEDIA
0x1122334455800038 InitNlsSectionPointer
0x11223344557c6656 HvpFindFreeCellInBin
0x1122334455801280 CmRegistryMachineHardwareOwnerMapName
0x11223344556dbc34 CmSelfHeal
0x112233445579b436 ExRaiseHardError
0x1122334455746cd6 ObpAllocateObjectNameBuffer
0x11223344556dbd2c CcTotalDirtyPages
0x11223344557d4cb2 MiInsertPhysicalViewAndRefControlArea
0x112233445568e818 ZwCreateIoCompletion
0x1122334455828906 MiInitMachineDependent
0x11223344556db4c0 IopVpbSpinLock
0x112233445576991e RtlLengthSid
0x11223344556e0741 CmpTrackHiveClose
0x11223344556e3468 KeI386ForceNpxEmulation
0x11223344557e6844 VfDeadlockAcquireResource
0x11223344556c8c92 _rtnospop
0x1122334455785d2a IoWMIQueryAllData
0x11223344557e85f6 VfPacketFindAndLock
0x11223344556bde7a RtlUnwind
0x11223344556edfe0 MiKernelVerifierThunks
0x11223344556c7a58 rand
0x11223344558013c8 CmpMiniNTBoot
0x1122334455769826 RtlEqualPrefixSid
0x11223344557dc5e8 XpressEncodeCreate
0x112233445568fa38 ZwWaitForMultipleObjects
0x1122334455791894 WmipFindISInDSByGuid
0x11223344556aea74 MiInsertStandbyListAtFront
0x11223344556eb748 XIPlocatecnt
0x11223344556db54c KiIdealDpcRate
0x11223344556c400c ExUnregisterCallback
0x11223344556683fc PARTITION_ENTRY_UNUSED_GUID
0x112233445577ec82 SeTokenImpersonationLevel
0x1122334455680a9a IoBuildDeviceIoControlRequest
0x112233445579d9f0 NtQueryTimer
0x11223344556ecda8 ExpBootFinishedTimer
0x1122334455694420 MmUpdateMdlTracker
0x1122334455727494 KeInitializeProcess
0x112233445579d2ae NtSetSystemEnvironmentValueEx
0x1122334455687f50 KiAttachProcess
0x11223344557f0d18 KdpSysReadIoSpace
0x11223344556e074d IopRemoteBootCardInitialized
0x11223344556abe86 MiGetSystemPteAvailability
0x112233445576f4aa RtlComputeLfnChecksum
0x11223344556e1948 Square2
0x11223344557dfd9c VerifierKfLowerIrql
0x11223344557ef06c KdpSearchPhysicalPage
0x1122334455684132 IopVerifyDeviceObjectOnStack
0x112233445571952a IopQueryRemoveLockedDeviceNode
0x11223344556813b2 IoCsqInsertIrp
0x1122334455825e94 MiInitializeMemoryEvents
0x11223344557ae654 CmpInitializeHiveList
0x11223344556abdfe MmAllocateSpecialPool
0x11223344557f1d8e MiExpandSpecialPool
0x11223344557ce21b OpcodeGenericPrefixV86
0x1122334455777d2c SepAdtOpenObjectForDeleteAuditAlarm
0x1122334455808678 InstrCountInternal
0x112233445574c5ca PoRequestShutdownEvent
0x112233445571853e IopIncDisableableDepends
0x112233445572e00a MmAllocateNonCachedMemory
0x11223344556dbc80 KiReadyQueueIndex
0x11223344556e4520 MmTriageActionTaken
0x1122334455757af2 NtCreateProcessEx
0x1122334455801128 ExpShuttingDown
0x1122334455668e8c GUID_DEVINTERFACE_FLOPPY
0x11223344557acd72 CmpConfigureProcessors
0x11223344556baa6c RtlEnumerateGenericTableWithoutSplayingAvl
0x11223344556ba2b4 RtlInsertElementGenericTableFull
0x11223344557e93e8 VfPnpVerifyNewRequest
0x11223344557bb41c CmpSearchForOpenSubKeys
0x11223344556e0750 IovpCancelCount
0x11223344556e9f5c ObpSymbolicLinkObjectType
0x11223344556b42ec PopRunDownSourceTargetList
0x11223344557a13da FindFileInfo
0x1122334455684b86 IopGetDevicePDO
0x11223344556e3668 KiGenericCallDpcMutex
0x1122334455800084 IoLoaderArcBootDeviceName
0x1122334455760964 RtlUpcaseUnicodeToOemN
0x11223344556e8918 MiDeadPteTrackerSListHead
0x11223344557e86f8 VfGenericVerifyFinalIrpStack
0x11223344556e43e4 MiSpecialPoolLastPte
0x11223344556cc530 IovUtilRelateDeviceObjects
0x11223344556bf236 SeMakeAnonymousLogonTokenNoEveryone
0x11223344557cfb8e xHalSetWakeAlarm
0x1122334455801690 IopQueryOperationAccess
0x112233445582586c MiFindInitializationCode
0x112233445577e790 SeCheckPrivilegedObject
0x11223344556fb5a4 IopCreateFile
0x11223344556aa3da MmAttachSession
0x11223344557f2e26 HdlspAddLogEntry
0x11223344557796b8 SeAuditProcessExit
0x112233445569195e KeSetAutoAlignmentProcess
0x11223344556e8f78 MmSizeOfNonPagedPoolInBytes
0x1122334455676850 CcWorkerThread
0x11223344556f942e IoCreateStreamFileObjectLite
0x1122334455800d5c SeEnableDelegationPrivilege
0x11223344556c892f strtol
0x11223344556ecd84 PoolTrackTableSize
0x112233445575ea72 RawFileSystemControl
0x11223344556eb840 ExpAdditionalDelayedWorkerThreads
0x11223344556db4a4 CcDeferredWriteSpinLock
0x11223344557cd186 OpcodeInvalid
0x11223344557929c2 WmipFindSysIdTable
0x11223344556bdd06 RtlDispatchException
0x11223344556dd208 ObSystemDeviceMap
0x112233445583b6be IopCacheNetbiosNameForIpAddress
0x11223344556c8dad _fload_withFB
0x11223344556e0760 CcLostDelayedWrites
0x11223344557cc5f8 PiInitializeDevice
0x11223344556731b4 CcUnpinRepinnedBcb
0x11223344556abd4a MiCheckSingleFilter
0x11223344557652cc RtlpDestroyUnCommittedRange
0x1122334455679d54 FsRtlGetNextFileLock
0x1122334455831e76 ExpWorkerInitialization
0x1122334455792252 WmipRemoveDataSourceByDS
0x112233445574d756 PoShutdownBugCheck
0x11223344556f98e4 IoDisconnectInterrupt
0x1122334455803028 WmiEventLoggerGuid
0x112233445569e55a MiDeletePteRange
0x11223344556dbd88 TunnelLookasideList
0x11223344556c7dd8 strncat
0x11223344556ef3a8 CcZeroData
0x112233445568b7e6 KeInitializeQueue
0x11223344556c560e ExpTimerApcRoutine
0x11223344556e8f7c MmTrackLockedPages
0x11223344556a9f78 MiSessionCommitPageTables
0x1122334455788e90 WmipSendEnableDisableRequest
0x11223344556699b0 MMSECT
0x1122334455834f4e CmpIsLoadType
0x11223344557ddb46 ExGetNextWakeTime
0x11223344556f91a4 IoCheckShareAccess
0x11223344556e4408 MmSpecialPoolRejected
0x1122334455765404 RtlpFindAndCommitPages
0x1122334455778dae SepAdtCloseObjectAuditAlarm
0x11223344556bab12 RtlInsertElementGenericTableAvl
0x1122334455801270 CmRegistryMachineHardwareDeviceMapName
0x11223344556e8ea8 MmSectionCommitMutex
0x11223344556fc9aa NtQueryFullAttributesFile
0x11223344556dac0c ViTrimSpaces
0x11223344556db120 ViVerifyMode
0x11223344557a25af SdbpVerQueryValue
0x1122334455837f6a CmpMatchPointerRule
0x11223344557ec714 ObvUtilStartObRefMonitoring
0x11223344556e07a0 CcPinReadNoWaitMiss
0x112233445568ffb0 NtCallbackReturn
0x11223344558002b0 PsDefaultThreadLocaleId
0x11223344556ce7bc CommonDispatchException
0x112233445579f99e SdbpReadMappedData
0x1122334455709540 IopDeleteFile
0x112233445574c600 PoQueueShutdownWorkItem
0x11223344556b5534 PopProcessorInformation
0x1122334455813cd8 ViMessageClassFailDriverLogo
0x11223344556ea968 PsJobType
0x112233445575b3aa NtResumeThread
0x1122334455803068 HardFaultGuid
0x11223344557d7a56 PopIOWrite
0x1122334455748bea ObKillProcess
0x11223344558000f0 IopSetupNotifyData
0x1122334455675ab4 CcSetFileSizes
0x11223344557a5614 CcPfIsVolumeMounted
0x11223344557ebdd0 IovUtilInit
0x11223344557256e4 IopAllocateRelationList
0x11223344558392e6 CmpSearchInfSection
0x11223344556e44a8 MmPoolFailures
0x112233445568b630 KeInitializeMutex
0x11223344558000fc IopDeferredRegistrationList
0x112233445570430e IopRaiseInformationalHardError
0x11223344556f8ca2 IoCreateDisk
0x11223344556e072c CmpSystemHiveHysteresisCallback
0x11223344556e4280 MxPfnAllocation
0x112233445573fb38 MiSessionRemoveImage
0x11223344557d1b0e MmGetPhysicalMemoryRanges
0x11223344556dc288 FsRtlLockTreeNodeLookasideList
0x11223344556dcbb8 Kd_RTLTHREADPOOL_Mask
0x112233445572e26c MiInsertBasedSection
0x112233445581dd0e PnPBiosIoResourceListToCmResourceList
0x11223344556db540 KiMaximumDpcQueueDepth
0x112233445568e6c4 ZwCancelDeviceWakeupRequest
0x11223344558012d0 CmRegistryMachineSystemCurrentControlSetControlBootLog
0x1122334455802450 PopApmActiveFlag
0x11223344557a3ee4 ArbFindSuitableRange
0x112233445574ebde NtRequestDeviceWakeup
0x112233445568b74c KeRundownQueue
0x1122334455802378 PopCompositeBatteryName
0x1122334455683cac IopCheckHardErrorEmpty
0x11223344556da854 MmWorkingSetSizeExpansion
0x1122334455807d48 InitialSP
0x11223344556eb208 WmipSMMutex
0x11223344556e8a88 MiVerifyAllDrivers
0x112233445574277a ObpChargeQuotaForObject
0x11223344556ea8e8 PspActiveProcessMutex
0x112233445571cbea IopResourceRequirementsListToReqList
0x11223344558002dc PspSystemDll
0x11223344557edf24 ObPerfHandleTableWalk
0x11223344558027a0 RtlDecompressFragmentProcs
0x11223344556e3488 KiAbiosGdt
0x112233445567f77a IopStartNextPacket
0x112233445580050c NlsAnsiToUnicodeData
0x11223344556c6c9e atoi
0x112233445567f294 IoPageRead
0x11223344556ca5b8 __ascii_memicmp
0x112233445568c608 KeTerminateThread
0x1122334455727516 KeInitializeEventPair
0x11223344557dee3c VerifierKeAcquireSpinLockAtDpcLevel
0x11223344556e2348 IopRootBusNumberArbiter
0x1122334455668eac GUID_DEVINTERFACE_STORAGEPORT
0x11223344556c6c19 atol
0x11223344557c149c HvWriteHive
0x11223344556929b4 NtYieldExecution
0x112233445576b9f2 RtlpCompareAces
0x11223344556689cc GUID_IO_DEVICE_BECOMING_READY
0x1122334455667e68 _imp__HalAllocateCrashDumpRegisters
0x1122334455800b78 SeBatchSid
0x11223344557de7da VerifierUnlockPages
0x112233445568498a IopErrorLogRequeueEntry
0x11223344557ccf7e PpPagePathAssign
0x11223344556b312a ObDereferenceObjectEx
0x11223344557deb6a ViCancelPoolAllocation
0x11223344557ea4fc VfUtilIsMemoryRangeReadable
0x11223344556f936c IopCreateVpb
0x112233445568d4e2 xKdCheckPowerButton
0x11223344556b86e0 WRITE_REGISTER_USHORT
0x11223344557df368 ViInsertVerifierEntry
0x11223344556d2d50 RtlLargeIntegerSubtract
0x1122334455801308 CmpMachineHiveList
0x1122334455676fa6 ReferenceVacbLevel
0x112233445578299a VdmpStartExecution
0x11223344556f4ff8 FsRtlNotifyCleanup
0x1122334455750cca PopDispatchAcDcCallback
0x11223344556807be IoAsynchronousPageWrite
0x11223344556eb08c ViSearchedNodesLimitFromRegistry
0x1122334455757ba8 NtCreateProcess
0x112233445568e520 ZwAcceptConnectPort
0x11223344557ba884 CmpFlushNotifiesOnKeyBodyList
0x112233445568ae10 KiI386CallAbios
0x11223344556db5c8 __security_cookie
0x11223344557cb3d6 PiQueueDeviceRequest
0x11223344557d8b0c PopEndCompressedPageSet
0x1122334455715de4 PipGetRegistrySecurityWithFallback
0x1122334455750822 PopCalculatePerfIncreaseDecreaseTime
0x11223344556c1f8c WmiTraceMessage
0x112233445574be48 ObSetDirectoryDeviceMap
0x11223344556db520 IopLookasideIrpFloat
0x11223344556eb0d0 WmipSysId1394Count
0x11223344557e4f0a VerifierIoFreeIrp
0x112233445572d696 MiUnmapSinglePage
0x112233445573c6c8 NtLockVirtualMemory
0x112233445568d4e2 __security_check_cookie
0x1122334455803768 CmpRegistryMachineSystemString
0x112233445577a0e6 SeAuditingHardLinkEventsWithContext
0x11223344556e07a8 CcPinReadNoWait
0x11223344556ea028 PopUnlockComplete
0x11223344556e4298 MiAvailablePagesEventLowSets
0x11223344556885b6 KeDeregisterBugCheckCallback
0x11223344556d2e6c __InterlockedCompareExchange
0x11223344556db1a8 WmipDSChunkInfo
0x1122334455775e9e SepUpdateParentTypeList
0x112233445569ae4e MiExtendPagingFileMaximum
0x112233445566cc88 ExpProtectedPoolBlockMessage
0x1122334455668abc GUID_TARGET_DEVICE_REMOVE_COMPLETE
0x11223344557baf26 CmpInitializeCache
0x11223344556b986a RtlFindLeastSignificantBit
0x112233445567b956 FsRtlAllocatePoolWithQuota
0x11223344556e26b8 PiEnumerationLock
0x11223344556dd188 ObpCreateInfoLookasideList
0x1122334455834fb4 CmpDoSort
0x11223344556e90a0 MmDynamicPfn
0x11223344556dac74 MmUserProtectionToMask2
0x11223344557a77aa CcPfPrefetchScenario
0x1122334455722054 IopTranslatorHandlerCm
0x11223344556f78e8 FstubGetDiskGeometry
0x11223344557c9132 NtCreateDebugObject
0x112233445576e6a8 RtlDecompressFragment
0x1122334455676b20 CcPrefillVacbLevelZone
0x11223344556d10b4 Dr_kit11_a
0x11223344557edef4 ObPerfDumpHandleEntry
0x11223344557c0226 CmpSyncKeyValues
0x1122334455667de0 _imp__HalReturnToFirmware
0x11223344557a0acd SdbpGetFileDirectoryAttributesNT
0x112233445583857a CmpFindRSDTTable
0x11223344556e4428 MiSpecialPoolExtra
0x112233445567f2f6 IopCheckHardErrorsDisabled
0x1122334455674b5c CcCancelMmWaitForUninitializeCacheMap
0x11223344557820ec VdmFetchBop1
0x112233445578fd96 WmipISCleanup
0x112233445583963e CmpParseInfBuffer
0x11223344556e8cf0 MmFreePagingSpaceLow
0x112233445568c7d4 KiSegSsFromTrapFrame
0x1122334455801964 IopWstrReservedResources
0x11223344557be854 HvpDelistFreeCell
0x1122334455813d08 ViMessageIoVerifierOverrides
0x1122334455680218 IoIsFileOriginRemote
0x1122334455782020 VdmFetchBop4
0x112233445579ca3c NtDeleteAtom
0x112233445567b572 FsRtlFastUnlockAll
0x1122334455762882 RtlInsertUnicodePrefix
0x112233445574ade8 ObQueryNameString
0x11223344556e4620 MmProductType
0x1122334455767510 RtlFreeHeapSlowly
0x112233445568f2a4 ZwQuerySystemInformation
0x11223344556dcb44 Kd_TAPE_Mask
0x11223344556dac98 MiMaximumWslesPerSweep
0x11223344557ecb32 WmipIsLoggerOn
0x11223344557ba8b0 CmpComputeKcbConvKey
0x1122334455732370 MiCaptureImageExceptionValues
0x11223344556dafa8 ViDmaVerifierTag
0x11223344556efa94 CcMapData
0x112233445578a71a WmipDeleteMethod
0x11223344557deed0 VerifierExTryToAcquireFastMutex
0x11223344556dcacc Kd_VIDEO_Mask
0x11223344556db624 __decimal_point
0x11223344556fc670 NtFlushBuffersFile
0x11223344556bae5e RtlpVerGetConditionMask
0x11223344556eb7a8 ExSemaphoreObjectType
0x112233445566853c GUID_DEVCLASS_ENUM1394
0x11223344557d006c IoGetPoNotifyParent
0x11223344556eb660 PerfInfoSampledProfileCaching
0x11223344556dace8 ValidKernelPde
0x11223344557055c0 IopTrackLink
0x1122334455830982 ExpInitializeCallbacks
0x112233445577b4f2 SeOpenObjectAuditAlarm
0x112233445570ad82 IoForwardIrpSynchronously
0x11223344556c308a ExAcquireSharedStarveExclusive
0x112233445579d2d8 NtQueryBootEntryOrder
0x11223344556dace0 ValidKernelPte
0x11223344556c009e VF_FIND_BUFFER
0x11223344556e4638 MmSystemPageDirectory
0x11223344557e55b4 ViDeadlockAllocateFromPoolCache
0x11223344557e5b24 ViDeadlockMergeNodes
0x112233445567f724 IoSetThreadHardErrorMode
0x112233445567fc7a IoCallDriver
0x11223344556e36a0 KeUserApcDispatcher
0x11223344556c250c PerfInfoLogDpc
0x11223344557ee9ea KdpWriteControlSpace
0x112233445571ae8e IopTranslateAndAdjustReqDesc
0x112233445568b230 KeInsertQueueApc
0x11223344557dd528 ExpShutdownWorkerThreads
0x11223344556e8f60 MmPageAlignedPoolBase
0x1122334455732d3e MiWriteProtectSystemImage
0x11223344557dfe1e VerifierKeLowerIrql
0x1122334455785882 IoWMIAllocateInstanceIds
0x11223344556be194 RtlInitStackTraceDataBaseEx
0x11223344557cd40f OpcodeINB
0x11223344557378b4 MiUnmapViewInSystemSpace
0x112233445583e628 CmTypeName
0x11223344556dbd10 CcQueueThrottle
0x112233445568f0b0 ZwQueryEvent
0x11223344556ba092 SwapSplayLinks
0x11223344556e25c8 IopRootPortArbiter
0x11223344557bc276 CmpLoadHiveVolatile
0x11223344557e7818 ViBugcheckProcessMessageText
0x1122334455801894 IopWstrBusTranslated
0x11223344556e1b68 IovDriverListHead
0x11223344556f9962 IoFastQueryNetworkAttributes
0x112233445568efc0 ZwPrivilegedServiceAuditAlarm
0x1122334455671e24 CcRepinBcb
0x11223344556dcb00 Kd_SERENUM_Mask
0x11223344556e1ab0 ExPageLockHandle
0x112233445568f240 ZwQuerySecurityObject
0x11223344556eb140 WmipRegistrationSpinLock
0x11223344556f77f8 FstubReadPartitionTableMBR
0x11223344556ab3b8 MiSessionPoolFreed
0x11223344557d3390 MmAdjustWorkingSetSize
0x11223344557c9efe DbgkClearProcessDebugObject
0x11223344557ea324 VfMessageRetrieveErrorData
0x1122334455667dc8 _imp__HalTranslateBusAddress
0x1122334455689fe6 KeWaitForMultipleObjects
0x112233445571145c IopDeviceObjectToDeviceInstance
0x11223344556e4348 MiSystemPteSListHeadLock
0x11223344556e42c4 MiDelayPageFaults
0x11223344557eeebc KdpSearchMemory
0x11223344557687d0 RtlPrefixUnicodeString
0x11223344556dcbe4 KdpTimeSlipEventLock
0x1122334455764ca2 RtlMergeRangeLists
0x11223344556a4cb0 MiDereferenceControlArea
0x11223344556dc388 FsRtlWaitingLockLookasideList
0x112233445566851c GUID_DEVCLASS_DOT4
0x112233445577b2be NtCloseObjectAuditAlarm
0x11223344556a6d7c MiAttachAndLockWorkingSet
0x1122334455668d7c GUID_DEVICE_SURPRISE_REMOVAL
0x11223344556e4574 MiExtendedSubsectionsConvertedToDynamic
0x11223344556db1c4 WmipGEChunkInfo
0x11223344556a9bfa MmZeroPageThread
0x1122334455800bb4 SeAnonymousLogonSid
0x112233445568bf1e KeQueryPriorityThread
0x11223344556c68de _strnicmp
0x11223344556781e6 ExFreeToPagedLookasideList
0x112233445575dee2 NtTerminateJobObject
0x112233445572535a PnPBiosExamineBiosDeviceKey
0x11223344557cd449 OpcodeINW
0x1122334455800034 FsRtlpRedirs
0x11223344556e2134 PbBiosEntryPoint
0x1122334455720384 PiWalkDeviceList
0x11223344556e0844 CcAggressiveZeroCount
0x11223344556e890c MiNonCachedCollisions
0x11223344556b0bcc MiRepointWsleHashIndex
0x11223344557e50ec VfIrpWatermark
0x11223344558001b4 OpcodeDispatchV86
0x112233445572e1ea MmProbeAndLockProcessPages
0x11223344556b817e RawCompletionRoutine
0x11223344556aab84 MiAddRangeToCrashDump
0x11223344556e1f88 IopTimer
0x11223344556a88f2 MiRemoveMappedPtes
0x1122334455776d14 SeAccessCheckByType
0x11223344556d25b4 RtlpInterlockedPushEntrySList
0x1122334455668bac GUID_ACPI_CMOS_INTERFACE_STANDARD
0x11223344556e8be8 MmExpansionLock
0x11223344556b4ac0 PopResetRangeEnum
0x11223344556cd23c KeReleaseSpinLockFromDpcLevel
0x11223344556e427c MxFreeDescriptor
0x11223344556e3568 KiProcessInSwapListHead
0x112233445571f35c PiNotifyUserModeRemoveVetoed
0x11223344556db0c8 `VF_ASSERT_MAX_IRQL_::`3_::enable
0x112233445568ea5c ZwDisplayString
0x11223344556cc6be TriageGetLoaderEntry
0x11223344556f43ee FsRtlIsNotifyOnList
0x112233445570a14a IoSynchronousInvalidateDeviceRelations
0x112233445576235e RtlRemoveUnicodePrefix
0x11223344556bacc6 RtlLookupElementGenericTableAvl
0x1122334455800c90 SepPrimaryDomainAdminSid
0x11223344556be842 RtlpCopyAndNormalizePeHeaderForHash
0x11223344556c1238 ViSwap
0x11223344556c8c94 _rttosnpop
0x1122334455785c20 IoWMIOpenBlock
0x11223344556d7688 KiDoubleFaultStack
0x11223344556c4a20 ExpGetPoolTagInfo
0x11223344556b256e MiCheckForUserStackOverflow
0x112233445567be34 FsRtlAcknowledgeOplockBreak
0x112233445566cbe0 DpcGuid
0x11223344556e47a0 MmPteCodeEnd
0x112233445575f0ea LdrpAccessResourceDataNoMultipleLanguage
0x11223344556c86d3 _SEH_epilog
0x11223344556c3424 ExQueryPoolBlockSize
0x11223344557d955e NtSetSystemPowerState
0x1122334455735ede MiMakeSystemAddressValid
0x11223344557e0366 VerifierAllocatePoolWithTagPriority
0x11223344557a9728 NtSetInformationKey
0x11223344556dbc38 CmpLazyFlushIntervalInSeconds
0x1122334455800ba8 SeAliasSystemOpsSid
0x112233445572b90c NtReadRequestData
0x1122334455684044 IopAllocateReserveIrp
0x11223344557edbd8 PerfInfoSysModuleRunDown
0x11223344556dca6c Kd_NTFS_Mask
0x112233445575bcae PspGetJobFromSet
0x1122334455762d6e RtlMakeSelfRelativeSD
0x11223344557df1a4 VerifierKeReleaseMutex
0x112233445571e72a IopReallocateResources
0x11223344557b2c08 CmpLockRegistry
0x112233445577e860 SeSetSecurityDescriptorInfo
0x11223344557b81ee CmDeleteValueKey
0x112233445582a9a0 MiRemoveModuloPages
0x11223344556f65a4 IoReadPartitionTable
0x11223344556c00ee VF_FIND_DEVICE_INFORMATION
0x112233445575c668 NtQueryInformationJobObject
0x11223344558026f8 PspJobInfoAlign
0x1122334455763278 RtlQueryInformationAcl
0x1122334455793816 ExAcquireCacheAwarePushLockExclusive
0x11223344556e3548 KiProfileListHead
0x11223344556c8e06 _fast_exit
0x11223344556b8364 RtlpBreakWithStatusInstruction
0x1122334455701258 NtSetQuotaInformationFile
0x11223344557bfcd6 CmpInitializeKeyNameString
0x11223344556b5214 PopIdleUpdateIdleHandler
0x11223344556bf476 IsRunningOnXPSP2
0x11223344558010ec ExpLastTimeZoneBias
0x11223344556a4cdc MiReferenceSubsection
0x1122334455781992 SepCheckAcl
0x11223344556ecd88 PoolTrackTable
0x11223344556e43e0 MiSpecialPagesNonPaged
0x112233445567d758 FsRtlPostPagingFileStackOverflow
0x11223344556c8d7d _load_CW
0x112233445572e3ec MmGetFileObjectForSection
0x11223344557f3670 HdlspPutMore
0x112233445566bd10 NormalYearDayToMonth
0x112233445574d0fe PopEnableHiberFile
0x112233445571ac08 IopNeedToReleaseBootResources
0x11223344556f9924 IoEnqueueIrp
0x1122334455800bb8 SeLocalServiceSid
0x11223344557a86a0 CcPfParametersSave
0x11223344556a11aa MiInitializePfnForOtherProcess
0x1122334455810694 KdpSearchEndPageFrame
0x11223344556aa8e2 MiIsAddressRangeValid
0x11223344557636b2 RtlpDestroyHandleTableForAtomTable
0x11223344556f0354 CcCreateVacbArray
0x11223344557e6770 ViDeadlockAddResource
0x1122334455667e14 _imp__KeRaiseIrqlToSynchLevel
0x11223344556e1f74 IoControllerObjectType
0x11223344556e0874 CcVacbs
0x1122334455680314 IoValidateDeviceIoControlAccess
0x11223344556cff80 V86_kitb_a
0x11223344557b1f22 CmpCmdRenameHive
0x11223344557cdd3d SwitchToHandlerStack
0x1122334455678d94 FsRtlUninitializeLargeMcb
0x11223344556af744 MiInsertPageInFreeList
0x112233445575547e PsReferencePrimaryToken
0x112233445568f4c0 ZwRequestWaitReplyPort
0x112233445568ac26 KeI386FlatToGdtSelector
0x1122334455800d0c SeBackupPrivilege
0x11223344557eff14 KdpReportExceptionStateChange
0x11223344556d037a VdmFixEspEbp
0x11223344556db4b0 NonPagedPoolLock
0x11223344556c3eb8 ExNotifyCallback
0x11223344556db158 WmipMaxKmWnodeEventSize
0x1122334455770a74 RtlpApplyRelocationFixups
0x1122334455764706 RtlFindRange
0x11223344557e8356 VerifierNtWriteFile
0x112233445569092a KiContinuePreviousModeUser
0x1122334455681050 IoDeleteDevice
0x11223344556dadb8 PopIdle0TimeCheck
0x1122334455819e6a PipInsertDriverList
0x112233445581fa58 IopFileUtilClearAttributes
0x1122334455802734 RtlBaseAceType
0x11223344557e9c94 VfPnpVerifyIrpStackUpward
0x112233445577234e SepAdjustGroups
0x11223344557a0e30 SdbGetStringTagPtr
0x1122334455794cd6 ExSnapShotHandleTables
0x11223344556e8974 MmTransitionSharedPagesPeak
0x11223344556da94c MmSystemProcessWorkingSetMax
0x11223344556ed8c8 Class11Descriptions
0x11223344556e2230 PiProfileDeviceListHead
0x11223344556e41cc MiAddPtesCount
0x11223344557f0646 KdpLowRestoreBreakpoint
0x11223344558013c0 CmpKeyObjectType
0x112233445575c23c PspAddProcessToJob
0x11223344556dcb30 Kd_IMAPI_Mask
0x11223344557ad3d0 CmpCreatePredefined
0x11223344557ce78c OpcodeCLIV86
0x112233445574e5ee PoVolumeDevice
0x11223344557ae9d4 CmpSetGlobalQuotaAllowed
0x112233445569f26c MmAllowWorkingSetExpansion
0x11223344556ca568 _matherr
0x1122334455687ae4 KeReadStateEvent
0x11223344556e183c ReleaseOpsReservePool
0x112233445566cbd0 PowerGuid
0x1122334455801cb0 MiVerifierPoolThunks
0x11223344557ca2de NtRemoveProcessDebug
0x11223344558149b0 FsRtlInitializeLargeMcbs
0x1122334455710a2c PipConcatenateUnicodeStrings
0x112233445583bcdc IopAddRemoteBootValuesToRegistry
0x11223344556d6500 KdComponentTable
0x1122334455800f90 SepLogonSessions
0x1122334455676c00 CcDrainVacbLevelZone
0x11223344556db5e2 _piby2
0x11223344556e9f44 ObpXXX1
0x1122334455773ca6 SeFastFilterToken
0x112233445578aae2 WmipCheckGuidAccess
0x11223344556db0cc `ADD_MAP_REGISTERS_::`6_::enable
0x11223344556cc68c TriageActUpon
0x112233445582f9ca VfGenericInit
0x1122334455695afc MmGetPhysicalAddress
0x1122334455667dc4 _imp__KeStallExecutionProcessor
0x11223344556ea394 PopNotifyEvents
0x11223344556e8f48 MmFirstFreeSystemPte
0x112233445566cb80 HeapGuid
0x11223344556dcaf8 Kd_SCCLIENT_Mask
0x11223344556699c8 MmTwentySeconds
0x1122334455763e64 RtlPinAtomInAtomTable
0x112233445579e73e NtStopProfile
0x1122334455800c94 SeCreateTokenPrivilege
0x11223344556da7e4 KeZeroPage
0x11223344557efb18 KdpSendWaitContinue
0x1122334455802248 ObpDosDevicesShortNameRoot
0x112233445576eadc RtlpSysVolCreateSecurityDescriptor
0x11223344556e2694 IoDeviceNodeTreeSequence
0x11223344557defee VerifierExReleaseFastMutex
0x11223344556e14a8 CmpLoadWorkerEvent
0x11223344556adf44 MiFindEmptyAddressRange
0x11223344556a70c6 MiCheckAndSetSystemTrimCriteria
0x112233445582ed70 SeMakeAnonymousLogonToken
0x11223344557e6ec8 VerifierIoAttachDeviceToDeviceStack
0x11223344556b9138 RtlSetBits
0x11223344556cd258 KiReleaseSpinLock
0x112233445583d2a4 CmInstallUILanguageIdType
0x11223344556d1dcb KiInterruptTemplate2ndDispatch
0x112233445568f574 ZwSaveMergedKeys
0x112233445574e13a PopInitializePowerPolicySimulate
0x112233445571b562 IopQueryConflictFillConflicts
0x112233445579f8c0 LsaDeregisterLogonProcess
0x112233445566be9c NormalYearDaysPrecedingMonth
0x11223344557d3554 MmUnlockPagedPool
0x11223344556f77ca xHalQueryBusSlots
0x11223344558002d4 PspBootAccessToken
0x11223344556d6064 InbvTerminalBkgdColor
0x11223344556cbaa8 CcPfTraceTimerRoutine
0x11223344556e13e8 CmpRegistryLock
0x11223344556814b6 IoCsqRemoveIrp
0x11223344556bed9e ExAllocateLocallyUniqueId
0x1122334455768f2c RtlOemStringToUnicodeString
0x112233445577e898 SeSetSecurityDescriptorInfoEx
0x11223344556e2880 IopGroupTable
0x11223344557bfda2 CmpSyncSubKeysAfterDelete
0x11223344556eb710 ExEventPairObjectType
0x11223344556b6e52 PopBattWakeDpc
0x1122334455750732 PopPolicySystemIdle
0x11223344557b2c36 CmpLockRegistryExclusive
0x1122334455803138 WmipGuidList
0x11223344558013c5 CmFirstTime
0x112233445573580c MmCreatePeb
0x112233445583e618 CmpUnknownBusCount
0x112233445577e556 NtPrivilegeCheck
0x11223344556825c0 IopWritePageToDisk
0x112233445577fad2 SeGetTokenControlInformation
0x11223344556eb248 WmipAnyoneAccessSecurityDescriptor
0x11223344556f29ce FsRtlInitializeMcb
0x11223344556bc4dc RtlIpv4StringToAddressExA
0x11223344556c679d _itow
0x112233445566895c GUID_IO_VOLUME_NAME_CHANGE
0x112233445568755c KeQueryTickCount
0x1122334455828038 MiInitializeCommitment
0x11223344557a06ae SdbTagRefToTagID
0x11223344556d2ebc ExInterlockedAddLargeInteger
0x1122334455800b5c SeCreatorOwnerSid
0x11223344557cbf3e PiControlQueryConflictList
0x11223344556eb188 WmipFastIoDispatch
0x11223344556b13e4 MiLocateAddressInTree
0x11223344556e1b74 IopInitFailCode
0x11223344556aa33a MmGetNextSession
0x11223344556d667c KdComponentTableSize
0x1122334455772f72 SepDuplicateToken
0x11223344557e7548 VfMajorIsNewRequest
0x112233445580114c ExpExpirationDataIoSb
0x11223344556cc678 IovUtilWatermarkIrp
0x11223344557465f0 ObGetObjectSecurity
0x11223344556e42a8 MmAvailablePagesEventHigh
0x11223344557291ce LpcpRequestWaitReplyPort
0x11223344556eb158 WmipDockUndockNotificationEntry
0x112233445574e27c PoInvalidateDevicePowerRelations
0x11223344556ee520 CmpUpdateSignature
0x1122334455720604 PpSetDeviceClassChange
0x112233445568dd3a KiGetCurrentLogicalProcessorInformation
0x112233445568e91c ZwCreateSemaphore
0x1122334455721b4c PiDeviceRegistration
0x11223344557c8bce HvCheckBin
0x11223344556e02ac ExReadyForErrors
0x11223344556c8f79 _flsbuf
0x112233445576f6ac RtlGenerate8dot3Name
0x112233445572ae84 NtQueryInformationPort
0x11223344556b88b8 RtlValidateUnicodeString
0x112233445569c792 MiCheckProtoPtePageState
0x11223344556dbe88 FsRtlFastMutexLookasideList
0x11223344556b507a PopIdleVerifyIdleHandlers
0x1122334455690148 RDTSC
0x11223344556e19c8 Square3
0x112233445578924c WmipDoDisableRequest
0x112233445572815c Ki386CheckDivideByZeroTrap
0x11223344558002b4 PsDefaultUILanguageId
0x11223344557c56e4 HvCloneHive
0x11223344558001b0 ExVdmSegmentNotPresent
0x11223344556fa2a0 IoRegisterLastChanceShutdownNotification
0x112233445568ee1c ZwOpenEventPair
0x11223344556d2fa4 ExInterlockedDecrementLong
0x1122334455745ec6 ObpGetObjectSecurity
0x11223344557d9d26 PopCheckSystemPowerIrpStatus
0x11223344557c9940 DbgkpConvertKernelToUserStateChange
0x11223344556d3058 ExecuteHandler
0x11223344556e04f0 CcPfEnablePrefetcher
0x11223344556cb07c HalFreeCommonBuffer
0x112233445579fca8 SdbCloseDatabaseRead
0x11223344556b7dd8 PsGetCurrentProcessId
0x112233445567e614 InbvRotateGuiBootDisplay
0x11223344557c52de HvpMapFileImageAndBuildMap
0x11223344556cd238 KefReleaseSpinLockFromDpcLevel
0x112233445568ee30 ZwOpenFile
0x11223344556dad4c MmSysPteMinimumFree
0x1122334455737bb2 MmUnmapViewInSystemSpace
0x11223344557938e6 ExInitializePoolDescriptor
0x1122334455734d28 MiResolveImageReferences
0x11223344556f81ea FstubWritePartitionTableEFI
0x11223344556c68b1 _strlwr
0x11223344556a770c MiRemoveMappedView
0x112233445582b19c ObpCreateDosDevicesDirectory
0x11223344556e0888 CcIdleDelayTick
0x1122334455691f32 KeRestoreMtrr
0x11223344556e89f4 ViTrackIrqlQueue
0x1122334455779a8c SeDeleteObjectAuditAlarm
0x11223344556d2adc RtlPrefetchMemoryNonTemporal
0x11223344557e86f8 VfDriverInit
0x112233445581fb0a IopFileUtilRename
0x112233445579d816 NtCreateTimer
0x11223344556dac88 MiAgingShift
0x1122334455781480 SepAuditFailed
0x112233445572c00a LpcpFreeToPortZone
0x112233445578e636 WmipClearObjectFromThreadList
0x11223344557a6ecc CcPfGetPrefetchInstructions
0x11223344556e0848 CcCapturedSystemSize
0x11223344556684bc GUID_DEVCLASS_BATTERY
0x1122334455775f6c SepAddAccessTypeList
0x11223344556f0d72 FsRtlFindInTunnelCache
0x1122334455770fa0 RtlReadSingleHookValidation
0x1122334455668c3c GUID_BUS_TYPE_USBPRINT
0x11223344556841fc IopIncrementDeviceObjectHandleCount
0x112233445575eb34 RawCleanup
0x11223344557edf8e KdEnterDebugger
0x1122334455772012 RtlAcquirePebLock
0x11223344557e9ff8 VfIrpDatabaseEntryDereference
0x11223344556c8698 _SEH_prolog
0x1122334455820284 IDT
0x11223344556d2e60 __InterlockedDecrement
0x112233445568f308 ZwQueryVirtualMemory
0x11223344556773be SetVacb
0x11223344557ce236 OpcodeINSBV86
0x1122334455731e66 MmFlushVirtualMemory
0x11223344556e1b6c ___PchSym_
0x11223344557e8e1e VfGenericVerifyNewIrp
0x112233445568be56 KeDisableApcQueuingThread
0x1122334455678304 FsRtlRegisterFileSystemFilterCallbacks
0x11223344556f77f2 xHalEndOfBoot
0x11223344556c8cff _nan2
0x11223344556d6180 FadingIn
0x11223344556dcb54 Kd_FLOPPY_Mask
0x1122334455814dee InbvIndicateProgress
0x11223344556f9864 IoDeleteSymbolicLink
0x11223344556f3456 FsRtlpRegisterProviderWithMUP
0x11223344556be6c2 RtlpNormalizePeHeaderForIdHash
0x11223344556f1f58 FsRtlIncrementCcFastReadWait
0x11223344556f29b2 FsRtlAcquireToCreateMappedSection
0x112233445572c5de MmRemovePhysicalMemory
0x112233445574d038 PopGetHiberFlags
0x11223344556bd9ce RtlTraceDatabaseDestroy
0x11223344556c2308 IoWMIHandleToInstanceName
0x1122334455732240 NtFlushVirtualMemory
0x112233445575eda0 RawQueryVolumeInformation
0x1122334455704cc2 IopGetDriverNameFromKeyNode
0x11223344556c8df0 _checkTOS_withFB
0x11223344557ebfc0 IovUtilIsWdmStack
0x1122334455688150 KeStackAttachProcess
0x112233445577fa00 SeAssignPrimaryToken
0x1122334455676fd2 CcGetVirtualAddressIfMapped
0x11223344556eb7b4 ExpDebuggerWork
0x11223344556c8287 towupper
0x112233445566cb40 SystemTraceControlGuid
0x11223344557bd204 CmpQuerySecurityDescriptorInfo
0x1122334455676216 CcScheduleLazyWriteScan
0x1122334455669cb8 ValidPdePde
0x11223344556b2174 MiRetrievePageDirectoryFrames
0x112233445567e6ee IoAllocateDriverObjectExtension
0x112233445577db2e SeMarkLogonSessionForTerminationNotification
0x112233445579d938 NtOpenTimer
0x11223344558301d4 WmipDriverEntry
0x11223344557c519a HvpGetLogHeader
0x11223344556b835c DbgUserBreakPoint
0x1122334455800ca4 SeLockMemoryPrivilege
0x11223344556faf08 IoEnumerateRegisteredFiltersList
0x11223344556e338c KiFastSystemCallDisable
0x11223344556d25d4 InterlockedPushListSList
0x112233445567ff9a IoEnumerateDeviceObjectList
0x11223344556cb064 IoFreeAdapterChannel
0x112233445579541c ExpGetHandleInfo
0x1122334455777734 SeAppendPrivileges
0x11223344556d2dc8 ExfInterlockedInsertHeadList
0x1122334455683fe8 IopCallBootDriverReinitializationRoutines
0x1122334455819d08 PipGetDriverTagPriority
0x112233445579f9de SdbpGetMappedData
0x112233445583e784 _IMPORT_DESCRIPTOR_HAL
0x11223344557b42ce CmpFindSubKeyInRoot
0x112233445580275c RtlpIntegerWChars
0x11223344556e46cc MmLowMemoryThreshold
0x1122334455823d92 MmSetPageProtection
0x112233445579d2bc NtEnumerateSystemEnvironmentValuesEx