blob: eed240e4fb8f8d7f1eb916b5b287fca2fbbd1bed (
plain) (
blame)
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
|
bin/thrift1
include/thrift/ThriftLibrary.cmake
include/thrift/annotation/bundled_annotations.h
include/thrift/annotation/compat.thrift
include/thrift/annotation/cpp.thrift
include/thrift/annotation/erlang.thrift
include/thrift/annotation/gen-cpp2/cpp_clients.h
include/thrift/annotation/gen-cpp2/cpp_constants.h
include/thrift/annotation/gen-cpp2/cpp_data.h
include/thrift/annotation/gen-cpp2/cpp_for_each_field.h
include/thrift/annotation/gen-cpp2/cpp_handlers.h
include/thrift/annotation/gen-cpp2/cpp_metadata.h
include/thrift/annotation/gen-cpp2/cpp_types.h
include/thrift/annotation/gen-cpp2/cpp_types.tcc
include/thrift/annotation/gen-cpp2/cpp_types_custom_protocol.h
include/thrift/annotation/gen-cpp2/cpp_types_fwd.h
include/thrift/annotation/gen-cpp2/cpp_visit_by_thrift_field_metadata.h
include/thrift/annotation/gen-cpp2/cpp_visit_union.h
include/thrift/annotation/gen-cpp2/cpp_visitation.h
include/thrift/annotation/gen-cpp2/go_clients.h
include/thrift/annotation/gen-cpp2/go_constants.h
include/thrift/annotation/gen-cpp2/go_data.h
include/thrift/annotation/gen-cpp2/go_for_each_field.h
include/thrift/annotation/gen-cpp2/go_handlers.h
include/thrift/annotation/gen-cpp2/go_metadata.h
include/thrift/annotation/gen-cpp2/go_types.h
include/thrift/annotation/gen-cpp2/go_types.tcc
include/thrift/annotation/gen-cpp2/go_types_custom_protocol.h
include/thrift/annotation/gen-cpp2/go_types_fwd.h
include/thrift/annotation/gen-cpp2/go_visit_by_thrift_field_metadata.h
include/thrift/annotation/gen-cpp2/go_visit_union.h
include/thrift/annotation/gen-cpp2/go_visitation.h
include/thrift/annotation/gen-cpp2/hack_clients.h
include/thrift/annotation/gen-cpp2/hack_constants.h
include/thrift/annotation/gen-cpp2/hack_data.h
include/thrift/annotation/gen-cpp2/hack_for_each_field.h
include/thrift/annotation/gen-cpp2/hack_handlers.h
include/thrift/annotation/gen-cpp2/hack_metadata.h
include/thrift/annotation/gen-cpp2/hack_types.h
include/thrift/annotation/gen-cpp2/hack_types.tcc
include/thrift/annotation/gen-cpp2/hack_types_custom_protocol.h
include/thrift/annotation/gen-cpp2/hack_types_fwd.h
include/thrift/annotation/gen-cpp2/hack_visit_by_thrift_field_metadata.h
include/thrift/annotation/gen-cpp2/hack_visit_union.h
include/thrift/annotation/gen-cpp2/hack_visitation.h
include/thrift/annotation/gen-cpp2/java_clients.h
include/thrift/annotation/gen-cpp2/java_constants.h
include/thrift/annotation/gen-cpp2/java_data.h
include/thrift/annotation/gen-cpp2/java_for_each_field.h
include/thrift/annotation/gen-cpp2/java_handlers.h
include/thrift/annotation/gen-cpp2/java_metadata.h
include/thrift/annotation/gen-cpp2/java_types.h
include/thrift/annotation/gen-cpp2/java_types.tcc
include/thrift/annotation/gen-cpp2/java_types_custom_protocol.h
include/thrift/annotation/gen-cpp2/java_types_fwd.h
include/thrift/annotation/gen-cpp2/java_visit_by_thrift_field_metadata.h
include/thrift/annotation/gen-cpp2/java_visit_union.h
include/thrift/annotation/gen-cpp2/java_visitation.h
include/thrift/annotation/gen-cpp2/python_clients.h
include/thrift/annotation/gen-cpp2/python_constants.h
include/thrift/annotation/gen-cpp2/python_data.h
include/thrift/annotation/gen-cpp2/python_for_each_field.h
include/thrift/annotation/gen-cpp2/python_handlers.h
include/thrift/annotation/gen-cpp2/python_metadata.h
include/thrift/annotation/gen-cpp2/python_types.h
include/thrift/annotation/gen-cpp2/python_types.tcc
include/thrift/annotation/gen-cpp2/python_types_custom_protocol.h
include/thrift/annotation/gen-cpp2/python_types_fwd.h
include/thrift/annotation/gen-cpp2/python_visit_by_thrift_field_metadata.h
include/thrift/annotation/gen-cpp2/python_visit_union.h
include/thrift/annotation/gen-cpp2/python_visitation.h
include/thrift/annotation/gen-cpp2/scope_clients.h
include/thrift/annotation/gen-cpp2/scope_constants.h
include/thrift/annotation/gen-cpp2/scope_data.h
include/thrift/annotation/gen-cpp2/scope_for_each_field.h
include/thrift/annotation/gen-cpp2/scope_handlers.h
include/thrift/annotation/gen-cpp2/scope_metadata.h
include/thrift/annotation/gen-cpp2/scope_types.h
include/thrift/annotation/gen-cpp2/scope_types.tcc
include/thrift/annotation/gen-cpp2/scope_types_custom_protocol.h
include/thrift/annotation/gen-cpp2/scope_types_fwd.h
include/thrift/annotation/gen-cpp2/scope_visit_by_thrift_field_metadata.h
include/thrift/annotation/gen-cpp2/scope_visit_union.h
include/thrift/annotation/gen-cpp2/scope_visitation.h
include/thrift/annotation/gen-cpp2/thrift_clients.h
include/thrift/annotation/gen-cpp2/thrift_constants.h
include/thrift/annotation/gen-cpp2/thrift_data.h
include/thrift/annotation/gen-cpp2/thrift_for_each_field.h
include/thrift/annotation/gen-cpp2/thrift_handlers.h
include/thrift/annotation/gen-cpp2/thrift_metadata.h
include/thrift/annotation/gen-cpp2/thrift_types.h
include/thrift/annotation/gen-cpp2/thrift_types.tcc
include/thrift/annotation/gen-cpp2/thrift_types_custom_protocol.h
include/thrift/annotation/gen-cpp2/thrift_types_fwd.h
include/thrift/annotation/gen-cpp2/thrift_visit_by_thrift_field_metadata.h
include/thrift/annotation/gen-cpp2/thrift_visit_union.h
include/thrift/annotation/gen-cpp2/thrift_visitation.h
include/thrift/annotation/go.thrift
include/thrift/annotation/hack.thrift
include/thrift/annotation/internal.thrift
include/thrift/annotation/java.thrift
include/thrift/annotation/python.thrift
include/thrift/annotation/rust.thrift
include/thrift/annotation/scope.thrift
include/thrift/annotation/thrift.thrift
include/thrift/common/BaseType.h
include/thrift/common/detail/string.h
include/thrift/common/tree_printer.h
include/thrift/common/universal_name.h
include/thrift/lib/cpp/BiDiEventHandler.h
include/thrift/lib/cpp/ContextStack.h
include/thrift/lib/cpp/DistinctTable.h
include/thrift/lib/cpp/EventHandlerBase.h
include/thrift/lib/cpp/Field.h
include/thrift/lib/cpp/Frozen.h
include/thrift/lib/cpp/Reflection.h
include/thrift/lib/cpp/RelativePtr.h
include/thrift/lib/cpp/SerializedMessage.h
include/thrift/lib/cpp/StreamEventHandler.h
include/thrift/lib/cpp/TApplicationException.h
include/thrift/lib/cpp/TLogging.h
include/thrift/lib/cpp/TProcessor.h
include/thrift/lib/cpp/TProcessorEventHandler.h
include/thrift/lib/cpp/Thrift.h
include/thrift/lib/cpp/concurrency/Exception.h
include/thrift/lib/cpp/concurrency/FunctionRunner.h
include/thrift/lib/cpp/concurrency/InitThreadFactory.h
include/thrift/lib/cpp/concurrency/Mutex-portability.h
include/thrift/lib/cpp/concurrency/PosixThreadFactory.h
include/thrift/lib/cpp/concurrency/SFQThreadManager.h
include/thrift/lib/cpp/concurrency/Thread.h
include/thrift/lib/cpp/concurrency/ThreadManager.h
include/thrift/lib/cpp/concurrency/test/ThreadFactoryTests.h
include/thrift/lib/cpp/protocol/TBase64Utils.h
include/thrift/lib/cpp/protocol/TBinaryProtocol-inl.h
include/thrift/lib/cpp/protocol/TBinaryProtocol.h
include/thrift/lib/cpp/protocol/TCompactProtocol-inl.h
include/thrift/lib/cpp/protocol/TCompactProtocol.h
include/thrift/lib/cpp/protocol/TDebugProtocol.h
include/thrift/lib/cpp/protocol/TJSONProtocol.h
include/thrift/lib/cpp/protocol/TProtocol.h
include/thrift/lib/cpp/protocol/TProtocolException.h
include/thrift/lib/cpp/protocol/TProtocolTap.h
include/thrift/lib/cpp/protocol/TProtocolTypes.h
include/thrift/lib/cpp/protocol/TSimpleJSONProtocol.h
include/thrift/lib/cpp/protocol/TType.h
include/thrift/lib/cpp/protocol/TVirtualProtocol.h
include/thrift/lib/cpp/server/TConnectionContext.h
include/thrift/lib/cpp/server/TServerEventHandler.h
include/thrift/lib/cpp/server/TServerObserver.h
include/thrift/lib/cpp/server/test/TrackingTServerEventHandler.h
include/thrift/lib/cpp/test/loadgen/Controller.h
include/thrift/lib/cpp/test/loadgen/GaussianMixtureModel.h
include/thrift/lib/cpp/test/loadgen/IntervalTimer.h
include/thrift/lib/cpp/test/loadgen/LatencyMonitor.h
include/thrift/lib/cpp/test/loadgen/LatencyScoreBoard.h
include/thrift/lib/cpp/test/loadgen/LoadConfig.h
include/thrift/lib/cpp/test/loadgen/Monitor.h
include/thrift/lib/cpp/test/loadgen/OpEnabledState.h
include/thrift/lib/cpp/test/loadgen/QpsMonitor.h
include/thrift/lib/cpp/test/loadgen/QpsScoreBoard.h
include/thrift/lib/cpp/test/loadgen/RNG.h
include/thrift/lib/cpp/test/loadgen/ScoreBoard.h
include/thrift/lib/cpp/test/loadgen/ScoreBoardOpVector.h
include/thrift/lib/cpp/test/loadgen/TerminalMonitor.h
include/thrift/lib/cpp/test/loadgen/WeightedLoadConfig.h
include/thrift/lib/cpp/test/loadgen/Worker.h
include/thrift/lib/cpp/test/loadgen/WorkerIf.h
include/thrift/lib/cpp/test/loadgen/loadgen.h
include/thrift/lib/cpp/thrift_config.h
include/thrift/lib/cpp/transport/TBufferTransports.h
include/thrift/lib/cpp/transport/TFDTransport.h
include/thrift/lib/cpp/transport/THeader.h
include/thrift/lib/cpp/transport/THttpClient.h
include/thrift/lib/cpp/transport/THttpServer.h
include/thrift/lib/cpp/transport/THttpTransport.h
include/thrift/lib/cpp/transport/TNullTransport.h
include/thrift/lib/cpp/transport/TRpcTransport.h
include/thrift/lib/cpp/transport/TShortReadTransport.h
include/thrift/lib/cpp/transport/TSocket.h
include/thrift/lib/cpp/transport/TTransport.h
include/thrift/lib/cpp/transport/TTransportException.h
include/thrift/lib/cpp/transport/TVirtualTransport.h
include/thrift/lib/cpp/transport/TZlibTransport.h
include/thrift/lib/cpp/util/EnumUtils.h
include/thrift/lib/cpp/util/FrozenTestUtil.h
include/thrift/lib/cpp/util/FrozenUtil-inl.h
include/thrift/lib/cpp/util/FrozenUtil.h
include/thrift/lib/cpp/util/PausableTimer.h
include/thrift/lib/cpp/util/SaturatingMath.h
include/thrift/lib/cpp/util/THttpParser.h
include/thrift/lib/cpp/util/VarintUtils-inl.h
include/thrift/lib/cpp/util/VarintUtils.h
include/thrift/lib/cpp/util/test/VarintUtilsTestUtil.h
include/thrift/lib/cpp2/Adapt.h
include/thrift/lib/cpp2/Adapter.h
include/thrift/lib/cpp2/BadFieldAccess.h
include/thrift/lib/cpp2/BoxedValuePtr.h
include/thrift/lib/cpp2/CloneableIOBuf.h
include/thrift/lib/cpp2/FieldRef.h
include/thrift/lib/cpp2/FieldRefHash.h
include/thrift/lib/cpp2/FieldRefTraits.h
include/thrift/lib/cpp2/Flags.h
include/thrift/lib/cpp2/GeneratedCodeHelper.h
include/thrift/lib/cpp2/PluggableFunction.h
include/thrift/lib/cpp2/SerializationSwitch.h
include/thrift/lib/cpp2/Thrift.h
include/thrift/lib/cpp2/TrustedServerException.h
include/thrift/lib/cpp2/TypeClass.h
include/thrift/lib/cpp2/async/AlwaysAllowSheddingInteractionOverloadPolicy.h
include/thrift/lib/cpp2/async/AsyncClient.h
include/thrift/lib/cpp2/async/AsyncProcessor.h
include/thrift/lib/cpp2/async/AsyncProcessorFactory.h
include/thrift/lib/cpp2/async/AsyncProcessorHelper.h
include/thrift/lib/cpp2/async/BiDiStream.h
include/thrift/lib/cpp2/async/ChannelCallbacks.h
include/thrift/lib/cpp2/async/ClientBiDiBridge.h
include/thrift/lib/cpp2/async/ClientBufferedStream.h
include/thrift/lib/cpp2/async/ClientChannel.h
include/thrift/lib/cpp2/async/ClientInterceptor.h
include/thrift/lib/cpp2/async/ClientInterceptorBase.h
include/thrift/lib/cpp2/async/ClientInterceptorControl.h
include/thrift/lib/cpp2/async/ClientInterceptorStorage.h
include/thrift/lib/cpp2/async/ClientSinkBridge.h
include/thrift/lib/cpp2/async/ClientStreamBridge.h
include/thrift/lib/cpp2/async/Cpp2Channel.h
include/thrift/lib/cpp2/async/DuplexChannel.h
include/thrift/lib/cpp2/async/FramingHandler.h
include/thrift/lib/cpp2/async/FutureRequest.h
include/thrift/lib/cpp2/async/GuardedRequestChannel-inl.h
include/thrift/lib/cpp2/async/GuardedRequestChannel.h
include/thrift/lib/cpp2/async/HTTPClientChannel.h
include/thrift/lib/cpp2/async/HeaderChannel.h
include/thrift/lib/cpp2/async/HeaderChannelTrait.h
include/thrift/lib/cpp2/async/HeaderClientChannel.h
include/thrift/lib/cpp2/async/HeaderServerChannel.h
include/thrift/lib/cpp2/async/HibernatingRequestChannel.h
include/thrift/lib/cpp2/async/Interaction.h
include/thrift/lib/cpp2/async/InteractionOverloadPolicy.h
include/thrift/lib/cpp2/async/InterceptorFlags.h
include/thrift/lib/cpp2/async/InterceptorFrameworkMetadata.h
include/thrift/lib/cpp2/async/MessageChannel.h
include/thrift/lib/cpp2/async/MultiplexAsyncProcessor.h
include/thrift/lib/cpp2/async/PooledRequestChannel.h
include/thrift/lib/cpp2/async/PreprocessingAsyncProcessorWrapper.h
include/thrift/lib/cpp2/async/ReconnectingRequestChannel.h
include/thrift/lib/cpp2/async/ReplyInfo.h
include/thrift/lib/cpp2/async/RequestCallback.h
include/thrift/lib/cpp2/async/RequestChannel.h
include/thrift/lib/cpp2/async/ResponseChannel.h
include/thrift/lib/cpp2/async/RetryingRequestChannel.h
include/thrift/lib/cpp2/async/RocketClientChannel.h
include/thrift/lib/cpp2/async/RpcOptions.h
include/thrift/lib/cpp2/async/RpcTypes.h
include/thrift/lib/cpp2/async/ServerBiDiSinkBridge.h
include/thrift/lib/cpp2/async/ServerBiDiStreamBridge.h
include/thrift/lib/cpp2/async/ServerBiDiStreamFactory.h
include/thrift/lib/cpp2/async/ServerCallbackStapler.h
include/thrift/lib/cpp2/async/ServerChannel.h
include/thrift/lib/cpp2/async/ServerGeneratorStreamBridge.h
include/thrift/lib/cpp2/async/ServerPublisherStream.h
include/thrift/lib/cpp2/async/ServerRequestData.h
include/thrift/lib/cpp2/async/ServerSinkBridge.h
include/thrift/lib/cpp2/async/ServerStream-inl.h
include/thrift/lib/cpp2/async/ServerStream.h
include/thrift/lib/cpp2/async/ServerStreamDetail.h
include/thrift/lib/cpp2/async/ServerStreamMultiPublisher.h
include/thrift/lib/cpp2/async/ServiceInfoHolder.h
include/thrift/lib/cpp2/async/ServiceRequestInfo.h
include/thrift/lib/cpp2/async/Sink.h
include/thrift/lib/cpp2/async/StreamCallbacks.h
include/thrift/lib/cpp2/async/StreamPayload.h
include/thrift/lib/cpp2/async/TAsyncTransportHandler.h
include/thrift/lib/cpp2/async/TerminateInteractionOverloadPolicy.h
include/thrift/lib/cpp2/async/TwoWayBridge.h
include/thrift/lib/cpp2/async/TwoWayBridgeUtil.h
include/thrift/lib/cpp2/async/metadata/CursorBasedRequestRpcMetadataAdapter.h
include/thrift/lib/cpp2/async/metadata/RequestRpcMetadataAdapter.h
include/thrift/lib/cpp2/async/metadata/RequestRpcMetadataFacade.h
include/thrift/lib/cpp2/async/metadata/TCompactRequestRpcMetadataAdapter.h
include/thrift/lib/cpp2/async/processor/AsyncProcessor.h
include/thrift/lib/cpp2/async/processor/AsyncProcessorFunc.h
include/thrift/lib/cpp2/async/processor/EventTask.h
include/thrift/lib/cpp2/async/processor/GeneratedAsyncProcessorBase.h
include/thrift/lib/cpp2/async/processor/HandlerCallback.h
include/thrift/lib/cpp2/async/processor/HandlerCallbackBase.h
include/thrift/lib/cpp2/async/processor/HandlerCallbackOneWay.h
include/thrift/lib/cpp2/async/processor/RequestParams.h
include/thrift/lib/cpp2/async/processor/RequestTask.h
include/thrift/lib/cpp2/async/processor/ServerInterface.h
include/thrift/lib/cpp2/async/processor/ServerRequest.h
include/thrift/lib/cpp2/async/processor/ServerRequestHelper.h
include/thrift/lib/cpp2/async/processor/ServerRequestTask.h
include/thrift/lib/cpp2/async/processor/ServiceHandlerBase.h
include/thrift/lib/cpp2/async/tests/ClientInterceptorWithResponseValue.h
include/thrift/lib/cpp2/async/tests/util/BiDiConfigurableServer.h
include/thrift/lib/cpp2/async/tests/util/BiDiEchoServer.h
include/thrift/lib/cpp2/async/tests/util/BiDiFiniteClient.h
include/thrift/lib/cpp2/async/tests/util/BiDiFiniteServer.h
include/thrift/lib/cpp2/async/tests/util/BiDiSimplifiedEchoClient.h
include/thrift/lib/cpp2/async/tests/util/BiDiSimplifiedEchoServer.h
include/thrift/lib/cpp2/async/tests/util/BiDiTestUtil.h
include/thrift/lib/cpp2/async/tests/util/TestSinkService.h
include/thrift/lib/cpp2/async/tests/util/TestStreamService.h
include/thrift/lib/cpp2/async/tests/util/Util.h
include/thrift/lib/cpp2/debug_thrift_data_difference/debug.h
include/thrift/lib/cpp2/debug_thrift_data_difference/detail/debug-inl-post.h
include/thrift/lib/cpp2/debug_thrift_data_difference/detail/debug-inl-pre.h
include/thrift/lib/cpp2/debug_thrift_data_difference/detail/pretty_print-inl-post.h
include/thrift/lib/cpp2/debug_thrift_data_difference/detail/pretty_print-inl-pre.h
include/thrift/lib/cpp2/debug_thrift_data_difference/diff.h
include/thrift/lib/cpp2/debug_thrift_data_difference/pretty_print.h
include/thrift/lib/cpp2/detail/EventHandlerRuntime.h
include/thrift/lib/cpp2/detail/Isset.h
include/thrift/lib/cpp2/detail/meta.h
include/thrift/lib/cpp2/dynamic/Any.h
include/thrift/lib/cpp2/dynamic/Binary.h
include/thrift/lib/cpp2/dynamic/DynamicValue.h
include/thrift/lib/cpp2/dynamic/List.h
include/thrift/lib/cpp2/dynamic/Map.h
include/thrift/lib/cpp2/dynamic/SerializableRecord.h
include/thrift/lib/cpp2/dynamic/SerializableTypeSystemBuilder.h
include/thrift/lib/cpp2/dynamic/Serialization.h
include/thrift/lib/cpp2/dynamic/Set.h
include/thrift/lib/cpp2/dynamic/String.h
include/thrift/lib/cpp2/dynamic/Struct.h
include/thrift/lib/cpp2/dynamic/TypeId.h
include/thrift/lib/cpp2/dynamic/TypeSystem.h
include/thrift/lib/cpp2/dynamic/TypeSystemBuilder.h
include/thrift/lib/cpp2/dynamic/TypeSystemTraits.h
include/thrift/lib/cpp2/dynamic/Union.h
include/thrift/lib/cpp2/dynamic/detail/ConcreteList.h
include/thrift/lib/cpp2/dynamic/detail/ConcreteMap.h
include/thrift/lib/cpp2/dynamic/detail/ConcreteSet.h
include/thrift/lib/cpp2/dynamic/detail/ConcreteTypes.h
include/thrift/lib/cpp2/dynamic/detail/Datum.h
include/thrift/lib/cpp2/dynamic/detail/DatumHash.h
include/thrift/lib/cpp2/dynamic/detail/ListIteratorBase.h
include/thrift/lib/cpp2/dynamic/detail/SmallBuffer.h
include/thrift/lib/cpp2/dynamic/detail/Traits.h
include/thrift/lib/cpp2/dynamic/detail/TypeSystem.h
include/thrift/lib/cpp2/dynamic/fwd.h
include/thrift/lib/cpp2/folly_dynamic/folly_dynamic.h
include/thrift/lib/cpp2/folly_dynamic/internal/folly_dynamic-inl-post.h
include/thrift/lib/cpp2/folly_dynamic/internal/folly_dynamic-inl-pre.h
include/thrift/lib/cpp2/frozen/Fast64BitRemainderCalculator.h
include/thrift/lib/cpp2/frozen/FixedSizeStringHash.h
include/thrift/lib/cpp2/frozen/Frozen.h
include/thrift/lib/cpp2/frozen/FrozenAssociative-inl.h
include/thrift/lib/cpp2/frozen/FrozenBool-inl.h
include/thrift/lib/cpp2/frozen/FrozenEnum-inl.h
include/thrift/lib/cpp2/frozen/FrozenExcluded-inl.h
include/thrift/lib/cpp2/frozen/FrozenFixedSizeString-inl.h
include/thrift/lib/cpp2/frozen/FrozenHashTable-inl.h
include/thrift/lib/cpp2/frozen/FrozenIntegral-inl.h
include/thrift/lib/cpp2/frozen/FrozenMacros.h
include/thrift/lib/cpp2/frozen/FrozenOptional-inl.h
include/thrift/lib/cpp2/frozen/FrozenOrderedTable-inl.h
include/thrift/lib/cpp2/frozen/FrozenPair-inl.h
include/thrift/lib/cpp2/frozen/FrozenRange-inl.h
include/thrift/lib/cpp2/frozen/FrozenRef-inl.h
include/thrift/lib/cpp2/frozen/FrozenString-inl.h
include/thrift/lib/cpp2/frozen/FrozenTestUtil.h
include/thrift/lib/cpp2/frozen/FrozenTrivial-inl.h
include/thrift/lib/cpp2/frozen/FrozenUtil.h
include/thrift/lib/cpp2/frozen/HintTypes.h
include/thrift/lib/cpp2/frozen/Traits.h
include/thrift/lib/cpp2/frozen/VectorAssociative.h
include/thrift/lib/cpp2/frozen/schema/MemorySchema.h
include/thrift/lib/cpp2/gen/client_cpp.h
include/thrift/lib/cpp2/gen/client_h.h
include/thrift/lib/cpp2/gen/module_constants_cpp.h
include/thrift/lib/cpp2/gen/module_constants_h.h
include/thrift/lib/cpp2/gen/module_data_cpp.h
include/thrift/lib/cpp2/gen/module_data_h.h
include/thrift/lib/cpp2/gen/module_metadata_h.h
include/thrift/lib/cpp2/gen/module_method_decorator_h.h
include/thrift/lib/cpp2/gen/module_sinit_cpp.h
include/thrift/lib/cpp2/gen/module_types_cpp.h
include/thrift/lib/cpp2/gen/module_types_h.h
include/thrift/lib/cpp2/gen/module_types_tcc.h
include/thrift/lib/cpp2/gen/service_cpp.h
include/thrift/lib/cpp2/gen/service_h.h
include/thrift/lib/cpp2/gen/service_tcc.h
include/thrift/lib/cpp2/hash/DeterministicHash.h
include/thrift/lib/cpp2/op/Clear.h
include/thrift/lib/cpp2/op/Compare.h
include/thrift/lib/cpp2/op/Copy.h
include/thrift/lib/cpp2/op/Create.h
include/thrift/lib/cpp2/op/DeterministicAccumulator.h
include/thrift/lib/cpp2/op/Encode.h
include/thrift/lib/cpp2/op/Get.h
include/thrift/lib/cpp2/op/Hash.h
include/thrift/lib/cpp2/op/Patch.h
include/thrift/lib/cpp2/op/PatchTraits.h
include/thrift/lib/cpp2/op/Serializer.h
include/thrift/lib/cpp2/op/Sha256Hasher.h
include/thrift/lib/cpp2/op/StdHasher.h
include/thrift/lib/cpp2/op/StdSerializer.h
include/thrift/lib/cpp2/op/Testing.h
include/thrift/lib/cpp2/op/Xxh64Hasher.h
include/thrift/lib/cpp2/op/detail/AnyOp.h
include/thrift/lib/cpp2/op/detail/AssignPatch.h
include/thrift/lib/cpp2/op/detail/AssignPatchImpl.h
include/thrift/lib/cpp2/op/detail/BaseOp.h
include/thrift/lib/cpp2/op/detail/BasePatch.h
include/thrift/lib/cpp2/op/detail/Clear.h
include/thrift/lib/cpp2/op/detail/Compare.h
include/thrift/lib/cpp2/op/detail/ContainerOp.h
include/thrift/lib/cpp2/op/detail/ContainerPatch.h
include/thrift/lib/cpp2/op/detail/Copy.h
include/thrift/lib/cpp2/op/detail/Create.h
include/thrift/lib/cpp2/op/detail/Encode.h
include/thrift/lib/cpp2/op/detail/Hash.h
include/thrift/lib/cpp2/op/detail/HashProtocol.h
include/thrift/lib/cpp2/op/detail/Patch.h
include/thrift/lib/cpp2/op/detail/PatchTraits.h
include/thrift/lib/cpp2/op/detail/StructOp.h
include/thrift/lib/cpp2/op/detail/StructPatch.h
include/thrift/lib/cpp2/op/detail/StructPatchImpl.h
include/thrift/lib/cpp2/op/detail/ValueOp.h
include/thrift/lib/cpp2/op/detail/ValuePatch.h
include/thrift/lib/cpp2/patch/DynamicPatch.h
include/thrift/lib/cpp2/patch/detail/PatchBadge.h
include/thrift/lib/cpp2/patch/detail/TaggedPatch.h
include/thrift/lib/cpp2/protocol/BinaryProtocol-inl.h
include/thrift/lib/cpp2/protocol/BinaryProtocol.h
include/thrift/lib/cpp2/protocol/CompactProtocol-inl.h
include/thrift/lib/cpp2/protocol/CompactProtocol.h
include/thrift/lib/cpp2/protocol/CompactV1Protocol-inl.h
include/thrift/lib/cpp2/protocol/CompactV1Protocol.h
include/thrift/lib/cpp2/protocol/Cpp2Ops-inl.h
include/thrift/lib/cpp2/protocol/Cpp2Ops.h
include/thrift/lib/cpp2/protocol/CursorBasedSerializer.h
include/thrift/lib/cpp2/protocol/DebugProtocol.h
include/thrift/lib/cpp2/protocol/FieldMask.h
include/thrift/lib/cpp2/protocol/FieldMaskRef.h
include/thrift/lib/cpp2/protocol/GetStandardProtocol.h
include/thrift/lib/cpp2/protocol/JSONProtocol-inl.h
include/thrift/lib/cpp2/protocol/JSONProtocol.h
include/thrift/lib/cpp2/protocol/JSONProtocolCommon-inl.h
include/thrift/lib/cpp2/protocol/JSONProtocolCommon.h
include/thrift/lib/cpp2/protocol/LazyDeserializationFlags.h
include/thrift/lib/cpp2/protocol/NativeObject-inl.h
include/thrift/lib/cpp2/protocol/NativeObject.h
include/thrift/lib/cpp2/protocol/Object.h
include/thrift/lib/cpp2/protocol/Ops.h
include/thrift/lib/cpp2/protocol/Patch.h
include/thrift/lib/cpp2/protocol/Protocol.h
include/thrift/lib/cpp2/protocol/ProtocolReaderStructReadState.h
include/thrift/lib/cpp2/protocol/ProtocolReaderWireTypeInfo.h
include/thrift/lib/cpp2/protocol/ProtocolReaderWithRefill.h
include/thrift/lib/cpp2/protocol/SchemaValidator.h
include/thrift/lib/cpp2/protocol/Serializer.h
include/thrift/lib/cpp2/protocol/SimpleJSONProtocol-inl.h
include/thrift/lib/cpp2/protocol/SimpleJSONProtocol.h
include/thrift/lib/cpp2/protocol/TableBasedForwardTypes.h
include/thrift/lib/cpp2/protocol/TableBasedSerializer.h
include/thrift/lib/cpp2/protocol/TableBasedSerializerImpl.h
include/thrift/lib/cpp2/protocol/Traits.h
include/thrift/lib/cpp2/protocol/VirtualProtocol.h
include/thrift/lib/cpp2/protocol/benchmark/ThriftProtocolBenchmarkHelper.h
include/thrift/lib/cpp2/protocol/benchmark/gen/CarbonTestData.h
include/thrift/lib/cpp2/protocol/benchmark/gen/CarbonTestDataMessages-inl.h
include/thrift/lib/cpp2/protocol/benchmark/gen/CarbonTestDataMessages.h
include/thrift/lib/cpp2/protocol/detail/CursorBasedSerialization.h
include/thrift/lib/cpp2/protocol/detail/DynamicCursorSerializer.h
include/thrift/lib/cpp2/protocol/detail/FieldMask.h
include/thrift/lib/cpp2/protocol/detail/FieldMaskUtil.h
include/thrift/lib/cpp2/protocol/detail/Object.h
include/thrift/lib/cpp2/protocol/detail/PaddedBinaryAdapter.h
include/thrift/lib/cpp2/protocol/detail/Patch.h
include/thrift/lib/cpp2/protocol/detail/ReservedId.h
include/thrift/lib/cpp2/protocol/detail/index.h
include/thrift/lib/cpp2/protocol/detail/protocol_methods.h
include/thrift/lib/cpp2/reflection/gmock_matching.h
include/thrift/lib/cpp2/reflection/helpers.h
include/thrift/lib/cpp2/reflection/indenter.h
include/thrift/lib/cpp2/reflection/internal/helpers-inl-pre.h
include/thrift/lib/cpp2/reflection/internal/legacy_reflection-inl-post.h
include/thrift/lib/cpp2/reflection/internal/legacy_reflection-inl-pre.h
include/thrift/lib/cpp2/reflection/internal/legacy_reflection_type_id.h
include/thrift/lib/cpp2/reflection/internal/merge-inl-post.h
include/thrift/lib/cpp2/reflection/internal/reflection-inl-post.h
include/thrift/lib/cpp2/reflection/internal/reflection-inl-pre.h
include/thrift/lib/cpp2/reflection/internal/test_helpers.h
include/thrift/lib/cpp2/reflection/invoke_by_field_name.h
include/thrift/lib/cpp2/reflection/legacy_reflection.h
include/thrift/lib/cpp2/reflection/merge.h
include/thrift/lib/cpp2/reflection/populator.h
include/thrift/lib/cpp2/reflection/reflection.h
include/thrift/lib/cpp2/reflection/testing.h
include/thrift/lib/cpp2/reflection/variant.h
include/thrift/lib/cpp2/runtime/BaseSchemaRegistry.h
include/thrift/lib/cpp2/runtime/Init.h
include/thrift/lib/cpp2/runtime/SchemaRegistry.h
include/thrift/lib/cpp2/schema/SchemaV1.h
include/thrift/lib/cpp2/schema/SyntaxGraph.h
include/thrift/lib/cpp2/schema/detail/Merge.h
include/thrift/lib/cpp2/schema/detail/Resolver.h
include/thrift/lib/cpp2/schema/detail/SchemaBackedResolver.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_clients.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_constants.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_data.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_for_each_field.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_handlers.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_metadata.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_types.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_types.tcc
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_types_custom_protocol.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_types_fwd.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_visit_by_thrift_field_metadata.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_visit_union.h
include/thrift/lib/cpp2/schema/gen-cpp2/syntax_graph_visitation.h
include/thrift/lib/cpp2/security/AsyncStopTLS.h
include/thrift/lib/cpp2/security/FizzPeeker.h
include/thrift/lib/cpp2/security/SSLUtil.h
include/thrift/lib/cpp2/security/extensions/ThriftParametersClientExtension.h
include/thrift/lib/cpp2/security/extensions/ThriftParametersContext.h
include/thrift/lib/cpp2/security/extensions/ThriftParametersServerExtension.h
include/thrift/lib/cpp2/security/extensions/Types.h
include/thrift/lib/cpp2/server/AdaptiveConcurrency.h
include/thrift/lib/cpp2/server/CPUConcurrencyController.h
include/thrift/lib/cpp2/server/ConcurrencyControllerBase.h
include/thrift/lib/cpp2/server/ConcurrencyControllerInterface.h
include/thrift/lib/cpp2/server/ControlServerInterface.h
include/thrift/lib/cpp2/server/Cpp2ConnContext.h
include/thrift/lib/cpp2/server/Cpp2Connection.h
include/thrift/lib/cpp2/server/Cpp2Worker.h
include/thrift/lib/cpp2/server/DecoratorArgType.h
include/thrift/lib/cpp2/server/DecoratorData.h
include/thrift/lib/cpp2/server/DecoratorDataHandle.h
include/thrift/lib/cpp2/server/DecoratorDataKey.h
include/thrift/lib/cpp2/server/DecoratorDataRuntime.h
include/thrift/lib/cpp2/server/DecoratorDataStorage.h
include/thrift/lib/cpp2/server/ExecutorToThreadManagerAdaptor.h
include/thrift/lib/cpp2/server/IOUringUtil.h
include/thrift/lib/cpp2/server/IOWorkerContext.h
include/thrift/lib/cpp2/server/IResourcePoolAcceptor.h
include/thrift/lib/cpp2/server/LegacyHeaderRoutingHandler.h
include/thrift/lib/cpp2/server/LoggingEvent.h
include/thrift/lib/cpp2/server/LoggingEventHelper.h
include/thrift/lib/cpp2/server/LoggingEventTransportMetadata.h
include/thrift/lib/cpp2/server/MemoryTracker.h
include/thrift/lib/cpp2/server/MonitoringMethodNames.h
include/thrift/lib/cpp2/server/MonitoringServerInterface.h
include/thrift/lib/cpp2/server/Overload.h
include/thrift/lib/cpp2/server/ParallelConcurrencyController.h
include/thrift/lib/cpp2/server/PerturbSource.h
include/thrift/lib/cpp2/server/PolledServiceHealth.h
include/thrift/lib/cpp2/server/PreprocessFunctions.h
include/thrift/lib/cpp2/server/PreprocessParams.h
include/thrift/lib/cpp2/server/PreprocessResult.h
include/thrift/lib/cpp2/server/ReactiveToggle.h
include/thrift/lib/cpp2/server/RequestCompletionCallback.h
include/thrift/lib/cpp2/server/RequestDebugLog.h
include/thrift/lib/cpp2/server/RequestExpirationDelegate.h
include/thrift/lib/cpp2/server/RequestPileBase.h
include/thrift/lib/cpp2/server/RequestPileInterface.h
include/thrift/lib/cpp2/server/RequestsRegistry.h
include/thrift/lib/cpp2/server/ResourcePool.h
include/thrift/lib/cpp2/server/ResourcePoolHandle.h
include/thrift/lib/cpp2/server/ResourcePoolMigrationHelper.h
include/thrift/lib/cpp2/server/ResourcePoolSet.h
include/thrift/lib/cpp2/server/RoundRobinRequestPile.h
include/thrift/lib/cpp2/server/SecurityServerInterface.h
include/thrift/lib/cpp2/server/ServerAttribute.h
include/thrift/lib/cpp2/server/ServerConfigs.h
include/thrift/lib/cpp2/server/ServerFlags.h
include/thrift/lib/cpp2/server/ServerInstrumentation.h
include/thrift/lib/cpp2/server/ServerModule.h
include/thrift/lib/cpp2/server/ServiceHealthPoller.h
include/thrift/lib/cpp2/server/ServiceInterceptor.h
include/thrift/lib/cpp2/server/ServiceInterceptorBase.h
include/thrift/lib/cpp2/server/ServiceInterceptorControl.h
include/thrift/lib/cpp2/server/ServiceInterceptorQualifiedName.h
include/thrift/lib/cpp2/server/ServiceInterceptorStorage.h
include/thrift/lib/cpp2/server/ServiceMethodDecoratorBase.h
include/thrift/lib/cpp2/server/StandardConcurrencyController.h
include/thrift/lib/cpp2/server/StatusServerInterface.h
include/thrift/lib/cpp2/server/TMConcurrencyController.h
include/thrift/lib/cpp2/server/ThreadManagerLoggingWrapper.h
include/thrift/lib/cpp2/server/ThriftProcessor.h
include/thrift/lib/cpp2/server/ThriftQuicServer.h
include/thrift/lib/cpp2/server/ThriftServer.h
include/thrift/lib/cpp2/server/ThriftServerConfig.h
include/thrift/lib/cpp2/server/ThriftServerInternals.h
include/thrift/lib/cpp2/server/TokenBucketConcurrencyController.h
include/thrift/lib/cpp2/server/TransportRoutingHandler.h
include/thrift/lib/cpp2/server/WeightedRequestPileQueue-inl.h
include/thrift/lib/cpp2/server/WeightedRequestPileQueue.h
include/thrift/lib/cpp2/server/metrics/InterceptorMetricCallback.h
include/thrift/lib/cpp2/server/metrics/PendingConnectionsMetrics.h
include/thrift/lib/cpp2/server/metrics/StreamMetricCallback.h
include/thrift/lib/cpp2/server/overload/ChainedOverloadChecker.h
include/thrift/lib/cpp2/server/overload/CurrentlyOverloadedChecker.h
include/thrift/lib/cpp2/server/overload/IOverloadChecker.h
include/thrift/lib/cpp2/server/overload/NoOpOverloadChecker.h
include/thrift/lib/cpp2/server/overload/OverloadCheckerFactory.h
include/thrift/lib/cpp2/server/overload/QpsOverloadChecker.h
include/thrift/lib/cpp2/server/overload/QueueConcurrencyOverloadChecker.h
include/thrift/lib/cpp2/server/peeking/PeekingManager.h
include/thrift/lib/cpp2/server/peeking/TLSHelper.h
include/thrift/lib/cpp2/server/test/RequestPileTestUtils.h
include/thrift/lib/cpp2/server/test/ServiceMethodDecoratorTestLib.h
include/thrift/lib/cpp2/server/test/util/MockServerConfigs.h
include/thrift/lib/cpp2/test/FlagTestUtils.h
include/thrift/lib/cpp2/test/Matcher.h
include/thrift/lib/cpp2/test/MockCpp2ConnContext.h
include/thrift/lib/cpp2/test/ObjectBenchUtils.h
include/thrift/lib/cpp2/test/ProtoBufStructs-inl.h
include/thrift/lib/cpp2/test/Structs.h
include/thrift/lib/cpp2/test/ThriftStructs-inl.h
include/thrift/lib/cpp2/test/server/ThriftServerTestUtils.h
include/thrift/lib/cpp2/test/util/FakeClock.h
include/thrift/lib/cpp2/test/util/TestHandler.h
include/thrift/lib/cpp2/test/util/TestServerFactory.h
include/thrift/lib/cpp2/test/util/TestThriftServerFactory.h
include/thrift/lib/cpp2/test/util/TrackingTProcessorEventHandler.h
include/thrift/lib/cpp2/transport/core/ClientConnectionIf.h
include/thrift/lib/cpp2/transport/core/EnvelopeUtil.h
include/thrift/lib/cpp2/transport/core/ManagedConnectionIf.h
include/thrift/lib/cpp2/transport/core/RequestStateMachine.h
include/thrift/lib/cpp2/transport/core/RpcMetadataPlugins.h
include/thrift/lib/cpp2/transport/core/RpcMetadataUtil.h
include/thrift/lib/cpp2/transport/core/SendCallbacks.h
include/thrift/lib/cpp2/transport/core/ThriftChannelIf.h
include/thrift/lib/cpp2/transport/core/ThriftClient.h
include/thrift/lib/cpp2/transport/core/ThriftClientCallback.h
include/thrift/lib/cpp2/transport/core/ThriftRequest.h
include/thrift/lib/cpp2/transport/core/TryUtil.h
include/thrift/lib/cpp2/transport/core/testutil/CoreTestFixture.h
include/thrift/lib/cpp2/transport/core/testutil/FakeChannel.h
include/thrift/lib/cpp2/transport/core/testutil/FakeServerObserver.h
include/thrift/lib/cpp2/transport/core/testutil/FakeThreadManager.h
include/thrift/lib/cpp2/transport/core/testutil/MockCallback.h
include/thrift/lib/cpp2/transport/core/testutil/ServerConfigsMock.h
include/thrift/lib/cpp2/transport/core/testutil/TAsyncSocketIntercepted.h
include/thrift/lib/cpp2/transport/core/testutil/TestServiceMock.h
include/thrift/lib/cpp2/transport/core/testutil/TransportCompatibilityTest.h
include/thrift/lib/cpp2/transport/http2/client/H2ClientConnection.h
include/thrift/lib/cpp2/transport/http2/client/ThriftTransactionHandler.h
include/thrift/lib/cpp2/transport/http2/common/H2Channel.h
include/thrift/lib/cpp2/transport/http2/common/HTTP2RoutingHandler.h
include/thrift/lib/cpp2/transport/http2/common/SingleRpcChannel.h
include/thrift/lib/cpp2/transport/http2/common/testutil/ChannelTestFixture.h
include/thrift/lib/cpp2/transport/http2/common/testutil/FakeProcessors.h
include/thrift/lib/cpp2/transport/http2/common/testutil/FakeResponseHandler.h
include/thrift/lib/cpp2/transport/http2/server/ThriftRequestHandler.h
include/thrift/lib/cpp2/transport/rocket/ChecksumGenerator.h
include/thrift/lib/cpp2/transport/rocket/FdSocket.h
include/thrift/lib/cpp2/transport/rocket/RequestPayload.h
include/thrift/lib/cpp2/transport/rocket/RocketException.h
include/thrift/lib/cpp2/transport/rocket/Types.h
include/thrift/lib/cpp2/transport/rocket/client/KeepAliveWatcher.h
include/thrift/lib/cpp2/transport/rocket/client/RequestContext.h
include/thrift/lib/cpp2/transport/rocket/client/RequestContextQueue.h
include/thrift/lib/cpp2/transport/rocket/client/RocketBiDiServerCallback.h
include/thrift/lib/cpp2/transport/rocket/client/RocketClient.h
include/thrift/lib/cpp2/transport/rocket/client/RocketSinkServerCallback.h
include/thrift/lib/cpp2/transport/rocket/client/RocketStreamServerCallback.h
include/thrift/lib/cpp2/transport/rocket/client/RocketStreamServerCallbackWithChunkTimeout.h
include/thrift/lib/cpp2/transport/rocket/compression/CompressionAlgorithmSelector.h
include/thrift/lib/cpp2/transport/rocket/compression/CompressionManager.h
include/thrift/lib/cpp2/transport/rocket/compression/CustomCompressor.h
include/thrift/lib/cpp2/transport/rocket/compression/CustomCompressorFactory.h
include/thrift/lib/cpp2/transport/rocket/compression/CustomCompressorRegistry.h
include/thrift/lib/cpp2/transport/rocket/core/FrameUtil.h
include/thrift/lib/cpp2/transport/rocket/core/RingBuffer.h
include/thrift/lib/cpp2/transport/rocket/core/StreamUtil.h
include/thrift/lib/cpp2/transport/rocket/flush/FlushManager.h
include/thrift/lib/cpp2/transport/rocket/framing/ErrorCode.h
include/thrift/lib/cpp2/transport/rocket/framing/Flags.h
include/thrift/lib/cpp2/transport/rocket/framing/FrameDataFirstFieldAligner.h
include/thrift/lib/cpp2/transport/rocket/framing/FrameType.h
include/thrift/lib/cpp2/transport/rocket/framing/Frames.h
include/thrift/lib/cpp2/transport/rocket/framing/Parser.h
include/thrift/lib/cpp2/transport/rocket/framing/Serializer.h
include/thrift/lib/cpp2/transport/rocket/framing/Util.h
include/thrift/lib/cpp2/transport/rocket/framing/parser/AlignedParserStrategy.h
include/thrift/lib/cpp2/transport/rocket/framing/parser/AllocatingParserStrategy.h
include/thrift/lib/cpp2/transport/rocket/framing/parser/FrameLengthParserStrategy-inl.h
include/thrift/lib/cpp2/transport/rocket/framing/parser/FrameLengthParserStrategy.h
include/thrift/lib/cpp2/transport/rocket/framing/parser/ParserStrategy.h
include/thrift/lib/cpp2/transport/rocket/framing/parser/test/TestUtil.h
include/thrift/lib/cpp2/transport/rocket/framing/test/Util.h
include/thrift/lib/cpp2/transport/rocket/payload/ChecksumPayloadSerializerStrategy.h
include/thrift/lib/cpp2/transport/rocket/payload/CustomCompressionPayloadSerializerStrategy.h
include/thrift/lib/cpp2/transport/rocket/payload/DefaultPayloadSerializerStrategy.h
include/thrift/lib/cpp2/transport/rocket/payload/PayloadSerializer.h
include/thrift/lib/cpp2/transport/rocket/payload/PayloadSerializerStrategy.h
include/thrift/lib/cpp2/transport/rocket/server/IRocketServerConnection.h
include/thrift/lib/cpp2/transport/rocket/server/InteractionOverload.h
include/thrift/lib/cpp2/transport/rocket/server/RefactoredRocketServerConnection.h
include/thrift/lib/cpp2/transport/rocket/server/RocketBiDiClientCallback.h
include/thrift/lib/cpp2/transport/rocket/server/RocketRoutingHandler.h
include/thrift/lib/cpp2/transport/rocket/server/RocketServerConnection.h
include/thrift/lib/cpp2/transport/rocket/server/RocketServerConnectionFactory.h
include/thrift/lib/cpp2/transport/rocket/server/RocketServerConnectionObserver.h
include/thrift/lib/cpp2/transport/rocket/server/RocketServerConnectionPlugins.h
include/thrift/lib/cpp2/transport/rocket/server/RocketServerFrameContext.h
include/thrift/lib/cpp2/transport/rocket/server/RocketServerHandler.h
include/thrift/lib/cpp2/transport/rocket/server/RocketSinkClientCallback.h
include/thrift/lib/cpp2/transport/rocket/server/RocketStreamClientCallback.h
include/thrift/lib/cpp2/transport/rocket/server/RocketThriftRequests.h
include/thrift/lib/cpp2/transport/rocket/server/SetupFrameHandler.h
include/thrift/lib/cpp2/transport/rocket/server/SetupFrameInterceptor.h
include/thrift/lib/cpp2/transport/rocket/server/ThriftRocketServerHandler.h
include/thrift/lib/cpp2/transport/rocket/server/detail/ConnectionAdapter.h
include/thrift/lib/cpp2/transport/rocket/server/detail/ConnectionBufferCallback.h
include/thrift/lib/cpp2/transport/rocket/server/detail/ConnectionWriterCallback.h
include/thrift/lib/cpp2/transport/rocket/server/detail/ExistingStreamFrameHandler.h
include/thrift/lib/cpp2/transport/rocket/server/detail/IncomingFrameBatcher.h
include/thrift/lib/cpp2/transport/rocket/server/detail/IncomingFrameHandler.h
include/thrift/lib/cpp2/transport/rocket/server/detail/KeepAliveHandler.h
include/thrift/lib/cpp2/transport/rocket/server/detail/MetadataPushHandler.h
include/thrift/lib/cpp2/transport/rocket/server/detail/OutgoingFrameHandler.h
include/thrift/lib/cpp2/transport/rocket/server/detail/RequestChannelHandler.h
include/thrift/lib/cpp2/transport/rocket/server/detail/RequestFnfHandler.h
include/thrift/lib/cpp2/transport/rocket/server/detail/RequestResponseHandler.h
include/thrift/lib/cpp2/transport/rocket/server/detail/RequestStreamHandler.h
include/thrift/lib/cpp2/transport/rocket/server/detail/SetupFrameAcceptor.h
include/thrift/lib/cpp2/transport/rocket/server/detail/SinkCallbackManager.h
include/thrift/lib/cpp2/transport/rocket/server/detail/StreamCallbackManager.h
include/thrift/lib/cpp2/transport/rocket/server/detail/WriteBatchTypes.h
include/thrift/lib/cpp2/transport/rocket/server/detail/WriteBatcher.h
include/thrift/lib/cpp2/transport/rocket/test/fuzz/FuzzUtil.h
include/thrift/lib/cpp2/transport/rocket/test/network/ClientServerTestUtil.h
include/thrift/lib/cpp2/transport/rocket/test/network/Mocks.h
include/thrift/lib/cpp2/transport/rocket/test/network/Util.h
include/thrift/lib/cpp2/transport/rocket/test/util/FdUtils.h
include/thrift/lib/cpp2/transport/rocket/test/util/TestServiceMock.h
include/thrift/lib/cpp2/transport/rocket/test/util/TestUtil.h
include/thrift/lib/cpp2/transport/rocket/test/util/VersionServicesMock.h
include/thrift/lib/cpp2/transport/util/ConnectionManager.h
include/thrift/lib/cpp2/transport/util/ConnectionThread.h
include/thrift/lib/cpp2/type/AlignedPtr.h
include/thrift/lib/cpp2/type/Any.h
include/thrift/lib/cpp2/type/AnyDebugWriter.h
include/thrift/lib/cpp2/type/AnyValue.h
include/thrift/lib/cpp2/type/BaseType.h
include/thrift/lib/cpp2/type/Field.h
include/thrift/lib/cpp2/type/Id.h
include/thrift/lib/cpp2/type/Name.h
include/thrift/lib/cpp2/type/NativeType.h
include/thrift/lib/cpp2/type/Protocol.h
include/thrift/lib/cpp2/type/Runtime.h
include/thrift/lib/cpp2/type/Tag.h
include/thrift/lib/cpp2/type/Testing.h
include/thrift/lib/cpp2/type/ThriftType.h
include/thrift/lib/cpp2/type/Type.h
include/thrift/lib/cpp2/type/TypeRegistry.h
include/thrift/lib/cpp2/type/UniversalHashAlgorithm.h
include/thrift/lib/cpp2/type/UniversalName.h
include/thrift/lib/cpp2/type/detail/AnyType.h
include/thrift/lib/cpp2/type/detail/AnyValue.h
include/thrift/lib/cpp2/type/detail/Name.h
include/thrift/lib/cpp2/type/detail/NativeType.h
include/thrift/lib/cpp2/type/detail/Runtime.h
include/thrift/lib/cpp2/type/detail/TypeClassFromTypeTag.h
include/thrift/lib/cpp2/type/detail/TypeInfo.h
include/thrift/lib/cpp2/type/detail/TypeRegistry.h
include/thrift/lib/cpp2/type/detail/Wrap.h
include/thrift/lib/cpp2/util/AllocationColocator.h
include/thrift/lib/cpp2/util/BucketedRate.h
include/thrift/lib/cpp2/util/Checksum.h
include/thrift/lib/cpp2/util/DebugString.h
include/thrift/lib/cpp2/util/DebugTree.h
include/thrift/lib/cpp2/util/EmptyAsyncProcessor.h
include/thrift/lib/cpp2/util/Ewma.h
include/thrift/lib/cpp2/util/EwmaRate.h
include/thrift/lib/cpp2/util/Frozen2ViewHelpers.h
include/thrift/lib/cpp2/util/IntrusiveSharedPtr.h
include/thrift/lib/cpp2/util/LegacyRequestExpiryGuard.h
include/thrift/lib/cpp2/util/ManagedStringView.h
include/thrift/lib/cpp2/util/MethodMetadata.h
include/thrift/lib/cpp2/util/SchemaToMetadata.h
include/thrift/lib/cpp2/util/ScopedServerInterfaceThread-inl.h
include/thrift/lib/cpp2/util/ScopedServerInterfaceThread.h
include/thrift/lib/cpp2/util/ScopedServerThread.h
include/thrift/lib/cpp2/util/TypeErasedRef.h
include/thrift/lib/cpp2/util/TypeErasedTupleRef.h
include/thrift/lib/cpp2/util/TypeErasedValue.h
include/thrift/lib/cpp2/util/gtest/Matcher-inl.h
include/thrift/lib/cpp2/util/gtest/Matcher.h
include/thrift/lib/cpp2/util/gtest/Printer.h
include/thrift/lib/cpp2/visitation/for_each.h
include/thrift/lib/cpp2/visitation/metadata.h
include/thrift/lib/cpp2/visitation/visit_by_thrift_field_metadata.h
include/thrift/lib/cpp2/visitation/visit_union.h
include/thrift/lib/py3/client.h
include/thrift/lib/py3/client_wrapper.h
include/thrift/lib/py3/clientcallbacks.h
include/thrift/lib/py3/exceptions.h
include/thrift/lib/py3/serializer.h
include/thrift/lib/py3/stream.h
include/thrift/lib/py3/test/BinaryTypes.h
include/thrift/lib/py3/test/cpp_handler.h
include/thrift/lib/py3/test/interactions/interaction_test.h
include/thrift/lib/py3/test/is_overload/func.h
include/thrift/lib/py3/types.h
include/thrift/lib/python/Serializer.h
include/thrift/lib/python/any/serializer.h
include/thrift/lib/python/capi/constructor.h
include/thrift/lib/python/capi/cpp_converter.h
include/thrift/lib/python/capi/extractor.h
include/thrift/lib/python/capi/iobuf.h
include/thrift/lib/python/capi/py3_converter.h
include/thrift/lib/python/capi/test/marshal_fixture.h
include/thrift/lib/python/capi/types.h
include/thrift/lib/python/client/OmniClient.h
include/thrift/lib/python/client/RequestChannel.h
include/thrift/lib/python/client/ssl.h
include/thrift/lib/python/client/test/client_event_handlers/handler.h
include/thrift/lib/python/client/test/event_handler_helper.h
include/thrift/lib/python/client/test/http2_helper.h
include/thrift/lib/python/server/PythonAsyncProcessor.h
include/thrift/lib/python/server/PythonAsyncProcessorFactory.h
include/thrift/lib/python/server/RequestContextExtractor.h
include/thrift/lib/python/server/event_handler.h
include/thrift/lib/python/server/flagged/RcAwareTaskPatch.h
include/thrift/lib/python/server/interceptor/PythonServerModule.h
include/thrift/lib/python/server/interceptor/PythonServiceInterceptor.h
include/thrift/lib/python/server/response_helpers.h
include/thrift/lib/python/std_libcpp.h
include/thrift/lib/python/streaming/PythonUserException.h
include/thrift/lib/python/streaming/Sink.h
include/thrift/lib/python/streaming/SinkElementDecoder.h
include/thrift/lib/python/streaming/StreamElementEncoder.h
include/thrift/lib/python/streaming/bidistream.h
include/thrift/lib/python/test/event_handlers/handler.h
include/thrift/lib/python/test/interactions/interaction_test.h
include/thrift/lib/python/test/metadata_response/metadata_response.h
include/thrift/lib/python/types.h
include/thrift/lib/thrift/RpcMetadata_extra.h
include/thrift/lib/thrift/SerializableDynamic.h
include/thrift/lib/thrift/TypeToMaskAdapter.h
include/thrift/lib/thrift/bundled_lib_thrift.h
include/thrift/lib/thrift/detail/AnyPatch.h
include/thrift/lib/thrift/detail/DynamicPatch.h
include/thrift/lib/thrift/detail/MetadataAdapter.h
include/thrift/lib/thrift/detail/TypeIdAdapter.h
include/thrift/lib/thrift/detail/TypeSystemAdapter.h
include/thrift/lib/thrift/detail/id.h
include/thrift/lib/thrift/detail/protocol.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade.tcc
include/thrift/lib/thrift/gen-cpp2/RocketUpgradeAsyncClient.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_clients.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_constants.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_data.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_handlers.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_metadata.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_types.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_types.tcc
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_visit_union.h
include/thrift/lib/thrift/gen-cpp2/RocketUpgrade_visitation.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_clients.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_constants.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_data.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_handlers.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_metadata.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_types.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_types.tcc
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_visit_union.h
include/thrift/lib/thrift/gen-cpp2/RpcMetadata_visitation.h
include/thrift/lib/thrift/gen-cpp2/ThriftMetadataService.h
include/thrift/lib/thrift/gen-cpp2/ThriftMetadataService.tcc
include/thrift/lib/thrift/gen-cpp2/ThriftMetadataServiceAsyncClient.h
include/thrift/lib/thrift/gen-cpp2/ThriftMetadataService_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/any_rep_clients.h
include/thrift/lib/thrift/gen-cpp2/any_rep_constants.h
include/thrift/lib/thrift/gen-cpp2/any_rep_data.h
include/thrift/lib/thrift/gen-cpp2/any_rep_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/any_rep_handlers.h
include/thrift/lib/thrift/gen-cpp2/any_rep_metadata.h
include/thrift/lib/thrift/gen-cpp2/any_rep_types.h
include/thrift/lib/thrift/gen-cpp2/any_rep_types.tcc
include/thrift/lib/thrift/gen-cpp2/any_rep_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/any_rep_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/any_rep_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/any_rep_visit_union.h
include/thrift/lib/thrift/gen-cpp2/any_rep_visitation.h
include/thrift/lib/thrift/gen-cpp2/field_mask_clients.h
include/thrift/lib/thrift/gen-cpp2/field_mask_constants.h
include/thrift/lib/thrift/gen-cpp2/field_mask_data.h
include/thrift/lib/thrift/gen-cpp2/field_mask_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/field_mask_handlers.h
include/thrift/lib/thrift/gen-cpp2/field_mask_metadata.h
include/thrift/lib/thrift/gen-cpp2/field_mask_types.h
include/thrift/lib/thrift/gen-cpp2/field_mask_types.tcc
include/thrift/lib/thrift/gen-cpp2/field_mask_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/field_mask_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/field_mask_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/field_mask_visit_union.h
include/thrift/lib/thrift/gen-cpp2/field_mask_visitation.h
include/thrift/lib/thrift/gen-cpp2/frozen_clients.h
include/thrift/lib/thrift/gen-cpp2/frozen_constants.h
include/thrift/lib/thrift/gen-cpp2/frozen_data.h
include/thrift/lib/thrift/gen-cpp2/frozen_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/frozen_handlers.h
include/thrift/lib/thrift/gen-cpp2/frozen_metadata.h
include/thrift/lib/thrift/gen-cpp2/frozen_types.h
include/thrift/lib/thrift/gen-cpp2/frozen_types.tcc
include/thrift/lib/thrift/gen-cpp2/frozen_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/frozen_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/frozen_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/frozen_visit_union.h
include/thrift/lib/thrift/gen-cpp2/frozen_visitation.h
include/thrift/lib/thrift/gen-cpp2/id_clients.h
include/thrift/lib/thrift/gen-cpp2/id_constants.h
include/thrift/lib/thrift/gen-cpp2/id_data.h
include/thrift/lib/thrift/gen-cpp2/id_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/id_handlers.h
include/thrift/lib/thrift/gen-cpp2/id_metadata.h
include/thrift/lib/thrift/gen-cpp2/id_types.h
include/thrift/lib/thrift/gen-cpp2/id_types.tcc
include/thrift/lib/thrift/gen-cpp2/id_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/id_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/id_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/id_visit_union.h
include/thrift/lib/thrift/gen-cpp2/id_visitation.h
include/thrift/lib/thrift/gen-cpp2/metadata_clients.h
include/thrift/lib/thrift/gen-cpp2/metadata_constants.h
include/thrift/lib/thrift/gen-cpp2/metadata_data.h
include/thrift/lib/thrift/gen-cpp2/metadata_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/metadata_handlers.h
include/thrift/lib/thrift/gen-cpp2/metadata_metadata.h
include/thrift/lib/thrift/gen-cpp2/metadata_types.h
include/thrift/lib/thrift/gen-cpp2/metadata_types.tcc
include/thrift/lib/thrift/gen-cpp2/metadata_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/metadata_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/metadata_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/metadata_visit_union.h
include/thrift/lib/thrift/gen-cpp2/metadata_visitation.h
include/thrift/lib/thrift/gen-cpp2/protocol_clients.h
include/thrift/lib/thrift/gen-cpp2/protocol_constants.h
include/thrift/lib/thrift/gen-cpp2/protocol_data.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_clients.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_constants.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_data.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_handlers.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_metadata.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_types.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_types.tcc
include/thrift/lib/thrift/gen-cpp2/protocol_detail_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_visit_union.h
include/thrift/lib/thrift/gen-cpp2/protocol_detail_visitation.h
include/thrift/lib/thrift/gen-cpp2/protocol_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/protocol_handlers.h
include/thrift/lib/thrift/gen-cpp2/protocol_metadata.h
include/thrift/lib/thrift/gen-cpp2/protocol_types.h
include/thrift/lib/thrift/gen-cpp2/protocol_types.tcc
include/thrift/lib/thrift/gen-cpp2/protocol_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/protocol_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/protocol_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/protocol_visit_union.h
include/thrift/lib/thrift/gen-cpp2/protocol_visitation.h
include/thrift/lib/thrift/gen-cpp2/record_clients.h
include/thrift/lib/thrift/gen-cpp2/record_constants.h
include/thrift/lib/thrift/gen-cpp2/record_data.h
include/thrift/lib/thrift/gen-cpp2/record_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/record_handlers.h
include/thrift/lib/thrift/gen-cpp2/record_metadata.h
include/thrift/lib/thrift/gen-cpp2/record_types.h
include/thrift/lib/thrift/gen-cpp2/record_types.tcc
include/thrift/lib/thrift/gen-cpp2/record_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/record_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/record_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/record_visit_union.h
include/thrift/lib/thrift/gen-cpp2/record_visitation.h
include/thrift/lib/thrift/gen-cpp2/reflection_clients.h
include/thrift/lib/thrift/gen-cpp2/reflection_constants.h
include/thrift/lib/thrift/gen-cpp2/reflection_data.h
include/thrift/lib/thrift/gen-cpp2/reflection_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/reflection_handlers.h
include/thrift/lib/thrift/gen-cpp2/reflection_metadata.h
include/thrift/lib/thrift/gen-cpp2/reflection_types.h
include/thrift/lib/thrift/gen-cpp2/reflection_types.tcc
include/thrift/lib/thrift/gen-cpp2/reflection_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/reflection_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/reflection_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/reflection_visit_union.h
include/thrift/lib/thrift/gen-cpp2/reflection_visitation.h
include/thrift/lib/thrift/gen-cpp2/schema_clients.h
include/thrift/lib/thrift/gen-cpp2/schema_constants.h
include/thrift/lib/thrift/gen-cpp2/schema_data.h
include/thrift/lib/thrift/gen-cpp2/schema_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/schema_handlers.h
include/thrift/lib/thrift/gen-cpp2/schema_metadata.h
include/thrift/lib/thrift/gen-cpp2/schema_types.h
include/thrift/lib/thrift/gen-cpp2/schema_types.tcc
include/thrift/lib/thrift/gen-cpp2/schema_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/schema_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/schema_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/schema_visit_union.h
include/thrift/lib/thrift/gen-cpp2/schema_visitation.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_clients.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_constants.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_data.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_handlers.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_metadata.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_types.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_types.tcc
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_visit_union.h
include/thrift/lib/thrift/gen-cpp2/serverdbginfo_visitation.h
include/thrift/lib/thrift/gen-cpp2/standard_clients.h
include/thrift/lib/thrift/gen-cpp2/standard_constants.h
include/thrift/lib/thrift/gen-cpp2/standard_data.h
include/thrift/lib/thrift/gen-cpp2/standard_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/standard_handlers.h
include/thrift/lib/thrift/gen-cpp2/standard_metadata.h
include/thrift/lib/thrift/gen-cpp2/standard_types.h
include/thrift/lib/thrift/gen-cpp2/standard_types.tcc
include/thrift/lib/thrift/gen-cpp2/standard_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/standard_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/standard_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/standard_visit_union.h
include/thrift/lib/thrift/gen-cpp2/standard_visitation.h
include/thrift/lib/thrift/gen-cpp2/type_clients.h
include/thrift/lib/thrift/gen-cpp2/type_constants.h
include/thrift/lib/thrift/gen-cpp2/type_data.h
include/thrift/lib/thrift/gen-cpp2/type_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/type_handlers.h
include/thrift/lib/thrift/gen-cpp2/type_id_clients.h
include/thrift/lib/thrift/gen-cpp2/type_id_constants.h
include/thrift/lib/thrift/gen-cpp2/type_id_data.h
include/thrift/lib/thrift/gen-cpp2/type_id_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/type_id_handlers.h
include/thrift/lib/thrift/gen-cpp2/type_id_metadata.h
include/thrift/lib/thrift/gen-cpp2/type_id_types.h
include/thrift/lib/thrift/gen-cpp2/type_id_types.tcc
include/thrift/lib/thrift/gen-cpp2/type_id_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/type_id_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/type_id_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/type_id_visit_union.h
include/thrift/lib/thrift/gen-cpp2/type_id_visitation.h
include/thrift/lib/thrift/gen-cpp2/type_metadata.h
include/thrift/lib/thrift/gen-cpp2/type_rep_clients.h
include/thrift/lib/thrift/gen-cpp2/type_rep_constants.h
include/thrift/lib/thrift/gen-cpp2/type_rep_data.h
include/thrift/lib/thrift/gen-cpp2/type_rep_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/type_rep_handlers.h
include/thrift/lib/thrift/gen-cpp2/type_rep_metadata.h
include/thrift/lib/thrift/gen-cpp2/type_rep_types.h
include/thrift/lib/thrift/gen-cpp2/type_rep_types.tcc
include/thrift/lib/thrift/gen-cpp2/type_rep_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/type_rep_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/type_rep_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/type_rep_visit_union.h
include/thrift/lib/thrift/gen-cpp2/type_rep_visitation.h
include/thrift/lib/thrift/gen-cpp2/type_system_clients.h
include/thrift/lib/thrift/gen-cpp2/type_system_constants.h
include/thrift/lib/thrift/gen-cpp2/type_system_data.h
include/thrift/lib/thrift/gen-cpp2/type_system_for_each_field.h
include/thrift/lib/thrift/gen-cpp2/type_system_handlers.h
include/thrift/lib/thrift/gen-cpp2/type_system_metadata.h
include/thrift/lib/thrift/gen-cpp2/type_system_types.h
include/thrift/lib/thrift/gen-cpp2/type_system_types.tcc
include/thrift/lib/thrift/gen-cpp2/type_system_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/type_system_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/type_system_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/type_system_visit_union.h
include/thrift/lib/thrift/gen-cpp2/type_system_visitation.h
include/thrift/lib/thrift/gen-cpp2/type_types.h
include/thrift/lib/thrift/gen-cpp2/type_types.tcc
include/thrift/lib/thrift/gen-cpp2/type_types_custom_protocol.h
include/thrift/lib/thrift/gen-cpp2/type_types_fwd.h
include/thrift/lib/thrift/gen-cpp2/type_visit_by_thrift_field_metadata.h
include/thrift/lib/thrift/gen-cpp2/type_visit_union.h
include/thrift/lib/thrift/gen-cpp2/type_visitation.h
lib/cmake/fbthrift/FBThriftConfig.cmake
lib/cmake/fbthrift/FBThriftTargets-%%CMAKE_BUILD_TYPE%%.cmake
lib/cmake/fbthrift/FBThriftTargets.cmake
lib/fb-py-libs/thrift_py.manifest
lib/fb-py-libs/thrift_py/thrift/TMultiplexedProcessor.py
lib/fb-py-libs/thrift_py/thrift/Thrift.py
lib/fb-py-libs/thrift_py/thrift/__init__.py
lib/fb-py-libs/thrift_py/thrift/async_common.py
lib/fb-py-libs/thrift_py/thrift/protocol/TBinaryProtocol.py
lib/fb-py-libs/thrift_py/thrift/protocol/TCompactProtocol.py
lib/fb-py-libs/thrift_py/thrift/protocol/THeaderProtocol.py
lib/fb-py-libs/thrift_py/thrift/protocol/TJSONProtocol.py
lib/fb-py-libs/thrift_py/thrift/protocol/TMultiplexedProtocol.py
lib/fb-py-libs/thrift_py/thrift/protocol/TProtocol.py
lib/fb-py-libs/thrift_py/thrift/protocol/TProtocolDecorator.py
lib/fb-py-libs/thrift_py/thrift/protocol/TSimpleJSONProtocol.py
lib/fb-py-libs/thrift_py/thrift/server/TServer.py
lib/fb-py-libs/thrift_py/thrift/transport/THeaderTransport.py
lib/fb-py-libs/thrift_py/thrift/transport/TSSLSocket.py
lib/fb-py-libs/thrift_py/thrift/transport/TSocket.py
lib/fb-py-libs/thrift_py/thrift/transport/TTransport.py
lib/fb-py-libs/thrift_py/thrift/util/BytesStrIO.py
lib/fb-py-libs/thrift_py/thrift/util/Decorators.py
lib/fb-py-libs/thrift_py/thrift/util/Recursive.py
lib/fb-py-libs/thrift_py/thrift/util/Serializer.py
lib/fb-py-libs/thrift_py/thrift/util/TValidator.py
lib/fb-py-libs/thrift_py/thrift/util/__init__.py
lib/fb-py-libs/thrift_py/thrift/util/async_common.py
lib/fb-py-libs/thrift_py/thrift/util/fuzzer.py
lib/fb-py-libs/thrift_py/thrift/util/randomizer.py
lib/fb-py-libs/thrift_py/thrift/util/remote.py
lib/fb-py-libs/thrift_py_inspect.manifest
lib/fb-py-libs/thrift_py_inspect/thrift/util/inspect.py
lib/libasync.so
lib/libasync.so.1.0.0
lib/libcommon.so
lib/libcompiler.so
lib/libcompiler.so.1.0.0
lib/libcompiler_ast.so
lib/libcompiler_ast.so.1.0.0
lib/libcompiler_base.a
lib/libcompiler_lib.a
lib/libconcurrency.so
lib/libconcurrency.so.1.0.0
lib/librpcmetadata.so
lib/librpcmetadata.so.1.0.0
lib/libruntime.so
lib/libserverdbginfo.so
lib/libserverdbginfo.so.1.0.0
lib/libthrift-core.so
lib/libthrift-core.so.1.0.0
lib/libthriftannotation.so
lib/libthriftannotation.so.1.0.0
lib/libthriftanyrep.so
lib/libthriftcpp2.so
lib/libthriftcpp2.so.1.0.0
lib/libthriftfrozen2.so
lib/libthriftfrozen2.so.1.0.0
lib/libthriftmetadata.so
lib/libthriftmetadata.so.1.0.0
lib/libthriftprotocol.so
lib/libthriftprotocol.so.1.0.0
lib/libthrifttype.so
lib/libthrifttype.so.1.0.0
lib/libthrifttyperep.so
lib/libthrifttyperep.so.1.0.0
lib/libtransport.so
lib/libtransport.so.1.0.0
lib/libwhisker.a
|