forked from apple/darwin-xnu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
IOKit.exports
1655 lines (1653 loc) · 60.4 KB
/
IOKit.exports
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
_IOAlignmentToSize
_IOBSDNameMatching
_IOBSDRegistryEntryForDeviceTree
_IOBSDRegistryEntryGetData
_IOBSDRegistryEntryRelease
_IOCreateThread
_IODTFreeLoaderInfo
_IODTGetLoaderInfo
_IODelay
_IOExitThread
_IOFindBSDRoot
_IOFindNameForValue
_IOFindValueForName
_IOFlushProcessorCache
_IOFree
_IOFreeAligned
_IOFreeContiguous
_IOFreePageable
_IOGetTime
_IOIteratePageableMaps
_IOKitBSDInit
_IOLibInit
_IOLockAlloc
_IOLockFree
_IOLockGetMachLock
_IOLockInitWithState
_IOLockLock:_lck_mtx_lock
_IOLockSleep
_IOLockSleepDeadline
_IOLockTryLock:_lck_mtx_try_lock
_IOLockUnlock:_lck_mtx_unlock
_IOLockWakeup
_IOLog
_IOLogv
_IOMalloc
_IOMallocAligned
_IOMallocContiguous
_IOMallocPageable
_IOMappedRead16
_IOMappedRead32
_IOMappedRead64
_IOMappedRead8
_IOMappedWrite16
_IOMappedWrite32
_IOMappedWrite64
_IOMappedWrite8
_IONDRVLibrariesInitialize
_IONetworkNamePrefixMatching
_IOPageableMapForAddress
_IOPause
_IOPrintPlane
_IORWLockAlloc
_IORWLockFree
_IORWLockGetMachLock
_IORWLockRead:_lck_rw_lock_shared
_IORWLockUnlock:_lck_rw_done
_IORWLockWrite:_lck_rw_lock_exclusive
_IORecursiveLockAlloc
_IORecursiveLockAllocWithLockGroup
_IORecursiveLockFree
_IORecursiveLockGetMachLock
_IORecursiveLockHaveLock
_IORecursiveLockLock
_IORecursiveLockSleep
_IORecursiveLockSleepDeadline
_IORecursiveLockTryLock
_IORecursiveLockUnlock
_IORecursiveLockWakeup
_IOSetProcessorCacheMode
_IOSimpleLockAlloc
_IOSimpleLockFree
_IOSimpleLockGetMachLock
_IOSimpleLockInit
_IOSimpleLockLock:_lck_spin_lock
_IOSimpleLockTryLock:_lck_spin_try_lock
_IOSimpleLockUnlock:_lck_spin_unlock
_IOSizeToAlignment
_IOSleep
_IOSleepWithLeeway
_IOSystemShutdownNotification
_IOZeroTvalspec
_OSKernelStackRemaining
_OSPrintMemory
_PEGetGMTTimeOfDay
_PEGetMachineName
_PEGetModelName
_PEGetPlatformEpoch
_PEHaltRestart
_PESavePanicInfo
_PESetGMTTimeOfDay
_PE_call_timebase_callback
_PE_cpu_halt
_PE_cpu_machine_init
_PE_cpu_machine_quiesce
_PE_cpu_signal
_PE_cpu_start
_PE_enter_debugger
_PE_halt_restart
_PE_parse_boot_argn
_PE_poll_input
_StartIOKit
__Z17IODTMapInterruptsP15IORegistryEntry
__Z17IODeviceTreeAllocPv
__Z17IOServiceOrderingPK15OSMetaClassBaseS1_Pv
__Z18IODTCompareNubNamePK15IORegistryEntryP8OSStringPS3_
__Z19printDictionaryKeysP12OSDictionaryPc
__Z20IODTMatchNubWithKeysP15IORegistryEntryPKc
__Z21IODTResolveAddressingP15IORegistryEntryPKcP14IODeviceMemory
__Z27IODTInterruptControllerNameP15IORegistryEntry
__ZN10IOMachPort10gMetaClassE
__ZN10IOMachPort10superClassE
__ZN10IOMachPort11dictForTypeEj
__ZN10IOMachPort13portForObjectEP8OSObjectj
__ZN10IOMachPort14setHoldDestroyEP8OSObjectj
__ZN10IOMachPort20makeSendRightForTaskEP4taskP8OSObjectj
__ZN10IOMachPort20releasePortForObjectEP8OSObjectj
__ZN10IOMachPort22noMoreSendersForObjectEP8OSObjectjPj
__ZN10IOMachPort4freeEv
__ZN10IOMachPort9MetaClassC1Ev
__ZN10IOMachPort9MetaClassC2Ev
__ZN10IOMachPort9metaClassE
__ZN10IOMachPortC1EPK11OSMetaClass
__ZN10IOMachPortC1Ev
__ZN10IOMachPortC2EPK11OSMetaClass
__ZN10IOMachPortC2Ev
__ZN10IOMachPortD0Ev
__ZN10IOMachPortD2Ev
__ZN10IONotifier10gMetaClassE
__ZN10IONotifier10superClassE
__ZN10IONotifier9MetaClassC1Ev
__ZN10IONotifier9MetaClassC2Ev
__ZN10IONotifier9metaClassE
__ZN10IONotifierC2EPK11OSMetaClass
__ZN10IONotifierD2Ev
__ZN10IOWorkLoop10gMetaClassE
__ZN10IOWorkLoop10superClassE
__ZN10IOWorkLoop10threadMainEv
__ZN10IOWorkLoop10wakeupGateEPvb
__ZN10IOWorkLoop12tryCloseGateEv
__ZN10IOWorkLoop13_maintRequestEPvS0_S0_S0_
__ZN10IOWorkLoop14addEventSourceEP13IOEventSource
__ZN10IOWorkLoop15runEventSourcesEv
__ZN10IOWorkLoop17removeEventSourceEP13IOEventSource
__ZN10IOWorkLoop18setMaximumLockTimeEyj
__ZN10IOWorkLoop19signalWorkAvailableEv
__ZN10IOWorkLoop4freeEv
__ZN10IOWorkLoop4initEv
__ZN10IOWorkLoop8openGateEv
__ZN10IOWorkLoop8workLoopEv
__ZN10IOWorkLoop9MetaClassC1Ev
__ZN10IOWorkLoop9MetaClassC2Ev
__ZN10IOWorkLoop9closeGateEv
__ZN10IOWorkLoop9metaClassE
__ZN10IOWorkLoop9runActionEPFiP8OSObjectPvS2_S2_S2_ES1_S2_S2_S2_S2_
__ZN10IOWorkLoopC1EPK11OSMetaClass
__ZN10IOWorkLoopC1Ev
__ZN10IOWorkLoopC2EPK11OSMetaClass
__ZN10IOWorkLoopC2Ev
__ZN10IOWorkLoopD0Ev
__ZN10IOWorkLoopD2Ev
__ZN11IOCatalogue10addDriversEP7OSArrayb
__ZN11IOCatalogue10gMetaClassE
__ZN11IOCatalogue10initializeEv
__ZN11IOCatalogue10superClassE
__ZN11IOCatalogue13removeDriversEP12OSDictionaryb
__ZN11IOCatalogue13startMatchingEP12OSDictionary
__ZN11IOCatalogue15moduleHasLoadedEP8OSString
__ZN11IOCatalogue15moduleHasLoadedEPKc
__ZN11IOCatalogue16terminateDriversEP12OSDictionary
__ZN11IOCatalogue25terminateDriversForModuleEP8OSStringb
__ZN11IOCatalogue25terminateDriversForModuleEPKcb
__ZN11IOCatalogue4freeEv
__ZN11IOCatalogue4initEP7OSArray
__ZN11IOCatalogue5resetEv
__ZN11IOCatalogue9MetaClassC1Ev
__ZN11IOCatalogue9MetaClassC2Ev
__ZN11IOCatalogue9metaClassE
__ZN11IOCatalogueC1EPK11OSMetaClass
__ZN11IOCatalogueC1Ev
__ZN11IOCatalogueC2EPK11OSMetaClass
__ZN11IOCatalogueC2Ev
__ZN11IOCatalogueD0Ev
__ZN11IOCatalogueD2Ev
__ZN11IODataQueue10gMetaClassE
__ZN11IODataQueue10superClassE
__ZN11IODataQueue19getMemoryDescriptorEv
__ZN11IODataQueue19setNotificationPortEP8ipc_port
__ZN11IODataQueue29sendDataAvailableNotificationEv
__ZN11IODataQueue4freeEv
__ZN11IODataQueue9MetaClassC1Ev
__ZN11IODataQueue9MetaClassC2Ev
__ZN11IODataQueue9metaClassE
__ZN11IODataQueueC1EPK11OSMetaClass
__ZN11IODataQueueC1Ev
__ZN11IODataQueueC2EPK11OSMetaClass
__ZN11IODataQueueC2Ev
__ZN11IODataQueueD0Ev
__ZN11IODataQueueD2Ev
__ZN11IOMemoryMap10gMetaClassE
__ZN11IOMemoryMap10superClassE
__ZN11IOMemoryMap13getMapOptionsEv
__ZN11IOMemoryMap14getAddressTaskEv
__ZN11IOMemoryMap17getVirtualAddressEv
__ZN11IOMemoryMap18getPhysicalAddressEv
__ZN11IOMemoryMap19getMemoryDescriptorEv
__ZN11IOMemoryMap5unmapEv
__ZN11IOMemoryMap9MetaClassC1Ev
__ZN11IOMemoryMap9MetaClassC2Ev
__ZN11IOMemoryMap9getLengthEv
__ZN11IOMemoryMap9metaClassE
__ZN11IOMemoryMapC1EPK11OSMetaClass
__ZN11IOMemoryMapC1Ev
__ZN11IOMemoryMapC2EPK11OSMetaClass
__ZN11IOMemoryMapC2Ev
__ZN11IOMemoryMapD0Ev
__ZN11IOMemoryMapD2Ev
__ZN11IOResources10gMetaClassE
__ZN11IOResources10superClassE
__ZN11IOResources13setPropertiesEP8OSObject
__ZN11IOResources18matchPropertyTableEP12OSDictionary
__ZN11IOResources9MetaClassC1Ev
__ZN11IOResources9MetaClassC2Ev
__ZN11IOResources9metaClassE
__ZN11IOResources9resourcesEv
__ZN11IOResourcesC1EPK11OSMetaClass
__ZN11IOResourcesC1Ev
__ZN11IOResourcesC2EPK11OSMetaClass
__ZN11IOResourcesC2Ev
__ZN11IOResourcesD0Ev
__ZN11IOResourcesD2Ev
__ZN12IODMACommand10gMetaClassE
__ZN12IODMACommand10superClassE
__ZN12IODMACommand10withRefConEPv
__ZN12IODMACommand10writeBytesEyPKvy
__ZN12IODMACommand12cloneCommandEPv
__ZN12IODMACommand12getAlignmentEv
__ZN12IODMACommand14initWithRefConEPv
__ZN12IODMACommand17getNumAddressBitsEv
__ZN12IODMACommand18getAlignmentLengthEv
__ZN12IODMACommand19setMemoryDescriptorEPK18IOMemoryDescriptorb
__ZN12IODMACommand21clearMemoryDescriptorEb
__ZNK12IODMACommand21getIOMemoryDescriptorEv
__ZN12IODMACommand26getPreparedOffsetAndLengthEPyS0_
__ZN12IODMACommand28getAlignmentInternalSegmentsEv
__ZN12IODMACommand4freeEv
__ZN12IODMACommand7prepareEyybb
__ZN12IODMACommand8completeEbb
__ZN12IODMACommand9MetaClassC1Ev
__ZN12IODMACommand9MetaClassC2Ev
__ZN12IODMACommand9metaClassE
__ZN12IODMACommand9readBytesEyPvy
__ZN12IODMACommandC1EPK11OSMetaClass
__ZN12IODMACommandC1Ev
__ZN12IODMACommandC2EPK11OSMetaClass
__ZN12IODMACommandC2Ev
__ZN12IODMACommandD0Ev
__ZN12IODMACommandD2Ev
__ZN12IOPMinformee10gMetaClassE
__ZN12IOPMinformee10initializeEP9IOService
__ZN12IOPMinformee10superClassE
__ZN12IOPMinformee4freeEv
__ZN12IOPMinformee9MetaClassC1Ev
__ZN12IOPMinformee9MetaClassC2Ev
__ZN12IOPMinformee9metaClassE
__ZN12IOPMinformeeC1EPK11OSMetaClass
__ZN12IOPMinformeeC1Ev
__ZN12IOPMinformeeC2EPK11OSMetaClass
__ZN12IOPMinformeeC2Ev
__ZN12IOPMinformeeD0Ev
__ZN12IOPMinformeeD2Ev
__ZN12IORootParent10dozeSystemEv
__ZN12IORootParent10gMetaClassE
__ZN12IORootParent10superClassE
__ZN12IORootParent10wakeSystemEv
__ZN12IORootParent11sleepSystemEv
__ZN12IORootParent11sleepToDozeEv
__ZN12IORootParent13restartSystemEv
__ZN12IORootParent14shutDownSystemEv
__ZN12IORootParent5startEP9IOService
__ZN12IORootParent9MetaClassC1Ev
__ZN12IORootParent9MetaClassC2Ev
__ZN12IORootParent9metaClassE
__ZN12IORootParentC1EPK11OSMetaClass
__ZN12IORootParentC1Ev
__ZN12IORootParentC2EPK11OSMetaClass
__ZN12IORootParentC2Ev
__ZN12IORootParentD0Ev
__ZN12IORootParentD2Ev
__ZN12IOUserClient10clientDiedEv
__ZN12IOUserClient10gMetaClassE
__ZN12IOUserClient10getServiceEv
__ZN12IOUserClient10initializeEv
__ZN12IOUserClient10superClassE
__ZN12IOUserClient11clientCloseEv
__ZN12IOUserClient13connectClientEPS_
__ZN12IOUserClient14externalMethodEjP25IOExternalMethodArgumentsP24IOExternalMethodDispatchP8OSObjectPv
__ZN12IOUserClient17setAsyncReferenceEPjP8ipc_portPvS3_
__ZN12IOUserClient18clientHasPrivilegeEPvPKc
__ZN12IOUserClient20exportObjectToClientEP4taskP8OSObjectPS3_
__ZN12IOUserClient21destroyUserReferencesEP8OSObject
__ZN12IOUserClient21copyClientEntitlementEP4taskPKc
__ZN12IOUserClient22clientHasAuthorizationEP4taskP9IOService
__ZN12IOUserClient23releaseAsyncReference64EPy
__ZN12IOUserClient23releaseNotificationPortEP8ipc_port
__ZN12IOUserClient26removeMappingForDescriptorEP18IOMemoryDescriptor
__ZN12IOUserClient4freeEv
__ZN12IOUserClient4initEP12OSDictionary
__ZN12IOUserClient4initEv
__ZN12IOUserClient9MetaClassC1Ev
__ZN12IOUserClient9MetaClassC2Ev
__ZN12IOUserClient9metaClassE
__ZN12IOUserClientC1EPK11OSMetaClass
__ZN12IOUserClientC2EPK11OSMetaClass
__ZN12IOUserClientD0Ev
__ZN12IOUserClientD2Ev
__ZN13IOCommandGate10gMetaClassE
__ZN13IOCommandGate10runCommandEPvS0_S0_S0_
__ZN13IOCommandGate10superClassE
__ZN13IOCommandGate11commandGateEP8OSObjectPFiS1_PvS2_S2_S2_E
__ZN13IOCommandGate11setWorkLoopEP10IOWorkLoop
__ZN13IOCommandGate13attemptActionEPFiP8OSObjectPvS2_S2_S2_ES2_S2_S2_S2_
__ZN13IOCommandGate13commandWakeupEPvb
__ZN13IOCommandGate14attemptCommandEPvS0_S0_S0_
__ZN13IOCommandGate4freeEv
__ZN13IOCommandGate4initEP8OSObjectPFiS1_PvS2_S2_S2_E
__ZN13IOCommandGate6enableEv
__ZN13IOCommandGate7disableEv
__ZN13IOCommandGate9MetaClassC1Ev
__ZN13IOCommandGate9MetaClassC2Ev
__ZN13IOCommandGate9metaClassE
__ZN13IOCommandGate9runActionEPFiP8OSObjectPvS2_S2_S2_ES2_S2_S2_S2_
__ZN13IOCommandGateC1EPK11OSMetaClass
__ZN13IOCommandGateC1Ev
__ZN13IOCommandGateC2EPK11OSMetaClass
__ZN13IOCommandGateC2Ev
__ZN13IOCommandGateD0Ev
__ZN13IOCommandGateD2Ev
__ZN13IOCommandPool10gMetaClassE
__ZN13IOCommandPool10getCommandEb
__ZN13IOCommandPool10superClassE
__ZN13IOCommandPool12withWorkLoopEP10IOWorkLoop
__ZN13IOCommandPool13returnCommandEP9IOCommand
__ZN13IOCommandPool15gatedGetCommandEPP9IOCommandb
__ZN13IOCommandPool16initWithWorkLoopEP10IOWorkLoop
__ZN13IOCommandPool18gatedReturnCommandEP9IOCommand
__ZN13IOCommandPool4freeEv
__ZN13IOCommandPool9MetaClassC1Ev
__ZN13IOCommandPool9MetaClassC2Ev
__ZN13IOCommandPool9metaClassE
__ZN13IOCommandPoolC1EPK11OSMetaClass
__ZN13IOCommandPoolC1Ev
__ZN13IOCommandPoolC2EPK11OSMetaClass
__ZN13IOCommandPoolC2Ev
__ZN13IOCommandPoolD0Ev
__ZN13IOCommandPoolD2Ev
__ZN13IOEventSource10gMetaClassE
__ZN13IOEventSource10superClassE
__ZN13IOEventSource10wakeupGateEPvb
__ZN13IOEventSource11setWorkLoopEP10IOWorkLoop
__ZN13IOEventSource12checkForWorkEv
__ZN13IOEventSource12tryCloseGateEv
__ZN13IOEventSource19signalWorkAvailableEv
__ZN13IOEventSource4freeEv
__ZN13IOEventSource4initEP8OSObjectPFvS1_zE
__ZN13IOEventSource6enableEv
__ZN13IOEventSource7disableEv
__ZN13IOEventSource7setNextEPS_
__ZN13IOEventSource8openGateEv
__ZN13IOEventSource9MetaClassC1Ev
__ZN13IOEventSource9MetaClassC2Ev
__ZN13IOEventSource9closeGateEv
__ZN13IOEventSource9metaClassE
__ZN13IOEventSource9setActionEPFvP8OSObjectzE
__ZN13IOEventSourceC1EPK11OSMetaClass
__ZN13IOEventSourceC2EPK11OSMetaClass
__ZN13IOEventSourceD0Ev
__ZN13IOEventSourceD2Ev
__ZN13_IOServiceJob10gMetaClassE
__ZN13_IOServiceJob10pingConfigEPS_
__ZN13_IOServiceJob10superClassE
__ZN13_IOServiceJob9MetaClassC1Ev
__ZN13_IOServiceJob9MetaClassC2Ev
__ZN13_IOServiceJob9metaClassE
__ZN13_IOServiceJobC1EPK11OSMetaClass
__ZN13_IOServiceJobC1Ev
__ZN13_IOServiceJobC2EPK11OSMetaClass
__ZN13_IOServiceJobC2Ev
__ZN13_IOServiceJobD0Ev
__ZN13_IOServiceJobD2Ev
__ZN14IOMemoryCursor10gMetaClassE
__ZN14IOMemoryCursor10superClassE
__ZN14IOMemoryCursor9MetaClassC1Ev
__ZN14IOMemoryCursor9MetaClassC2Ev
__ZN14IOMemoryCursor9metaClassE
__ZN14IOMemoryCursorC1EPK11OSMetaClass
__ZN14IOMemoryCursorC1Ev
__ZN14IOMemoryCursorC2EPK11OSMetaClass
__ZN14IOMemoryCursorC2Ev
__ZN14IOMemoryCursorD0Ev
__ZN14IOMemoryCursorD2Ev
__ZN14IOPMrootDomain10gMetaClassE
__ZN14IOPMrootDomain10superClassE
__ZN14IOPMrootDomain11sleepSystemEv
__ZN14IOPMrootDomain12tellChangeUpEm
__ZN14IOPMrootDomain12wakeFromDozeEv
__ZN14IOPMrootDomain13askChangeDownEm
__ZN14IOPMrootDomain13copyPMSettingEP8OSSymbol
__ZN14IOPMrootDomain13restartSystemEv
__ZN14IOPMrootDomain13setPropertiesEP8OSObject
__ZN14IOPMrootDomain14publishFeatureEPKc
__ZN14IOPMrootDomain14publishFeatureEPKcjPj
__ZN14IOPMrootDomain14shutdownSystemEv
__ZN14IOPMrootDomain14tellChangeDownEm
__ZN14IOPMrootDomain15powerChangeDoneEm
__ZN14IOPMrootDomain16tellNoChangeDownEm
__ZN14IOPMrootDomain17createPMAssertionEyjP9IOServicePKc
__ZN14IOPMrootDomain17getSleepSupportedEv
__ZN14IOPMrootDomain17setAggressivenessEmm
__ZN14IOPMrootDomain18changePowerStateToEm
__ZN14IOPMrootDomain18releasePMAssertionEy
__ZN14IOPMrootDomain19getPMAssertionLevelEy
__ZN14IOPMrootDomain19setPMAssertionLevelEyj
__ZN14IOPMrootDomain22changePowerStateToPrivEm
__ZN14IOPMrootDomain22removePublishedFeatureEj
__ZN14IOPMrootDomain23requestPowerDomainStateEmP17IOPowerConnectionm
__ZN14IOPMrootDomain24systemPowerEventOccurredEPK8OSSymbolP8OSObject
__ZN14IOPMrootDomain24systemPowerEventOccurredEPK8OSSymbolj
__ZN14IOPMrootDomain27registerPMSettingControllerEPPK8OSSymbolPFiP8OSObjectS2_S5_mES5_mPS5_
__ZN14IOPMrootDomain27registerPMSettingControllerEPPK8OSSymboljPFiP8OSObjectS2_S5_mES5_mPS5_
__ZN14IOPMrootDomain5startEP9IOService
__ZN14IOPMrootDomain9MetaClassC1Ev
__ZN14IOPMrootDomain9MetaClassC2Ev
__ZN14IOPMrootDomain9constructEv
__ZN14IOPMrootDomain9metaClassE
__ZN14IOPMrootDomainC1EPK11OSMetaClass
__ZN14IOPMrootDomainC1Ev
__ZN14IOPMrootDomainC2EPK11OSMetaClass
__ZN14IOPMrootDomainC2Ev
__ZN14IOPMrootDomainD0Ev
__ZN14IOPMrootDomainD2Ev
__ZN15IOConditionLock10gMetaClassE
__ZN15IOConditionLock10superClassE
__ZN15IOConditionLock10unlockWithEi
__ZN15IOConditionLock12setConditionEi
__ZN15IOConditionLock13withConditionEib
__ZN15IOConditionLock17initWithConditionEib
__ZN15IOConditionLock4freeEv
__ZN15IOConditionLock4lockEv
__ZN15IOConditionLock6unlockEv
__ZN15IOConditionLock7tryLockEv
__ZN15IOConditionLock8lockWhenEi
__ZN15IOConditionLock9MetaClassC1Ev
__ZN15IOConditionLock9MetaClassC2Ev
__ZN15IOConditionLock9metaClassE
__ZN15IOConditionLockC1EPK11OSMetaClass
__ZN15IOConditionLockC1Ev
__ZN15IOConditionLockC2EPK11OSMetaClass
__ZN15IOConditionLockC2Ev
__ZN15IOConditionLockD0Ev
__ZN15IOConditionLockD2Ev
__ZN15IODMAController10gMetaClassE
__ZN15IODMAController10superClassE
__ZN15IODMAController18completeDMACommandEP16IODMAEventSourceP12IODMACommand
__ZN15IODMAController5startEP9IOService
__ZN15IODMAController9MetaClassC1Ev
__ZN15IODMAController9MetaClassC2Ev
__ZN15IODMAController9metaClassE
__ZN15IODMAControllerC2EPK11OSMetaClass
__ZN15IODMAControllerD2Ev
__ZN15IOPMPowerSource10cycleCountEv
__ZN15IOPMPowerSource10gMetaClassE
__ZN15IOPMPowerSource10isChargingEv
__ZN15IOPMPowerSource10setVoltageEj
__ZN15IOPMPowerSource10superClassE
__ZN15IOPMPowerSource11adapterInfoEv
__ZN15IOPMPowerSource11atWarnLevelEv
__ZN15IOPMPowerSource11maxCapacityEv
__ZN15IOPMPowerSource11powerSourceEv
__ZN15IOPMPowerSource11setAmperageEi
__ZN15IOPMPowerSource11setLocationEi
__ZN15IOPMPowerSource12manufacturerEv
__ZN15IOPMPowerSource12updateStatusEv
__ZN15IOPMPowerSource13getPSPropertyEPK8OSSymbol
__ZN15IOPMPowerSource13setCycleCountEj
__ZN15IOPMPowerSource13setIsChargingEb
__ZN15IOPMPowerSource13setPSPropertyEPK8OSSymbolP8OSObject
__ZN15IOPMPowerSource13timeRemainingEv
__ZN15IOPMPowerSource14errorConditionEv
__ZN15IOPMPowerSource14setAdapterInfoEi
__ZN15IOPMPowerSource14setAtWarnLevelEb
__ZN15IOPMPowerSource14setMaxCapacityEj
__ZN15IOPMPowerSource15atCriticalLevelEv
__ZN15IOPMPowerSource15currentCapacityEv
__ZN15IOPMPowerSource15setManufacturerEP8OSSymbol
__ZN15IOPMPowerSource16batteryInstalledEv
__ZN15IOPMPowerSource16setTimeRemainingEi
__ZN15IOPMPowerSource17externalConnectedEv
__ZN15IOPMPowerSource17setErrorConditionEP8OSSymbol
__ZN15IOPMPowerSource18setAtCriticalLevelEb
__ZN15IOPMPowerSource18setCurrentCapacityEj
__ZN15IOPMPowerSource19legacyIOBatteryInfoEv
__ZN15IOPMPowerSource19setBatteryInstalledEb
__ZN15IOPMPowerSource20setExternalConnectedEb
__ZN15IOPMPowerSource21externalChargeCapableEv
__ZN15IOPMPowerSource22setLegacyIOBatteryInfoEP12OSDictionary
__ZN15IOPMPowerSource24capacityPercentRemainingEv
__ZN15IOPMPowerSource24setExternalChargeCapableEb
__ZN15IOPMPowerSource4freeEv
__ZN15IOPMPowerSource4initEv
__ZN15IOPMPowerSource5modelEv
__ZN15IOPMPowerSource6serialEv
__ZN15IOPMPowerSource7voltageEv
__ZN15IOPMPowerSource8amperageEv
__ZN15IOPMPowerSource8locationEv
__ZN15IOPMPowerSource8setModelEP8OSSymbol
__ZN15IOPMPowerSource9MetaClassC1Ev
__ZN15IOPMPowerSource9MetaClassC2Ev
__ZN15IOPMPowerSource9metaClassE
__ZN15IOPMPowerSource9setSerialEP8OSSymbol
__ZN15IOPMPowerSourceC1EPK11OSMetaClass
__ZN15IOPMPowerSourceC1Ev
__ZN15IOPMPowerSourceC2EPK11OSMetaClass
__ZN15IOPMPowerSourceC2Ev
__ZN15IOPMPowerSourceD0Ev
__ZN15IOPMPowerSourceD2Ev
__ZN15IORegistryEntry10gMetaClassE
__ZN15IORegistryEntry10initializeEv
__ZN15IORegistryEntry10superClassE
__ZN15IORegistryEntry11dealiasPathEPPKcPK15IORegistryPlane
__ZN15IORegistryEntry11detachAboveEPK15IORegistryPlane
__ZN15IORegistryEntry11setLocationEPK8OSSymbolPK15IORegistryPlane
__ZN15IORegistryEntry11setLocationEPKcPK15IORegistryPlane
__ZN15IORegistryEntry11setPropertyEPK8OSStringP8OSObject
__ZN15IORegistryEntry11setPropertyEPK8OSSymbolP8OSObject
__ZN15IORegistryEntry11setPropertyEPKcP8OSObject
__ZN15IORegistryEntry11setPropertyEPKcPvj
__ZN15IORegistryEntry11setPropertyEPKcS1_
__ZN15IORegistryEntry11setPropertyEPKcb
__ZN15IORegistryEntry11setPropertyEPKcyj
__ZN15IORegistryEntry13attachToChildEPS_PK15IORegistryPlane
__ZN15IORegistryEntry13childFromPathEPKcPK15IORegistryPlanePcPi
__ZN15IORegistryEntry13setPropertiesEP8OSObject
__ZN15IORegistryEntry14attachToParentEPS_PK15IORegistryPlane
__ZN15IORegistryEntry14removePropertyEPK8OSString
__ZN15IORegistryEntry14removePropertyEPK8OSSymbol
__ZN15IORegistryEntry14removePropertyEPKc
__ZN15IORegistryEntry15detachFromChildEPS_PK15IORegistryPlane
__ZN15IORegistryEntry15getRegistryRootEv
__ZN15IORegistryEntry16detachFromParentEPS_PK15IORegistryPlane
__ZN15IORegistryEntry16setPropertyTableEP12OSDictionary
__ZN15IORegistryEntry17matchPathLocationEPKcPK15IORegistryPlane
__ZN15IORegistryEntry17runPropertyActionEPFiP8OSObjectPvS2_S2_S2_ES1_S2_S2_S2_S2_
__ZN15IORegistryEntry18getGenerationCountEv
__ZN15IORegistryEntry18getRegistryEntryIDEv
__ZN15IORegistryEntry21getChildFromComponentEPPKcPK15IORegistryPlane
__ZN15IORegistryEntry4freeEv
__ZN15IORegistryEntry4initEP12OSDictionary
__ZN15IORegistryEntry4initEPS_PK15IORegistryPlane
__ZN15IORegistryEntry7setNameEPK8OSSymbolPK15IORegistryPlane
__ZN15IORegistryEntry7setNameEPKcPK15IORegistryPlane
__ZN15IORegistryEntry8fromPathEPKcPK15IORegistryPlanePcPiPS_
__ZN15IORegistryEntry8getPlaneEPKc
__ZN15IORegistryEntry9MetaClassC1Ev
__ZN15IORegistryEntry9MetaClassC2Ev
__ZN15IORegistryEntry9detachAllEPK15IORegistryPlane
__ZN15IORegistryEntry9makePlaneEPKc
__ZN15IORegistryEntry9metaClassE
__ZN15IORegistryEntryC1EPK11OSMetaClass
__ZN15IORegistryEntryC1Ev
__ZN15IORegistryEntryC2EPK11OSMetaClass
__ZN15IORegistryEntryC2Ev
__ZN15IORegistryEntryD0Ev
__ZN15IORegistryEntryD2Ev
__ZN15IORegistryPlane10gMetaClassE
__ZN15IORegistryPlane10superClassE
__ZN15IORegistryPlane9MetaClassC1Ev
__ZN15IORegistryPlane9MetaClassC2Ev
__ZN15IORegistryPlane9metaClassE
__ZN15IORegistryPlaneC1EPK11OSMetaClass
__ZN15IORegistryPlaneC1Ev
__ZN15IORegistryPlaneC2EPK11OSMetaClass
__ZN15IORegistryPlaneC2Ev
__ZN15IORegistryPlaneD0Ev
__ZN15IORegistryPlaneD2Ev
__ZN16IODMAEventSource10gMetaClassE
__ZN16IODMAEventSource10superClassE
__ZN16IODMAEventSource12checkForWorkEv
__ZN16IODMAEventSource14stopDMACommandEby
__ZN16IODMAEventSource18completeDMACommandEP12IODMACommand
__ZN16IODMAEventSource9MetaClassC1Ev
__ZN16IODMAEventSource9MetaClassC2Ev
__ZN16IODMAEventSource9metaClassE
__ZN16IODMAEventSourceC1EPK11OSMetaClass
__ZN16IODMAEventSourceC1Ev
__ZN16IODMAEventSourceC2EPK11OSMetaClass
__ZN16IODMAEventSourceC2Ev
__ZN16IODMAEventSourceD0Ev
__ZN16IODMAEventSourceD2Ev
__ZN16IOPMinformeeList10gMetaClassE
__ZN16IOPMinformeeList10initializeEv
__ZN16IOPMinformeeList10nextInListEP12IOPMinformee
__ZN16IOPMinformeeList10superClassE
__ZN16IOPMinformeeList11firstInListEv
__ZN16IOPMinformeeList13numberOfItemsEv
__ZN16IOPMinformeeList14removeFromListEP9IOService
__ZN16IOPMinformeeList4freeEv
__ZN16IOPMinformeeList8findItemEP9IOService
__ZN16IOPMinformeeList9MetaClassC1Ev
__ZN16IOPMinformeeList9MetaClassC2Ev
__ZN16IOPMinformeeList9addToListEP12IOPMinformee
__ZN16IOPMinformeeList9metaClassE
__ZN16IOPMinformeeListC1EPK11OSMetaClass
__ZN16IOPMinformeeListC1Ev
__ZN16IOPMinformeeListC2EPK11OSMetaClass
__ZN16IOPMinformeeListC2Ev
__ZN16IOPMinformeeListD0Ev
__ZN16IOPMinformeeListD2Ev
__ZN16IORangeAllocator10gMetaClassE
__ZN16IORangeAllocator10superClassE
__ZN16IORangeAllocator12getFreeCountEv
__ZN16IORangeAllocator16getFragmentCountEv
__ZN16IORangeAllocator19getFragmentCapacityEv
__ZN16IORangeAllocator4freeEv
__ZN16IORangeAllocator9MetaClassC1Ev
__ZN16IORangeAllocator9MetaClassC2Ev
__ZN16IORangeAllocator9metaClassE
__ZN16IORangeAllocatorC1EPK11OSMetaClass
__ZN16IORangeAllocatorC1Ev
__ZN16IORangeAllocatorC2EPK11OSMetaClass
__ZN16IORangeAllocatorC2Ev
__ZN16IORangeAllocatorD0Ev
__ZN16IORangeAllocatorD2Ev
__ZN17IOBigMemoryCursor10gMetaClassE
__ZN17IOBigMemoryCursor10superClassE
__ZN17IOBigMemoryCursor9MetaClassC1Ev
__ZN17IOBigMemoryCursor9MetaClassC2Ev
__ZN17IOBigMemoryCursor9metaClassE
__ZN17IOBigMemoryCursorC1EPK11OSMetaClass
__ZN17IOBigMemoryCursorC1Ev
__ZN17IOBigMemoryCursorC2EPK11OSMetaClass
__ZN17IOBigMemoryCursorC2Ev
__ZN17IOBigMemoryCursorD0Ev
__ZN17IOBigMemoryCursorD2Ev
__ZN17IOPolledInterface10gMetaClassE
__ZN17IOPolledInterfaceC2EPK11OSMetaClass
__ZN17IOPolledInterfaceD2Ev
__ZN17IOPowerConnection10gMetaClassE
__ZN17IOPowerConnection10superClassE
__ZN17IOPowerConnection14getAwaitingAckEv
__ZN17IOPowerConnection14setAwaitingAckEb
__ZN17IOPowerConnection16parentKnowsStateEv
__ZN17IOPowerConnection19setParentKnowsStateEb
__ZN17IOPowerConnection21getDesiredDomainStateEv
__ZN17IOPowerConnection21setDesiredDomainStateEm
__ZN17IOPowerConnection22childHasRequestedPowerEv
__ZN17IOPowerConnection23getPreventIdleSleepFlagEv
__ZN17IOPowerConnection23parentCurrentPowerFlagsEv
__ZN17IOPowerConnection23setPreventIdleSleepFlagEm
__ZN17IOPowerConnection25getPreventSystemSleepFlagEv
__ZN17IOPowerConnection25setChildHasRequestedPowerEv
__ZN17IOPowerConnection25setPreventSystemSleepFlagEm
__ZN17IOPowerConnection26setParentCurrentPowerFlagsEm
__ZN17IOPowerConnection9MetaClassC1Ev
__ZN17IOPowerConnection9MetaClassC2Ev
__ZN17IOPowerConnection9metaClassE
__ZN17IOPowerConnectionC1EPK11OSMetaClass
__ZN17IOPowerConnectionC1Ev
__ZN17IOPowerConnectionC2EPK11OSMetaClass
__ZN17IOPowerConnectionC2Ev
__ZN17IOPowerConnectionD0Ev
__ZN17IOPowerConnectionD2Ev
__ZN17IOSharedDataQueue10gMetaClassE
__ZN17IOSharedDataQueue10superClassE
__ZN17IOSharedDataQueue19getMemoryDescriptorEv
__ZN17IOSharedDataQueue4freeEv
__ZN17IOSharedDataQueue4peekEv
__ZN17IOSharedDataQueue9MetaClassC1Ev
__ZN17IOSharedDataQueue9MetaClassC2Ev
__ZN17IOSharedDataQueue9metaClassE
__ZN17IOSharedDataQueueC1EPK11OSMetaClass
__ZN17IOSharedDataQueueC1Ev
__ZN17IOSharedDataQueueC2EPK11OSMetaClass
__ZN17IOSharedDataQueueC2Ev
__ZN17IOSharedDataQueueD0Ev
__ZN17IOSharedDataQueueD2Ev
__ZN18IOMemoryDescriptor10addMappingEP11IOMemoryMap
__ZN18IOMemoryDescriptor10gMetaClassE
__ZN18IOMemoryDescriptor10initializeEv
__ZN18IOMemoryDescriptor10superClassE
__ZN18IOMemoryDescriptor13removeMappingEP11IOMemoryMap
__ZN18IOMemoryDescriptor16getPreparationIDEv
__ZN18IOMemoryDescriptor18getPhysicalAddressEv
__ZN18IOMemoryDescriptor30withPersistentMemoryDescriptorEPS_
__ZN18IOMemoryDescriptor4freeEv
__ZN18IOMemoryDescriptor6getTagEv
__ZN18IOMemoryDescriptor8getFlagsEv
__ZN18IOMemoryDescriptor8redirectEP4taskb
__ZN18IOMemoryDescriptor9MetaClassC1Ev
__ZN18IOMemoryDescriptor9MetaClassC2Ev
__ZN18IOMemoryDescriptor9metaClassE
__ZN18IOMemoryDescriptorC2EPK11OSMetaClass
__ZN18IOMemoryDescriptorD2Ev
__ZN18IORegistryIterator10enterEntryEPK15IORegistryPlane
__ZN18IORegistryIterator10enterEntryEv
__ZN18IORegistryIterator10gMetaClassE
__ZN18IORegistryIterator10iterateAllEv
__ZN18IORegistryIterator10superClassE
__ZN18IORegistryIterator13getNextObjectEv
__ZN18IORegistryIterator15getCurrentEntryEv
__ZN18IORegistryIterator17getNextObjectFlatEv
__ZN18IORegistryIterator22getNextObjectRecursiveEv
__ZN18IORegistryIterator4freeEv
__ZN18IORegistryIterator5resetEv
__ZN18IORegistryIterator7isValidEv
__ZN18IORegistryIterator9MetaClassC1Ev
__ZN18IORegistryIterator9MetaClassC2Ev
__ZN18IORegistryIterator9exitEntryEv
__ZN18IORegistryIterator9metaClassE
__ZN18IORegistryIteratorC1EPK11OSMetaClass
__ZN18IORegistryIteratorC1Ev
__ZN18IORegistryIteratorC2EPK11OSMetaClass
__ZN18IORegistryIteratorC2Ev
__ZN18IORegistryIteratorD0Ev
__ZN18IORegistryIteratorD2Ev
__ZN18IOTimerEventSource10gMetaClassE
__ZN18IOTimerEventSource10superClassE
__ZN18IOTimerEventSource11setWorkLoopEP10IOWorkLoop
__ZN18IOTimerEventSource12checkForWorkEv
__ZN18IOTimerEventSource13cancelTimeoutEv
__ZN18IOTimerEventSource14setTimeoutFuncEv
__ZN18IOTimerEventSource16timerEventSourceEP8OSObjectPFvS1_PS_E
__ZN18IOTimerEventSource16timerEventSourceEjP8OSObjectPFvS1_PS_E
__ZN18IOTimerEventSource4freeEv
__ZN18IOTimerEventSource4initEP8OSObjectPFvS1_PS_E
__ZN18IOTimerEventSource4initEjP8OSObjectPFvS1_PS_E
__ZN18IOTimerEventSource6enableEv
__ZN18IOTimerEventSource7disableEv
__ZN18IOTimerEventSource7timeoutEPv
__ZN18IOTimerEventSource9MetaClassC1Ev
__ZN18IOTimerEventSource9MetaClassC2Ev
__ZN18IOTimerEventSource9metaClassE
__ZN18IOTimerEventSourceC1EPK11OSMetaClass
__ZN18IOTimerEventSourceC1Ev
__ZN18IOTimerEventSourceC2EPK11OSMetaClass
__ZN18IOTimerEventSourceC2Ev
__ZN18IOTimerEventSourceD0Ev
__ZN18IOTimerEventSourceD2Ev
__ZN18_IOServiceNotifier10gMetaClassE
__ZN18_IOServiceNotifier10superClassE
__ZN18_IOServiceNotifier4freeEv
__ZN18_IOServiceNotifier4waitEv
__ZN18_IOServiceNotifier6enableEb
__ZN18_IOServiceNotifier6removeEv
__ZN18_IOServiceNotifier7disableEv
__ZN18_IOServiceNotifier9MetaClassC1Ev
__ZN18_IOServiceNotifier9MetaClassC2Ev
__ZN18_IOServiceNotifier9metaClassE
__ZN18_IOServiceNotifierC1EPK11OSMetaClass
__ZN18_IOServiceNotifierC1Ev
__ZN18_IOServiceNotifierC2EPK11OSMetaClass
__ZN18_IOServiceNotifierC2Ev
__ZN18_IOServiceNotifierD0Ev
__ZN18_IOServiceNotifierD2Ev
__ZN19IOPMPowerSourceList10gMetaClassE
__ZN19IOPMPowerSourceList10initializeEv
__ZN19IOPMPowerSourceList10nextInListEP15IOPMPowerSource
__ZN19IOPMPowerSourceList10superClassE
__ZN19IOPMPowerSourceList11firstInListEv
__ZN19IOPMPowerSourceList13numberOfItemsEv
__ZN19IOPMPowerSourceList14removeFromListEP15IOPMPowerSource
__ZN19IOPMPowerSourceList4freeEv
__ZN19IOPMPowerSourceList9MetaClassC1Ev
__ZN19IOPMPowerSourceList9MetaClassC2Ev
__ZN19IOPMPowerSourceList9addToListEP15IOPMPowerSource
__ZN19IOPMPowerSourceList9metaClassE
__ZN19IOPMPowerSourceListC1EPK11OSMetaClass
__ZN19IOPMPowerSourceListC1Ev
__ZN19IOPMPowerSourceListC2EPK11OSMetaClass
__ZN19IOPMPowerSourceListC2Ev
__ZN19IOPMPowerSourceListD0Ev
__ZN19IOPMPowerSourceListD2Ev
__ZN20IOLittleMemoryCursor10gMetaClassE
__ZN20IOLittleMemoryCursor10superClassE
__ZN20IOLittleMemoryCursor9MetaClassC1Ev
__ZN20IOLittleMemoryCursor9MetaClassC2Ev
__ZN20IOLittleMemoryCursor9metaClassE
__ZN20IOLittleMemoryCursorC1EPK11OSMetaClass
__ZN20IOLittleMemoryCursorC1Ev
__ZN20IOLittleMemoryCursorC2EPK11OSMetaClass
__ZN20IOLittleMemoryCursorC2Ev
__ZN20IOLittleMemoryCursorD0Ev
__ZN20IOLittleMemoryCursorD2Ev
__ZN20RootDomainUserClient10gMetaClassE
__ZN20RootDomainUserClient10superClassE
__ZN20RootDomainUserClient11clientCloseEv
__ZN20RootDomainUserClient5startEP9IOService
__ZN20RootDomainUserClient9MetaClassC1Ev
__ZN20RootDomainUserClient9MetaClassC2Ev
__ZN20RootDomainUserClient9metaClassE
__ZN20RootDomainUserClientC1EPK11OSMetaClass
__ZN20RootDomainUserClientC1Ev
__ZN20RootDomainUserClientC2EPK11OSMetaClass
__ZN20RootDomainUserClientC2Ev
__ZN20RootDomainUserClientD0Ev
__ZN20RootDomainUserClientD2Ev
__ZN21IOInterruptController10gMetaClassE
__ZN21IOInterruptController10superClassE
__ZN21IOInterruptController14causeInterruptEP9IOServicei
__ZN21IOInterruptController15enableInterruptEP9IOServicei
__ZN21IOInterruptController15handleInterruptEPvP9IOServicei
__ZN21IOInterruptController16disableInterruptEP9IOServicei
__ZN21IOInterruptController16getInterruptTypeEP9IOServiceiPi
__ZN21IOInterruptController17registerInterruptEP9IOServiceiPvPFvS2_S2_S2_iES2_
__ZN21IOInterruptController19unregisterInterruptEP9IOServicei
__ZN21IOInterruptController26getInterruptHandlerAddressEv
__ZN21IOInterruptController26timeStampSpuriousInterruptEv
__ZN21IOInterruptController9MetaClassC1Ev
__ZN21IOInterruptController9MetaClassC2Ev
__ZN21IOInterruptController9metaClassE
__ZN21IOInterruptControllerC1EPK11OSMetaClass
__ZN21IOInterruptControllerC2EPK11OSMetaClass
__ZN21IOInterruptControllerD0Ev
__ZN21IOInterruptControllerD2Ev
__ZN21IONaturalMemoryCursor10gMetaClassE
__ZN21IONaturalMemoryCursor10superClassE
__ZN21IONaturalMemoryCursor9MetaClassC1Ev
__ZN21IONaturalMemoryCursor9MetaClassC2Ev
__ZN21IONaturalMemoryCursor9metaClassE
__ZN21IONaturalMemoryCursorC1EPK11OSMetaClass
__ZN21IONaturalMemoryCursorC1Ev
__ZN21IONaturalMemoryCursorC2EPK11OSMetaClass
__ZN21IONaturalMemoryCursorC2Ev
__ZN21IONaturalMemoryCursorD0Ev
__ZN21IONaturalMemoryCursorD2Ev
__ZN21IOSubMemoryDescriptor10gMetaClassE
__ZN21IOSubMemoryDescriptor10superClassE
__ZN21IOSubMemoryDescriptor16getPreparationIDEv
__ZN21IOSubMemoryDescriptor4freeEv
__ZN21IOSubMemoryDescriptor8redirectEP4taskb
__ZN21IOSubMemoryDescriptor9MetaClassC1Ev
__ZN21IOSubMemoryDescriptor9MetaClassC2Ev
__ZN21IOSubMemoryDescriptor9metaClassE
__ZN21IOSubMemoryDescriptorC1EPK11OSMetaClass
__ZN21IOSubMemoryDescriptorC1Ev
__ZN21IOSubMemoryDescriptorC2EPK11OSMetaClass
__ZN21IOSubMemoryDescriptorC2Ev
__ZN21IOSubMemoryDescriptorD0Ev
__ZN21IOSubMemoryDescriptorD2Ev
__ZN22IOInterruptEventSource10gMetaClassE
__ZN22IOInterruptEventSource10superClassE
__ZN22IOInterruptEventSource11setWorkLoopEP10IOWorkLoop
__ZN22IOInterruptEventSource12checkForWorkEv
__ZN22IOInterruptEventSource17interruptOccurredEPvP9IOServicei
__ZN22IOInterruptEventSource20interruptEventSourceEP8OSObjectPFvS1_PS_iEP9IOServicei
__ZN22IOInterruptEventSource23normalInterruptOccurredEPvP9IOServicei
__ZN22IOInterruptEventSource24disableInterruptOccurredEPvP9IOServicei
__ZN22IOInterruptEventSource4freeEv
__ZN22IOInterruptEventSource4initEP8OSObjectPFvS1_PS_iEP9IOServicei
__ZN22IOInterruptEventSource6enableEv
__ZN22IOInterruptEventSource7disableEv
__ZN22IOInterruptEventSource9MetaClassC1Ev
__ZN22IOInterruptEventSource9MetaClassC2Ev
__ZN22IOInterruptEventSource9metaClassE
__ZN22IOInterruptEventSourceC1EPK11OSMetaClass
__ZN22IOInterruptEventSourceC1Ev
__ZN22IOInterruptEventSourceC2EPK11OSMetaClass
__ZN22IOInterruptEventSourceC2Ev
__ZN22IOInterruptEventSourceD0Ev
__ZN22IOInterruptEventSourceD2Ev
__ZN22_IOOpenServiceIterator10gMetaClassE
__ZN22_IOOpenServiceIterator10superClassE
__ZN22_IOOpenServiceIterator13getNextObjectEv
__ZN22_IOOpenServiceIterator4freeEv
__ZN22_IOOpenServiceIterator5resetEv
__ZN22_IOOpenServiceIterator7isValidEv
__ZN22_IOOpenServiceIterator8iteratorEP10OSIteratorPK9IOServiceS4_
__ZN22_IOOpenServiceIterator9MetaClassC1Ev
__ZN22_IOOpenServiceIterator9MetaClassC2Ev
__ZN22_IOOpenServiceIterator9metaClassE
__ZN22_IOOpenServiceIteratorC1EPK11OSMetaClass
__ZN22_IOOpenServiceIteratorC1Ev
__ZN22_IOOpenServiceIteratorC2EPK11OSMetaClass
__ZN22_IOOpenServiceIteratorC2Ev
__ZN22_IOOpenServiceIteratorD0Ev
__ZN22_IOOpenServiceIteratorD2Ev
__ZN23IOMultiMemoryDescriptor10gMetaClassE
__ZN23IOMultiMemoryDescriptor10superClassE
__ZN23IOMultiMemoryDescriptor4freeEv
__ZN23IOMultiMemoryDescriptor9MetaClassC1Ev
__ZN23IOMultiMemoryDescriptor9MetaClassC2Ev
__ZN23IOMultiMemoryDescriptor9metaClassE
__ZN23IOMultiMemoryDescriptorC1EPK11OSMetaClass
__ZN23IOMultiMemoryDescriptorC1Ev
__ZN23IOMultiMemoryDescriptorC2EPK11OSMetaClass
__ZN23IOMultiMemoryDescriptorC2Ev
__ZN23IOMultiMemoryDescriptorD0Ev
__ZN23IOMultiMemoryDescriptorD2Ev
__ZN24IOBufferMemoryDescriptor10gMetaClassE
__ZN24IOBufferMemoryDescriptor10superClassE
__ZN24IOBufferMemoryDescriptor14getBytesNoCopyEv
__ZN24IOBufferMemoryDescriptor4freeEv
__ZN24IOBufferMemoryDescriptor9MetaClassC1Ev
__ZN24IOBufferMemoryDescriptor9MetaClassC2Ev
__ZN24IOBufferMemoryDescriptor9metaClassE
__ZN24IOBufferMemoryDescriptorC1EPK11OSMetaClass
__ZN24IOBufferMemoryDescriptorC1Ev
__ZN24IOBufferMemoryDescriptorC2EPK11OSMetaClass
__ZN24IOBufferMemoryDescriptorC2Ev
__ZN24IOBufferMemoryDescriptorD0Ev
__ZN24IOBufferMemoryDescriptorD2Ev
__ZN25IOGeneralMemoryDescriptor10gMetaClassE
__ZN25IOGeneralMemoryDescriptor10superClassE
__ZN25IOGeneralMemoryDescriptor16getPreparationIDEv
__ZN25IOGeneralMemoryDescriptor4freeEv
__ZN25IOGeneralMemoryDescriptor9MetaClassC1Ev
__ZN25IOGeneralMemoryDescriptor9MetaClassC2Ev
__ZN25IOGeneralMemoryDescriptor9metaClassE
__ZN25IOGeneralMemoryDescriptorC1EPK11OSMetaClass
__ZN25IOGeneralMemoryDescriptorC1Ev
__ZN25IOGeneralMemoryDescriptorC2EPK11OSMetaClass
__ZN25IOGeneralMemoryDescriptorC2Ev
__ZN25IOGeneralMemoryDescriptorD0Ev
__ZN25IOGeneralMemoryDescriptorD2Ev
__ZN26_IOServiceInterestNotifier10gMetaClassE
__ZN26_IOServiceInterestNotifier10superClassE
__ZN26_IOServiceInterestNotifier4freeEv
__ZN26_IOServiceInterestNotifier4waitEv
__ZN26_IOServiceInterestNotifier6enableEb
__ZN26_IOServiceInterestNotifier6removeEv
__ZN26_IOServiceInterestNotifier7disableEv
__ZN26_IOServiceInterestNotifier9MetaClassC1Ev
__ZN26_IOServiceInterestNotifier9MetaClassC2Ev
__ZN26_IOServiceInterestNotifier9metaClassE
__ZN26_IOServiceInterestNotifierC1EPK11OSMetaClass
__ZN26_IOServiceInterestNotifierC1Ev
__ZN26_IOServiceInterestNotifierC2EPK11OSMetaClass
__ZN26_IOServiceInterestNotifierC2Ev
__ZN26_IOServiceInterestNotifierD0Ev
__ZN26_IOServiceInterestNotifierD2Ev
__ZN27IOSharedInterruptController10gMetaClassE
__ZN27IOSharedInterruptController10superClassE
__ZN27IOSharedInterruptController15enableInterruptEP9IOServicei
__ZN27IOSharedInterruptController15handleInterruptEPvP9IOServicei
__ZN27IOSharedInterruptController16disableInterruptEP9IOServicei
__ZN27IOSharedInterruptController16getInterruptTypeEP9IOServiceiPi
__ZN27IOSharedInterruptController17registerInterruptEP9IOServiceiPvPFvS2_S2_S2_iES2_
__ZN27IOSharedInterruptController19unregisterInterruptEP9IOServicei
__ZN27IOSharedInterruptController23initInterruptControllerEP21IOInterruptControllerP6OSData
__ZN27IOSharedInterruptController26getInterruptHandlerAddressEv
__ZN27IOSharedInterruptController9MetaClassC1Ev
__ZN27IOSharedInterruptController9MetaClassC2Ev
__ZN27IOSharedInterruptController9metaClassE
__ZN27IOSharedInterruptControllerC1EPK11OSMetaClass
__ZN27IOSharedInterruptControllerC1Ev
__ZN27IOSharedInterruptControllerC2EPK11OSMetaClass
__ZN27IOSharedInterruptControllerC2Ev
__ZN27IOSharedInterruptControllerD0Ev
__ZN27IOSharedInterruptControllerD2Ev
__ZN28IOFilterInterruptEventSource10gMetaClassE
__ZN28IOFilterInterruptEventSource10superClassE
__ZN28IOFilterInterruptEventSource15signalInterruptEv
__ZN28IOFilterInterruptEventSource20interruptEventSourceEP8OSObjectPFvS1_P22IOInterruptEventSourceiEP9IOServicei
__ZN28IOFilterInterruptEventSource23normalInterruptOccurredEPvP9IOServicei
__ZN28IOFilterInterruptEventSource24disableInterruptOccurredEPvP9IOServicei
__ZN28IOFilterInterruptEventSource26filterInterruptEventSourceEP8OSObjectPFvS1_P22IOInterruptEventSourceiEPFbS1_PS_EP9IOServicei
__ZN28IOFilterInterruptEventSource4initEP8OSObjectPFvS1_P22IOInterruptEventSourceiEP9IOServicei
__ZN28IOFilterInterruptEventSource4initEP8OSObjectPFvS1_P22IOInterruptEventSourceiEPFbS1_PS_EP9IOServicei
__ZN28IOFilterInterruptEventSource9MetaClassC1Ev
__ZN28IOFilterInterruptEventSource9MetaClassC2Ev
__ZN28IOFilterInterruptEventSource9metaClassE
__ZN28IOFilterInterruptEventSourceC1EPK11OSMetaClass
__ZN28IOFilterInterruptEventSourceC1Ev
__ZN28IOFilterInterruptEventSourceC2EPK11OSMetaClass
__ZN28IOFilterInterruptEventSourceC2Ev
__ZN28IOFilterInterruptEventSourceD0Ev
__ZN28IOFilterInterruptEventSourceD2Ev
__ZN29IOInterleavedMemoryDescriptor10gMetaClassE
__ZN29IOInterleavedMemoryDescriptor10superClassE
__ZN29IOInterleavedMemoryDescriptor4freeEv
__ZN29IOInterleavedMemoryDescriptor9MetaClassC1Ev
__ZN29IOInterleavedMemoryDescriptor9MetaClassC2Ev
__ZN29IOInterleavedMemoryDescriptor9metaClassE
__ZN29IOInterleavedMemoryDescriptorC1EPK11OSMetaClass
__ZN29IOInterleavedMemoryDescriptorC1Ev
__ZN29IOInterleavedMemoryDescriptorC2EPK11OSMetaClass
__ZN29IOInterleavedMemoryDescriptorC2Ev
__ZN29IOInterleavedMemoryDescriptorD0Ev
__ZN29IOInterleavedMemoryDescriptorD2Ev
__ZN8IOMapper10gMetaClassE
__ZN8IOMapper10superClassE
__ZN8IOMapper17setMapperRequiredEb
__ZN8IOMapper19copyMapperForDeviceEP9IOService
__ZN8IOMapper28copyMapperForDeviceWithIndexEP9IOServicej
__ZN8IOMapper19waitForSystemMapperEv
__ZN8IOMapper4freeEv
__ZN8IOMapper5startEP9IOService
__ZN8IOMapper7gSystemE
__ZN8IOMapper9MetaClassC1Ev
__ZN8IOMapper9MetaClassC2Ev
__ZN8IOMapper9metaClassE