summaryrefslogtreecommitdiffstats
path: root/src/VBox/Additions/x11/undefined_xfree86
blob: e80b6819543453e758587cf09da305ba2a05a1a5 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
# This file contains the complete list, excluding modules of undefined symbols
# which are allowed in XFree86 4.3 binary driver modules.

AddCallback
AddEnabledDevice
AddExtension
AddExtensionAlias
AddResource
AdjustWaitForDelay
AllocateClientPrivate
AllocateClientPrivateIndex
AllocateColormapPrivateIndex
AllocateGCPrivate
AllocateGCPrivateIndex
AllocatePixmap
AllocatePixmapPrivate
AllocatePixmapPrivateIndex
AllocateScreenPrivateIndex
AllocateWindowPrivate
AllocateWindowPrivateIndex
AllocColor
_alpha_inb
_alpha_inl
_alpha_inw
_alpha_outb
_alpha_outl
_alpha_outw
AltICD2061SetClock
AssignTypeAndName
Att409SetClock
AttendClient
BadShmSegCode
BitOrderInvert
BufFileRead
BufFileWrite
_bus_base
byte_reversed
ChangeGC
ChangeResourceValue
ChangeWindowAttributes
ChangeWindowProperty
CheckCursorConfinement
CheckExtension
CheckFSFormat
CheckWindowOptionalNeed
Chrontel8391SetClock
CirrusFindClock
CirrusSetClock
clients
ClientSleep
ClientSleepUntil
ClientStateCallback
ClientTimeToServerTime
ClientWakeup
CloseFont
commonCalcClock
CompareTimeStamps
ConfiguredMonitor
CopyGC
CopyISOLatin1Lowered
CopySwap32Write
CreateColormap
CreateFontRec
CreateGC
CreateNewResourceClass
CreateNewResourceType
CreateScratchGC
CreateUnclippedWinSize
CreateWindow
currentMaxClients
CurrentSelections
currentTime
dacInTi3026IndReg
dacOutTi3026IndReg
debug_inb
debug_inl
debug_inw
debug_outb
debug_outl
debug_outw
DeclareExtensionSecurity
defaultColorVisualClass
defaultDPMSEnabled
DeleteCallback
DeleteProperty
DeliverEvents
deltaSaveUndersViewable
DestroyFontRec
DeviceEventCallback
DGAActive
DGAAvailable
DGABlitRect
DGABlitTransRect
DGAChangePixmapMode
DGACloseFramebuffer
DGACreateColormap
DGAFillRect
DGAGetModeInfo
DGAGetModes
DGAGetOldDGAMode
DGAGetViewportStatus
DGAInit
DGAInstallCmap
DGAOpenFramebuffer
DGASelectInput
DGASetInputMode
DGASetMode
DGASetViewport
DGASync
dispatchException
div
__div64
__divdf3
__divdi3
__divl
__divlu
__divq
__divqu
__divsf3
__divsi3
dixChangeGC
DoChangeGC
DPMSCapableFlag
DPMSDisabledSwitch
DPMSEnabled
DPMSEnabledSwitch
DPMSGet
DPMSOffTime
DPMSPowerLevel
DPMSSet
DPMSStandbyTime
DPMSSupported
DPMSSuspendTime
DuplicateModule
eieio
erel->rel->r_info
Error
ErrorF
Et4000AltICD2061SetClock
ET4000gendacSetClock
ET4000stg1703SetClock
ET6000SetClock
EventCallback
EventSwapVector
ex
FakeAllocColor
FakeClientID
FakeFreeColor
FatalError
FindAllClientResources
FindClientResourcesByType
FindWindowWithOptional
FlushCallback
FontCacheChangeSettings
FontCacheCloseCache
FontCacheGetBitmap
FontCacheGetEntry
FontCacheGetSettings
FontCacheGetStatistics
FontCacheInsertEntry
FontCacheOpenCache
FontCacheSearchEntry
FontComputeInfoAccelerators
FontCouldBeTerminal
FontDefaultFormat
FontEncDirectory
FontEncFind
FontEncFromXLFD
FontEncMapFind
FontEncName
font_encoding_find
font_encoding_from_xlfd
font_encoding_name
font_encoding_recode
FontEncRecode
FontFileBitmapSources
FontFileClose
FontFileCloseFont
FontFileCompleteXLFD
FontFileCountDashes
FontFileFindNameInDir
FontFileMatchRenderer
FontFileOpen
FontFileOpenBitmap
FontFilePriorityRegisterRenderer
FontFileRegisterRenderer
FontMapFind
FontMapReverse
FontMapReverseFree
FontParseXLFDName
FontToXError
FourByteSwap
fpe_functions
FreeColors
FreeCursor
FreeGC
FreeResource
FreeResourceByType
FreeScratchGC
FreeScratchPixmapHeader
func
 func 
gendacMNToClock
GetGlyphs
GetScratchGC
GetScratchPixmapHeader
GetTimeInMillis
GetXIDList
GetXIDRange
GiveUp
globalSerialNumber
GrabInProgress
GravityTranslate
header
IBMRGBSetClock
ICS2595SetClock
ICS5342SetClock
identifyEncodingFile
IgnoreClient
inb
_inb
InitButtonClassDeviceStruct
InitFocusClassDeviceStruct
InitKeyboardDeviceStruct
InitKeyClassDeviceStruct
InitLedFeedbackClassDeviceStruct
InitPointerDeviceStruct
InitProximityClassDeviceStruct
InitPtrFeedbackClassDeviceStruct
InitValuatorAxisStruct
InitValuatorClassDeviceStruct
inl
_inl
inputInfo
inw
_inw
ioBase
isItTimeToYield
lastDeviceEventTime
lastResourceType
ldl_brx
ldl_u
ldq_u
ldw_brx
ldw_u
LegalNewID
LoaderCheckUnresolved
LoaderDefaultFunc
LoaderErrorMsg
LoaderFreeDirList
LoaderGetOS
LoaderListDirs
LoaderRefSymbols
LoaderRefSymLists
LoaderReqSymbols
LoaderReqSymLists
LoaderSymbol
LoadExtension
LoadFont
LoadGlyphs
LoadSubModule
LocalClient
LookupClient
LookupDrawable
LookupIDByClass
LookupIDByType
LookupKeyboardDevice
LookupPointerDevice
LookupWindow
MakeAtom
MakeClientGrabImpervious
MakeClientGrabPervious
MakeWindowOptional
MapWindow
mem_barrier
memcpy
"memcpy",xf86memcpy
memset
"memset",xf86memset
miAllocateGCPrivateIndex
miChangeBorderWidth
miChangeClip
miChangeGC
miClearDrawable
miClearToBackground
miClearVisualTypes
miClipNotify
miClipSpans
miCompositeRects
miComputeCompositeClip
miComputeCompositeRegion
miCopyArea
miCopyClip
miCopyGC
miCopyPlane
miCreateDefColormap
miCreateGCOps
miCreateScreenResources
miDCInitialize
miDestroyClip
miDestroyGC
miDestroyGCOps
miEmptyBox
miEmptyData
miExpandDirectColors
miFillArcSetup
miFillArcSliceSetup
miFillConvexPoly
miFillPolygon
miFindMaxBand
miGetDefaultVisualMask
miGetImage
miGetScreenPixmap
miGlyphExtents
miGlyphs
miHandleExposures
miHandleValidateExposures
miHookInitVisuals
miImageGlyphBlt
miImageText16
miImageText8
miInitializeBackingStore
miInitializeBanking
miInitializeColormap
miInitOverlay
miInitVisuals
miInitVisualsProc
miInstallColormap
miInstalledMaps
miIntersect
miInverse
miListInstalledColormaps
miModifyBanking
miModifyPixmapHeader
MinorOpcodeOfRequest
miOverlayCollectUnderlayRegions
miOverlayComputeCompositeClip
miOverlayCopyUnderlay
miOverlayGetPrivateClips
miOverlaySetRootClip
miOverlaySetTransFunction
miPaintWindow
miPictureInit
miPointerAbsoluteCursor
miPointerCurrentScreen
miPointerGetMotionBufferSize
miPointerGetMotionEvents
miPointerInitialize
miPointerPosition
miPointerScreenIndex
miPointerWarpCursor
miPointInRegion
miPolyArc
miPolyBuildEdge
miPolyBuildPoly
miPolyFillArc
miPolyFillRect
miPolyGlyphBlt
miPolyPoint
miPolyRectangle
miPolySegment
miPolyText16
miPolyText8
miPushPixels
miPutImage
miRecolorCursor
miRectAlloc
miRectIn
miRectsToRegion
miRegionAppend
miRegionCopy
miRegionCreate
miRegionDestroy
miRegionEmpty
miRegionExtents
miRegionInit
miRegionNotEmpty
miRegionReset
miRegionUninit
miRegionValidate
miResolveColor
miRoundCapClip
miRoundJoinClip
MiscExtApply
MiscExtCreateStruct
MiscExtDestroyStruct
MiscExtGetFilePaths
MiscExtGetKbdSettings
MiscExtGetKbdValue
MiscExtGetMouseSettings
MiscExtGetMouseValue
MiscExtSetGrabKeysState
MiscExtSetKbdValue
MiscExtSetMouseDevice
MiscExtSetMouseValue
miScreenInit
miSegregateChildren
miSendGraphicsExpose
miSetPixmapDepths
miSetScreenPixmap
miSetShape
miSetVisualTypes
miSetVisualTypesAndMasks
miSetZeroLineBias
miShapedWindowIn
miSpritePointerFuncs
miStepDash
miSubtract
miTranslateRegion
miUninstallColormap
miUnion
miWideDash
miWideLine
miWindowExposures
miZeroArcSetup
miZeroClipLine
miZeroDashLine
miZeroLine
miZeroLineScreenIndex
miZeroPolyArc
__moddi3
__modsi3
monitorResolution
MoveWindowInStack
mul
__mul64
__muldf3
__muldi3
__mulsf3
__mulsi3
Must_have_memory
NameForAtom
 name, func 
 name, var 
NewCurrentScreen
NoopDDA
noPanoramiXExtension
NotClippedByChildren
noTestExtensions
NotImplemented
noXkbExtension
NumCurrentSelections
numSaveUndersViewable
Ones
outb
_outb
outl
_outl
outw
_outw
panoramiXdataPtr
PanoramiXNumScreens
PciAvoid
pciBusAddrToHostAddr
pciFindFirst
pciFindNext
pciHostAddrToBusAddr
pciNumBuses
pciReadByte
pciReadLong
pciReadWord
pciSetBitsLong
pciTag
pciWriteByte
pciWriteLong
pciWriteWord
permitOldBugs
PictureAddFilter
PictureGetSubpixelOrder
PictureInit
PictureScreenPrivateIndex
PictureSetFilterAlias
PictureSetSubpixelOrder
PictureTransformPoint
PixmapWidthPaddingInfo
PointerConfinedToScreen
ProcBadRequest
ProcVector
QueryColors
QueryGlyphExtents
QueueWorkProc
RegisterBlockAndWakeupHandlers
RegisterResourceName
rel[i].r_info
rel->r_info
rem
__reml
__remlu
RemoveBlockAndWakeupHandlers
RemoveEnabledDevice
__remq
__remqu
RepadBitmap
ReplyCallback
ReplySwapVector
res8514Exclusive
res8514Shared
ResetCurrentRequest
ResizeChildrenWinSize
ResourceNames
_restf14
_restf17
_restf18
_restf19
_restf20
_restf22
_restf23
_restf24
_restf25
_restf26
_restf27
_restf28
_restf29
resVgaExclusive
resVgaIoShared
resVgaMemShared
resVgaShared
resVgaSparseExclusive
resVgaSparseShared
resVgaUnusedExclusive
resVgaUnusedShared
S3AuroraSetClock
S3gendacSetClock
s3IBMRGB_Init
s3IBMRGB_Probe
s3InIBMRGBIndReg
s3OutIBMRGBIndReg
S3Trio64V2SetClock
S3TrioSetClock
savedScreenInfo
_savef14
_savef17
_savef18
_savef19
_savef20
_savef22
_savef23
_savef24
_savef25
_savef26
_savef27
_savef28
_savef29
SaveScreens
SC11412SetClock
screenInfo
screenIsSaved
ScreenSaverBlanking
ScreenSaverTime
SecurityLookupDrawable
SecurityLookupIDByClass
SecurityLookupIDByType
SecurityLookupWindow
SendErrorToClient
SendMappingNotify
SendVisibilityNotify
serverClient
serverGeneration
ServerGrabCallback
SetBorderSize
SetClipRects
SetCriticalEvent
SetCriticalOutputPending
SetDashes
SetInputCheck
SetTimeSinceLastInputEvent
SetWinSize
ShmCompletionCode
ShmSegType
SkippedRequestsCallback
sparcPromClose
sparcPromGetBool
sparcPromGetProperty
sparcPromInit
StandardMinorOpcode
STG1703getIndex
STG1703magic
STG1703SetClock
STG1703setIndex
stl_brx
stl_u
StoreColors
stq_u
stw_brx
stw_u
Swap32Write
SwapColorItem
SwapConnSetupInfo
SwapConnSetupPrefix
SwapLongs
SwapShorts
sysctlbyname
TellGainedMap
TellLostMap
Ti3025SetClock
Ti3026SetClock
Ti3030SetClock
TimerCancel
TimerFree
TimerSet
TraverseTree
TryClientEvents
TwoByteSwap
TypeMask
udiv
__udivdi3
__udivsi3
__umoddi3
__umodsi3
umul
UnloadSubModule
UnmapWindow
UpdateCurrentTime
UpdateCurrentTimeIf
urem
ValidateGC
ValidAtom
 var 
VerifyRectOrder
VErrorF
VidModeAddModeline
VidModeCheckModeForDriver
VidModeCheckModeForMonitor
VidModeCopyMode
VidModeCreateMode
VidModeDeleteModeline
VidModeExtensionInit
VidModeGetClocks
VidModeGetCurrentModeline
VidModeGetDotClock
VidModeGetFirstModeline
VidModeGetGamma
VidModeGetGammaRamp
VidModeGetGammaRampSize
VidModeGetModeValue
VidModeGetMonitor
VidModeGetMonitorValue
VidModeGetNextModeline
VidModeGetNumOfClocks
VidModeGetNumOfModes
VidModeGetViewPort
VidModeLockZoom
VidModeSetCrtcForMode
VidModeSetGamma
VidModeSetGammaRamp
VidModeSetModeValue
VidModeSetViewPort
VidModeSwitchMode
VidModeZoomViewport
WalkTree
WindowsRestructured
WindowTable
WriteEventsToClient
write_mem_barrier
WriteToClient
x
Xalloc
Xcalloc
XDGAEventBase
xf86abort
xf86abs
xf86access
xf86acos
xf86AcquireGART
xf86AddDeviceToConfigure
xf86AddDriver
xf86AddEnabledDevice
xf86AddEntityToScreen
xf86AddInputDriver
xf86AddInputHandler
xf86AddModuleInfo
xf86AddNewOption
xf86AddPixFormat
xf86AddResToList
xf86AgpGARTSupported
xf86AllocateEntityPrivateIndex
xf86AllocateGARTMemory
xf86AllocateInput
xf86AllocateLinearOffscreenArea
xf86AllocateOffscreenArea
xf86AllocateOffscreenLinear
xf86AllocateScreen
xf86AllocateScrnInfoPrivateIndex
xf86asin
xf86atan
xf86atan2
xf86atof
xf86atoi
xf86atol
xf86BindGARTMemory
xf86BlockSIGIO
xf86Break1
xf86Break2
xf86Break3
xf86bsearch
xf86BusToMem
xf86bzero
xf86calloc
xf86CaughtSignal
xf86ceil
xf86CheckIfOptionUsed
xf86CheckIfOptionUsedByName
xf86CheckModeForDriver
xf86CheckModeForMonitor
xf86CheckMTRR
xf86CheckPciGAType
xf86CheckPciMemBase
xf86CheckPciSlot
xf86ChkConflict
xf86chmod
xf86chown
xf86ClaimFbSlot
xf86ClaimFixedResources
xf86ClaimIsaSlot
xf86ClaimNoSlot
xf86ClaimPciSlot
xf86clearerr
xf86ClearPrimInitDone
xf86close
xf86closedir
xf86CloseSerial
xf86clrdaccommbit
xf86CollectInputOptions
xf86CollectOptions
xf86CommonSpecialKey
xf86ComparePciBusString
xf86ConfigActiveIsaEntity
xf86ConfigActivePciEntity
xf86ConfigDRI
xf86ConfigFbEntity
xf86ConfigIsaEntity
xf86ConfigIsaEntityInactive
xf86ConfigPciEntity
xf86ConfigPciEntityInactive
xf86cos
xf86CurrentScreen
xf86dactocomm
xf86dactopel
xf86DeallocateResourcesForEntity
xf86DeleteDriver
xf86DeleteInput
xf86DeleteMode
xf86DeleteModuleInfo
xf86DeleteScreen
xf86DeregisterStateChangeNotificationCallback
xf86DisableInputHandler
xf86DisableInterrupts
xf86DisableIO
xf86DisableRandR
xf86DPMSInit
xf86DrvMsg
xf86DrvMsgVerb
xf86DummyVar1
xf86DummyVar2
xf86DummyVar3
xf86DupResList
xf86EnableAccess
xf86EnableAGP
xf86EnableDisableFBAccess
xf86EnableInputHandler
xf86EnableInterrupts
xf86EnableIO
xf86EnablePciBusMaster
xf86EnableVTSwitch
xf86EnterServerState
xf86eqEnqueue
xf86errno
xf86ErrorF
xf86ErrorFVerb
xf86execl
xf86exit
xf86exp
xf86fabs
xf86FBManagerRunning
xf86fclose
xf86feof
xf86ferror
xf86fflush
xf86ffs
xf86fgetc
xf86fgetpos
xf86fgets
xf86FindOption
xf86FindOptionValue
xf86FindPciClass
xf86FindPciDeviceVendor
xf86FindScreenForEntity
xf86FindXvOptions
xf86finite
xf86FirstLocalDevice
xf86FixPciResource
xf86floor
xf86FlushInput
xf86fmod
xf86fopen
xf86FormatPciBusNumber
xf86fpossize
xf86fprintf
xf86fputc
xf86fputs
xf86fread
xf86free
xf86FreeOffscreenArea
xf86FreeOffscreenLinear
xf86FreeResList
xf86freopen
xf86frexp
xf86fscanf
xf86fseek
xf86fsetpos
xf86fstat
xf86ftell
xf86fwrite
xf86GARTCloseScreen
xf86GetAGPInfo
xf86GetAllowMouseOpenFail
xf86GetBlock
xf86GetBppFromDepth
xf86getc
xf86GetClocks
xf86getdaccomm
xf86GetDepth
xf86GetDevFromEntity
xf86getegid
xf86GetEntityForSbusInfo
xf86GetEntityInfo
xf86GetEntityPrivate
xf86getenv
xf86GetErrno
xf86geteuid
xf86GetFlipPixels
xf86GetGamma
xf86getjmptype
xf86GetLastScrnFlag
xf86GetModInDevAllowNonLocal
xf86GetModInDevEnabled
xf86GetModuleVersion
xf86GetMotionEvents
xf86GetNearestClock
xf86GetNumEntityInstances
xf86GetOptValBool
xf86GetOptValFreq
xf86GetOptValInteger
xf86GetOptValReal
xf86GetOptValString
xf86GetOptValULong
xf86GetOS
xf86getpagesize
xf86GetPciConfigInfo
xf86GetPciDomain
xf86GetPciEntity
xf86GetPciInfoForEntity
xf86GetPciVideoInfo
xf86getpid
xf86GetPix24
xf86GetPixFormat
xf86GetPointerScreenFuncs
xf86GetSbusInfoForEntity
xf86getsecs
xf86GetSerialModemState
xf86GetServerName
xf86GetSparse
xf86GetVerbosity
xf86GetVersion
xf86GetVidModeAllowNonLocal
xf86GetVidModeEnabled
xf86GetVisualName
xf86GetWeight
xf86HandleColormaps
xf86HUGE_VAL
xf86hypot
xf86InitFBManager
xf86InitFBManagerArea
xf86InitFBManagerRegion
xf86InitialCheckModeForDriver
xf86InitValuatorAxisStruct
xf86InitValuatorDefaults
xf86InstallSIGIOHandler
xf86inSuspend
xf86InterceptSignals
xf86ioctl
xf86IODelay
xf86isalnum
xf86isalpha
xf86iscntrl
xf86IsCorePointer
xf86isdigit
xf86IsEntityPrimary
xf86IsEntitySharable
xf86IsEntityShared
xf86isgraph
xf86islower
xf86IsOptionSet
xf86IsPc98
xf86IsPciDevPresent
xf86IsPrimaryIsa
xf86IsPrimaryPci
xf86IsPrimInitDone
xf86isprint
xf86ispunct
xf86IsScreenPrimary
xf86isspace
xf86IsUnblank
xf86isupper
xf86isxdigit
xf86JoinResLists
xf86labs
xf86ldexp
xf86LinearVidMem
xf86LoadDrvSubModule
xf86LoaderCheckSymbol
xf86LoaderRefSymbols
xf86LoaderRefSymLists
xf86LoaderReqSymbols
xf86LoaderReqSymLists
xf86LoadKernelModule
xf86LoadOneModule
xf86LoadSubModule
xf86log
xf86log10
"xf86longjmp",longjmp
xf86LookupMode
xf86lseek
xf86malloc
xf86MapDomainIO
xf86MapDomainMemory
xf86MapPciMem
xf86MapReadSideEffects
xf86MapSbusMem
xf86MapVidMem
xf86MarkOptionUsed
xf86MarkOptionUsedByName
xf86MatchDevice
xf86MatchIsaInstances
xf86MatchPciInstances
xf86MatchSbusInstances
xf86memchr
xf86memcmp
xf86memcpy
xf86memmove
xf86memset
xf86MemToBus
xf86mkdir
xf86mknod
xf86mmap
xf86ModeStatusToString
xf86modf
xf86MotionHistoryAllocate
xf86Msg
xf86MsgVerb
xf86munmap
xf86NameCmp
xf86NewOption
xf86NewSerialNumber
xf86NextOption
xf86NoSharedResources
xf86open
xf86opendir
xf86OpenSerial
xf86OptionListCreate
xf86OptionListFree
xf86OptionListMerge
xf86OptionListReport
xf86OptionName
xf86OptionValue
xf86OSKbdPreInit
xf86OSMouseInit
xf86p8bit
xf86ParseIsaBusString
xf86ParsePciBusString
xf86perror
xf86PixmapIndex
xf86PostButtonEvent
xf86PostKeyboardEvent
xf86PostKeyEvent
xf86PostMotionEvent
xf86PostProximityEvent
xf86pow
xf86PrintChipsets
xf86PrintDepthBpp
xf86printf
xf86PrintModes
xf86PrintResList
xf86ProcessCommonOptions
xf86ProcessOptions
xf86PruneDriverModes
xf86PurgeUnlockedOffscreenAreas
xf86qsort
xf86QueryLargestOffscreenArea
xf86QueryLargestOffscreenLinear
xf86QueueAsyncEvent
xf86read
xf86ReadBIOS
xf86readdir
xf86ReadDomainMemory
xf86ReadMmio16
xf86ReadMmio32
xf86ReadMmio8
xf86ReadPciBIOS
xf86ReadSerial
xf86realloc
xf86ReallocatePciResources
xf86RegisterFreeBoxCallback
xf86RegisterOffscreenManager
xf86RegisterResources
xf86RegisterRootWindowProperty
xf86RegisterStateChangeNotificationCallback
xf86ReleaseGART
xf86remove
xf86RemoveEnabledDevice
xf86RemoveEntityFromScreen
xf86RemoveInputHandler
xf86RemoveSIGIOHandler
xf86rename
xf86ReplaceBoolOption
xf86ReplaceIntOption
xf86ReplaceStrOption
xf86ResizeOffscreenArea
xf86ResizeOffscreenLinear
xf86ReturnOptValBool
xf86rewind
xf86rewinddir
xf86SbusHandleColormaps
xf86SbusHideOsHwCursor
xf86SbusSetOsHwCursorCmap
xf86SbusUseBuiltinMode
xf86ScaleAxis
xf86scanpci
xf86ScreenIndex
xf86Screens
xf86SerialModemClearBits
xf86SerialModemSetBits
xf86SerialSendBreak
xf86ServerIsExiting
xf86ServerIsOnlyDetecting
xf86ServerIsOnlyProbing
xf86ServerIsResetting
xf86SetAccessFuncs
xf86SetBackingStore
xf86SetBlackWhitePixels
xf86SetBoolOption
xf86setbuf
xf86SetCrtcForModes
xf86SetCurrentAccess
xf86setdaccomm
xf86setdaccommbit
xf86SetDefaultVisual
xf86SetDepthBpp
xf86SetDpi
xf86SetEntityFuncs
xf86SetEntityInstanceForScreen
xf86SetEntitySharable
xf86SetEntityShared
xf86SetGamma
xf86SetIntOption
xf86setjmp
xf86setjmp1
xf86setjmp1_arg2
"xf86setjmp1",__sigsetjmp
xf86setjmperror
"xf86setjmp",setjmp
xf86SetLastScrnFlag
xf86SetOperatingState
xf86SetPciVideo
xf86SetPrimInitDone
xf86SetPriority
xf86SetRealOption
xf86SetSerial
xf86SetSerialModemState
xf86SetSerialSpeed
xf86SetSilkenMouse
xf86SetStrOption
xf86setvbuf
xf86SetWeight
xf86shmat
xf86shmctl
xf86shmdt
xf86shmget
xf86ShowClockRanges
xf86ShowClocks
xf86ShowUnusedOptions
xf86sin
xf86sleep
xf86SlowBcopy
xf86SlowBCopyFromBus
xf86SlowBCopyToBus
xf86snprintf
xf86SoundKbdBell
xf86sprintf
xf86SPTimestamp
xf86sqrt
xf86sscanf
xf86stat
xf86stderr
xf86stdin
xf86stdout
xf86STimestamp
xf86strcasecmp
xf86strcat
xf86strchr
xf86strcmp
xf86strcpy
xf86strcspn
xf86strdup
xf86strerror
xf86StringToToken
xf86strlen
xf86strncasecmp
xf86strncat
xf86strncmp
xf86strncpy
xf86strpbrk
xf86strrchr
xf86strspn
xf86strstr
xf86strtod
xf86strtok
xf86strtol
xf86strtoul
xf86tan
xf86tmpfile
xf86TokenToOptinfo
xf86TokenToOptName
xf86TokenToString
xf86tolower
xf86toupper
xf86UDelay
xf86UnbindGARTMemory
xf86UnblockSIGIO
xf86ungetc
xf86UnloadSubModule
xf86UnmapSbusMem
xf86UnMapVidMem
xf86usleep
xf86ValidateModes
xf86VDrvMsgVerb
xf86vfprintf
xf86vsnprintf
xf86vsprintf
xf86WaitForInput
xf86write
xf86WriteMmio16
xf86WriteMmio32
xf86WriteMmio8
xf86WriteMmioNB16
xf86WriteMmioNB32
xf86WriteMmioNB8
xf86writepci
xf86WriteSerial
xf86XInputSetScreen
xf86XInputSetSendCoreEvents
xf86XVAllocateVideoAdaptorRec
xf86XVClipVideoHelper
xf86XVFillKeyHelper
xf86XVFreeVideoAdaptorRec
xf86XVListGenericAdaptors
xf86XvMCScreenInit
xf86XVQueryOffscreenImages
xf86XVRegisterGenericAdaptorDriver
xf86XVRegisterOffscreenImages
xf86XVScreenInit
Xfree
XineramaDeleteResource
XineramaGetCursorScreen
XineramaRegisterConnectionBlockCallback
XisbBlockDuration
XisbFree
XisbNew
XisbRead
XisbTrace
XisbWrite
XkbInitKeyboardDeviceStruct
XkbSetRulesDflts
XNFalloc
XNFcalloc
XNFrealloc
XNFstrdup
XRC_DRAWABLE
Xrealloc
XRT_COLORMAP
XRT_GC
XRT_PIXMAP
XRT_WINDOW
Xstrdup
XvGetRTPortProc
XvGetScreenIndexProc
XvMCScreenInitProc
XvScreenInitProc