├── .github └── workflows │ └── main.yml ├── .gitignore ├── Build.py ├── CHANGELOG.md ├── Config └── FilterPlugin.ini ├── Content ├── AI │ ├── AI_Controller_Convai.uasset │ └── BT │ │ ├── BTDecorator_HasOrder.uasset │ │ ├── BTService_ProcessAction.uasset │ │ ├── Convai_BB.uasset │ │ └── Convai_BT.uasset ├── Core │ ├── ConvaiBaseCharacter.uasset │ ├── ConvaiBasePlayer.uasset │ └── ConvaiPlayerWithVoiceActivation.uasset ├── Curves │ └── Jaw.uasset ├── Demo │ ├── Companion.uasset │ ├── ConvaiDemoGM.uasset │ ├── Convai_Demo.umap │ ├── Convai_Demo_BuiltData.uasset │ └── Pickup │ │ ├── Pickup.uasset │ │ └── PickupColor.uasset ├── Logo │ └── color__1_.uasset ├── MetaHumans │ └── Animations │ │ ├── Convai_MetaHuman_BodyAnim.uasset │ │ ├── Convai_MetaHuman_FaceAnim.uasset │ │ ├── Convai_Talk_montage_MetaHuman.uasset │ │ ├── M1_B1D_MetaHuman.uasset │ │ ├── MM_Idle.uasset │ │ ├── MM_Run_Fwd.uasset │ │ ├── MM_Walk_Fwd.uasset │ │ ├── MM_Walk_InPlace.uasset │ │ └── m_sample_anim.uasset ├── Submixes │ ├── AudioInput.uasset │ └── MuteMic.uasset └── Widgets │ ├── ChatItem_WB.uasset │ ├── Chat_WB.uasset │ ├── Fonts │ ├── AR │ │ └── KFGQPC_Uthman_Taha_Naskh_Regular.uasset │ ├── ConvaiFont.uasset │ └── HI │ │ └── Mangal_Regular.uasset │ ├── Images │ ├── UI_CBFV1.uasset │ ├── UI_CBFV2.uasset │ ├── UI_CBFV3.uasset │ ├── UI_ChatBotHistory.uasset │ ├── UI_ChatBotThumbsDownFill.uasset │ ├── UI_ChatBotThumbsDownOutline.uasset │ ├── UI_ChatBotThumbsDownOutlineFill.uasset │ ├── UI_ChatBot_CollapseHistory.uasset │ ├── UI_ChatBot_ConvaiLogo.uasset │ └── UI_ChatBot_ThumbsUpFill.uasset │ ├── MicSettings_WB.uasset │ └── Sound │ └── UI_Talk.uasset ├── ConvAI.uplugin ├── LICENSE.md ├── README.md ├── Resources ├── Icon128.png └── desktop.ini └── Source ├── Convai ├── Convai.Build.cs ├── Convai.cpp ├── Convai.h ├── Convai_AndroidAPL.xml ├── Private │ ├── ConvaiActionUtils.cpp │ ├── ConvaiAndroid.cpp │ ├── ConvaiAudioCaptureComponent.cpp │ ├── ConvaiAudioStreamer.cpp │ ├── ConvaiChatBotProxy.cpp │ ├── ConvaiChatbotComponent.cpp │ ├── ConvaiDefinitions.cpp │ ├── ConvaiFaceSync.cpp │ ├── ConvaiGRPC.cpp │ ├── ConvaiGRPCTest.cpp │ ├── ConvaiGetActionProxy.cpp │ ├── ConvaiNarrativeDesignProxy.cpp │ ├── ConvaiPlayerComponent.cpp │ ├── ConvaiSpeechToTextProxy.cpp │ ├── ConvaiSubsystem.cpp │ ├── ConvaiTextToSpeechProxy.cpp │ ├── ConvaiUtils.cpp │ ├── Mac │ │ └── ConvaiApple.mm │ ├── Proto │ │ ├── arkit_blend_shapes.grpc.pb.cc │ │ ├── arkit_blend_shapes.grpc.pb.h │ │ ├── arkit_blend_shapes.pb.cc │ │ ├── arkit_blend_shapes.pb.h │ │ ├── service.grpc.pb.cc │ │ ├── service.grpc.pb.h │ │ ├── service.pb.cc │ │ └── service.pb.h │ ├── VoiceCaptureComp.cpp │ └── getentropy_compact.c └── Public │ ├── ConvaiActionUtils.h │ ├── ConvaiAndroid.h │ ├── ConvaiAudioCaptureComponent.h │ ├── ConvaiAudioStreamer.h │ ├── ConvaiChatBotProxy.h │ ├── ConvaiChatbotComponent.h │ ├── ConvaiDefinitions.h │ ├── ConvaiFaceSync.h │ ├── ConvaiGRPC.h │ ├── ConvaiGRPCTest.h │ ├── ConvaiGetActionProxy.h │ ├── ConvaiNarrativeDesignProxy.h │ ├── ConvaiPlayerComponent.h │ ├── ConvaiSpeechToTextProxy.h │ ├── ConvaiSubsystem.h │ ├── ConvaiTextToSpeechProxy.h │ ├── ConvaiUtils.h │ ├── LipSyncInterface.h │ ├── RingBuffer.h │ ├── VisionInterface.h │ └── VoiceCaptureComp.h └── ThirdParty └── gRPC ├── Include ├── google │ └── protobuf │ │ ├── any.cc │ │ ├── any.h │ │ ├── any.pb.cc │ │ ├── any.pb.h │ │ ├── any.proto │ │ ├── any_lite.cc │ │ ├── any_test.cc │ │ ├── any_test.proto │ │ ├── api.pb.cc │ │ ├── api.pb.h │ │ ├── api.proto │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── arena_impl.h │ │ ├── arena_test_util.cc │ │ ├── arena_test_util.h │ │ ├── arena_unittest.cc │ │ ├── arenastring.cc │ │ ├── arenastring.h │ │ ├── arenastring_unittest.cc │ │ ├── compiler │ │ ├── annotation_test_util.cc │ │ ├── annotation_test_util.h │ │ ├── code_generator.cc │ │ ├── code_generator.h │ │ ├── command_line_interface.cc │ │ ├── command_line_interface.h │ │ ├── command_line_interface_unittest.cc │ │ ├── cpp │ │ │ ├── cpp_bootstrap_unittest.cc │ │ │ ├── cpp_enum.cc │ │ │ ├── cpp_enum.h │ │ │ ├── cpp_enum_field.cc │ │ │ ├── cpp_enum_field.h │ │ │ ├── cpp_extension.cc │ │ │ ├── cpp_extension.h │ │ │ ├── cpp_field.cc │ │ │ ├── cpp_field.h │ │ │ ├── cpp_file.cc │ │ │ ├── cpp_file.h │ │ │ ├── cpp_generator.cc │ │ │ ├── cpp_generator.h │ │ │ ├── cpp_helpers.cc │ │ │ ├── cpp_helpers.h │ │ │ ├── cpp_map_field.cc │ │ │ ├── cpp_map_field.h │ │ │ ├── cpp_message.cc │ │ │ ├── cpp_message.h │ │ │ ├── cpp_message_field.cc │ │ │ ├── cpp_message_field.h │ │ │ ├── cpp_message_layout_helper.h │ │ │ ├── cpp_move_unittest.cc │ │ │ ├── cpp_options.h │ │ │ ├── cpp_padding_optimizer.cc │ │ │ ├── cpp_padding_optimizer.h │ │ │ ├── cpp_plugin_unittest.cc │ │ │ ├── cpp_primitive_field.cc │ │ │ ├── cpp_primitive_field.h │ │ │ ├── cpp_service.cc │ │ │ ├── cpp_service.h │ │ │ ├── cpp_string_field.cc │ │ │ ├── cpp_string_field.h │ │ │ ├── cpp_test_bad_identifiers.proto │ │ │ ├── cpp_test_large_enum_value.proto │ │ │ ├── cpp_unittest.cc │ │ │ ├── cpp_unittest.h │ │ │ ├── cpp_unittest.inc │ │ │ └── metadata_test.cc │ │ ├── csharp │ │ │ ├── csharp_bootstrap_unittest.cc │ │ │ ├── csharp_doc_comment.cc │ │ │ ├── csharp_doc_comment.h │ │ │ ├── csharp_enum.cc │ │ │ ├── csharp_enum.h │ │ │ ├── csharp_enum_field.cc │ │ │ ├── csharp_enum_field.h │ │ │ ├── csharp_field_base.cc │ │ │ ├── csharp_field_base.h │ │ │ ├── csharp_generator.cc │ │ │ ├── csharp_generator.h │ │ │ ├── csharp_generator_unittest.cc │ │ │ ├── csharp_helpers.cc │ │ │ ├── csharp_helpers.h │ │ │ ├── csharp_map_field.cc │ │ │ ├── csharp_map_field.h │ │ │ ├── csharp_message.cc │ │ │ ├── csharp_message.h │ │ │ ├── csharp_message_field.cc │ │ │ ├── csharp_message_field.h │ │ │ ├── csharp_names.h │ │ │ ├── csharp_options.h │ │ │ ├── csharp_primitive_field.cc │ │ │ ├── csharp_primitive_field.h │ │ │ ├── csharp_reflection_class.cc │ │ │ ├── csharp_reflection_class.h │ │ │ ├── csharp_repeated_enum_field.cc │ │ │ ├── csharp_repeated_enum_field.h │ │ │ ├── csharp_repeated_message_field.cc │ │ │ ├── csharp_repeated_message_field.h │ │ │ ├── csharp_repeated_primitive_field.cc │ │ │ ├── csharp_repeated_primitive_field.h │ │ │ ├── csharp_source_generator_base.cc │ │ │ ├── csharp_source_generator_base.h │ │ │ ├── csharp_wrapper_field.cc │ │ │ └── csharp_wrapper_field.h │ │ ├── importer.cc │ │ ├── importer.h │ │ ├── importer_unittest.cc │ │ ├── java │ │ │ ├── java_context.cc │ │ │ ├── java_context.h │ │ │ ├── java_doc_comment.cc │ │ │ ├── java_doc_comment.h │ │ │ ├── java_doc_comment_unittest.cc │ │ │ ├── java_enum.cc │ │ │ ├── java_enum.h │ │ │ ├── java_enum_field.cc │ │ │ ├── java_enum_field.h │ │ │ ├── java_enum_field_lite.cc │ │ │ ├── java_enum_field_lite.h │ │ │ ├── java_enum_lite.cc │ │ │ ├── java_enum_lite.h │ │ │ ├── java_extension.cc │ │ │ ├── java_extension.h │ │ │ ├── java_extension_lite.cc │ │ │ ├── java_extension_lite.h │ │ │ ├── java_field.cc │ │ │ ├── java_field.h │ │ │ ├── java_file.cc │ │ │ ├── java_file.h │ │ │ ├── java_generator.cc │ │ │ ├── java_generator.h │ │ │ ├── java_generator_factory.cc │ │ │ ├── java_generator_factory.h │ │ │ ├── java_helpers.cc │ │ │ ├── java_helpers.h │ │ │ ├── java_map_field.cc │ │ │ ├── java_map_field.h │ │ │ ├── java_map_field_lite.cc │ │ │ ├── java_map_field_lite.h │ │ │ ├── java_message.cc │ │ │ ├── java_message.h │ │ │ ├── java_message_builder.cc │ │ │ ├── java_message_builder.h │ │ │ ├── java_message_builder_lite.cc │ │ │ ├── java_message_builder_lite.h │ │ │ ├── java_message_field.cc │ │ │ ├── java_message_field.h │ │ │ ├── java_message_field_lite.cc │ │ │ ├── java_message_field_lite.h │ │ │ ├── java_message_lite.cc │ │ │ ├── java_message_lite.h │ │ │ ├── java_name_resolver.cc │ │ │ ├── java_name_resolver.h │ │ │ ├── java_names.h │ │ │ ├── java_options.h │ │ │ ├── java_plugin_unittest.cc │ │ │ ├── java_primitive_field.cc │ │ │ ├── java_primitive_field.h │ │ │ ├── java_primitive_field_lite.cc │ │ │ ├── java_primitive_field_lite.h │ │ │ ├── java_service.cc │ │ │ ├── java_service.h │ │ │ ├── java_shared_code_generator.cc │ │ │ ├── java_shared_code_generator.h │ │ │ ├── java_string_field.cc │ │ │ ├── java_string_field.h │ │ │ ├── java_string_field_lite.cc │ │ │ └── java_string_field_lite.h │ │ ├── js │ │ │ ├── js_generator.cc │ │ │ ├── js_generator.h │ │ │ ├── well_known_types_embed.cc │ │ │ └── well_known_types_embed.h │ │ ├── main.cc │ │ ├── mock_code_generator.cc │ │ ├── mock_code_generator.h │ │ ├── objectivec │ │ │ ├── method_dump.sh │ │ │ ├── objectivec_enum.cc │ │ │ ├── objectivec_enum.h │ │ │ ├── objectivec_enum_field.cc │ │ │ ├── objectivec_enum_field.h │ │ │ ├── objectivec_extension.cc │ │ │ ├── objectivec_extension.h │ │ │ ├── objectivec_field.cc │ │ │ ├── objectivec_field.h │ │ │ ├── objectivec_file.cc │ │ │ ├── objectivec_file.h │ │ │ ├── objectivec_generator.cc │ │ │ ├── objectivec_generator.h │ │ │ ├── objectivec_helpers.cc │ │ │ ├── objectivec_helpers.h │ │ │ ├── objectivec_helpers_unittest.cc │ │ │ ├── objectivec_map_field.cc │ │ │ ├── objectivec_map_field.h │ │ │ ├── objectivec_message.cc │ │ │ ├── objectivec_message.h │ │ │ ├── objectivec_message_field.cc │ │ │ ├── objectivec_message_field.h │ │ │ ├── objectivec_nsobject_methods.h │ │ │ ├── objectivec_oneof.cc │ │ │ ├── objectivec_oneof.h │ │ │ ├── objectivec_primitive_field.cc │ │ │ └── objectivec_primitive_field.h │ │ ├── package_info.h │ │ ├── parser.cc │ │ ├── parser.h │ │ ├── parser_unittest.cc │ │ ├── php │ │ │ ├── php_generator.cc │ │ │ └── php_generator.h │ │ ├── plugin.cc │ │ ├── plugin.h │ │ ├── plugin.pb.cc │ │ ├── plugin.pb.h │ │ ├── plugin.proto │ │ ├── python │ │ │ ├── python_generator.cc │ │ │ ├── python_generator.h │ │ │ └── python_plugin_unittest.cc │ │ ├── ruby │ │ │ ├── ruby_generated_code.proto │ │ │ ├── ruby_generated_code_pb.rb │ │ │ ├── ruby_generated_code_proto2.proto │ │ │ ├── ruby_generated_code_proto2_pb.rb │ │ │ ├── ruby_generated_pkg_explicit.proto │ │ │ ├── ruby_generated_pkg_explicit_legacy.proto │ │ │ ├── ruby_generated_pkg_explicit_legacy_pb.rb │ │ │ ├── ruby_generated_pkg_explicit_pb.rb │ │ │ ├── ruby_generated_pkg_implicit.proto │ │ │ ├── ruby_generated_pkg_implicit_pb.rb │ │ │ ├── ruby_generator.cc │ │ │ ├── ruby_generator.h │ │ │ └── ruby_generator_unittest.cc │ │ ├── scc.h │ │ ├── subprocess.cc │ │ ├── subprocess.h │ │ ├── test_plugin.cc │ │ ├── zip_output_unittest.sh │ │ ├── zip_writer.cc │ │ └── zip_writer.h │ │ ├── descriptor.cc │ │ ├── descriptor.h │ │ ├── descriptor.pb.cc │ │ ├── descriptor.pb.h │ │ ├── descriptor.proto │ │ ├── descriptor_database.cc │ │ ├── descriptor_database.h │ │ ├── descriptor_database_unittest.cc │ │ ├── descriptor_unittest.cc │ │ ├── drop_unknown_fields_test.cc │ │ ├── duration.pb.cc │ │ ├── duration.pb.h │ │ ├── duration.proto │ │ ├── dynamic_message.cc │ │ ├── dynamic_message.h │ │ ├── dynamic_message_unittest.cc │ │ ├── empty.pb.cc │ │ ├── empty.pb.h │ │ ├── empty.proto │ │ ├── extension_set.cc │ │ ├── extension_set.h │ │ ├── extension_set_heavy.cc │ │ ├── extension_set_inl.h │ │ ├── extension_set_unittest.cc │ │ ├── field_mask.pb.cc │ │ ├── field_mask.pb.h │ │ ├── field_mask.proto │ │ ├── generated_enum_reflection.h │ │ ├── generated_enum_util.cc │ │ ├── generated_enum_util.h │ │ ├── generated_message_reflection.cc │ │ ├── generated_message_reflection.h │ │ ├── generated_message_reflection_unittest.cc │ │ ├── generated_message_table_driven.cc │ │ ├── generated_message_table_driven.h │ │ ├── generated_message_table_driven_lite.cc │ │ ├── generated_message_table_driven_lite.h │ │ ├── generated_message_util.cc │ │ ├── generated_message_util.h │ │ ├── has_bits.h │ │ ├── implicit_weak_message.cc │ │ ├── implicit_weak_message.h │ │ ├── io │ │ ├── coded_stream.cc │ │ ├── coded_stream.h │ │ ├── coded_stream_unittest.cc │ │ ├── gzip_stream.cc │ │ ├── gzip_stream.h │ │ ├── gzip_stream_unittest.sh │ │ ├── io_win32.cc │ │ ├── io_win32.h │ │ ├── io_win32_unittest.cc │ │ ├── package_info.h │ │ ├── printer.cc │ │ ├── printer.h │ │ ├── printer_unittest.cc │ │ ├── strtod.cc │ │ ├── strtod.h │ │ ├── tokenizer.cc │ │ ├── tokenizer.h │ │ ├── tokenizer_unittest.cc │ │ ├── zero_copy_stream.cc │ │ ├── zero_copy_stream.h │ │ ├── zero_copy_stream_impl.cc │ │ ├── zero_copy_stream_impl.h │ │ ├── zero_copy_stream_impl_lite.cc │ │ ├── zero_copy_stream_impl_lite.h │ │ └── zero_copy_stream_unittest.cc │ │ ├── lite_arena_unittest.cc │ │ ├── lite_unittest.cc │ │ ├── map.cc │ │ ├── map.h │ │ ├── map_entry.h │ │ ├── map_entry_lite.h │ │ ├── map_field.cc │ │ ├── map_field.h │ │ ├── map_field_inl.h │ │ ├── map_field_lite.h │ │ ├── map_field_test.cc │ │ ├── map_lite_test_util.cc │ │ ├── map_lite_test_util.h │ │ ├── map_lite_unittest.proto │ │ ├── map_proto2_unittest.proto │ │ ├── map_test.cc │ │ ├── map_test_util.h │ │ ├── map_test_util.inc │ │ ├── map_test_util_impl.h │ │ ├── map_type_handler.h │ │ ├── map_unittest.proto │ │ ├── message.cc │ │ ├── message.h │ │ ├── message_lite.cc │ │ ├── message_lite.h │ │ ├── message_unittest.cc │ │ ├── message_unittest.inc │ │ ├── metadata.h │ │ ├── metadata_lite.h │ │ ├── no_field_presence_test.cc │ │ ├── package_info.h │ │ ├── parse_context.cc │ │ ├── parse_context.h │ │ ├── port.h │ │ ├── port_def.inc │ │ ├── port_undef.inc │ │ ├── preserve_unknown_enum_test.cc │ │ ├── proto3_arena_lite_unittest.cc │ │ ├── proto3_arena_unittest.cc │ │ ├── proto3_lite_unittest.cc │ │ ├── proto3_lite_unittest.inc │ │ ├── reflection.h │ │ ├── reflection_internal.h │ │ ├── reflection_ops.cc │ │ ├── reflection_ops.h │ │ ├── reflection_ops_unittest.cc │ │ ├── repeated_field.cc │ │ ├── repeated_field.h │ │ ├── repeated_field_reflection_unittest.cc │ │ ├── repeated_field_unittest.cc │ │ ├── service.cc │ │ ├── service.h │ │ ├── source_context.pb.cc │ │ ├── source_context.pb.h │ │ ├── source_context.proto │ │ ├── struct.pb.cc │ │ ├── struct.pb.h │ │ ├── struct.proto │ │ ├── stubs │ │ ├── bytestream.cc │ │ ├── bytestream.h │ │ ├── bytestream_unittest.cc │ │ ├── callback.h │ │ ├── casts.h │ │ ├── common.cc │ │ ├── common.h │ │ ├── common_unittest.cc │ │ ├── hash.h │ │ ├── int128.cc │ │ ├── int128.h │ │ ├── int128_unittest.cc │ │ ├── logging.h │ │ ├── macros.h │ │ ├── map_util.h │ │ ├── mathutil.h │ │ ├── mutex.h │ │ ├── once.h │ │ ├── platform_macros.h │ │ ├── port.h │ │ ├── status.cc │ │ ├── status.h │ │ ├── status_macros.h │ │ ├── status_test.cc │ │ ├── statusor.cc │ │ ├── statusor.h │ │ ├── statusor_test.cc │ │ ├── stl_util.h │ │ ├── stringpiece.cc │ │ ├── stringpiece.h │ │ ├── stringpiece_unittest.cc │ │ ├── stringprintf.cc │ │ ├── stringprintf.h │ │ ├── stringprintf_unittest.cc │ │ ├── structurally_valid.cc │ │ ├── structurally_valid_unittest.cc │ │ ├── strutil.cc │ │ ├── strutil.h │ │ ├── strutil_unittest.cc │ │ ├── substitute.cc │ │ ├── substitute.h │ │ ├── template_util.h │ │ ├── template_util_unittest.cc │ │ ├── time.cc │ │ ├── time.h │ │ └── time_test.cc │ │ ├── test_messages_proto2.proto │ │ ├── test_messages_proto3.proto │ │ ├── test_util.cc │ │ ├── test_util.h │ │ ├── test_util.inc │ │ ├── test_util2.h │ │ ├── test_util_lite.cc │ │ ├── test_util_lite.h │ │ ├── testdata │ │ ├── bad_utf8_string │ │ ├── golden_message │ │ ├── golden_message_maps │ │ ├── golden_message_oneof_implemented │ │ ├── golden_message_proto3 │ │ ├── golden_packed_fields_message │ │ ├── map_test_data.txt │ │ ├── text_format_unittest_data.txt │ │ ├── text_format_unittest_data_oneof_implemented.txt │ │ ├── text_format_unittest_data_pointy.txt │ │ ├── text_format_unittest_data_pointy_oneof.txt │ │ ├── text_format_unittest_extensions_data.txt │ │ └── text_format_unittest_extensions_data_pointy.txt │ │ ├── testing │ │ ├── file.cc │ │ ├── file.h │ │ ├── googletest.cc │ │ ├── googletest.h │ │ ├── zcgunzip.cc │ │ └── zcgzip.cc │ │ ├── text_format.cc │ │ ├── text_format.h │ │ ├── text_format_unittest.cc │ │ ├── timestamp.pb.cc │ │ ├── timestamp.pb.h │ │ ├── timestamp.proto │ │ ├── type.pb.cc │ │ ├── type.pb.h │ │ ├── type.proto │ │ ├── unittest.proto │ │ ├── unittest_arena.proto │ │ ├── unittest_custom_options.proto │ │ ├── unittest_drop_unknown_fields.proto │ │ ├── unittest_embed_optimize_for.proto │ │ ├── unittest_empty.proto │ │ ├── unittest_enormous_descriptor.proto │ │ ├── unittest_import.proto │ │ ├── unittest_import_lite.proto │ │ ├── unittest_import_public.proto │ │ ├── unittest_import_public_lite.proto │ │ ├── unittest_lazy_dependencies.proto │ │ ├── unittest_lazy_dependencies_custom_option.proto │ │ ├── unittest_lazy_dependencies_enum.proto │ │ ├── unittest_lite.proto │ │ ├── unittest_lite_imports_nonlite.proto │ │ ├── unittest_mset.proto │ │ ├── unittest_mset_wire_format.proto │ │ ├── unittest_no_field_presence.proto │ │ ├── unittest_no_generic_services.proto │ │ ├── unittest_optimize_for.proto │ │ ├── unittest_preserve_unknown_enum.proto │ │ ├── unittest_preserve_unknown_enum2.proto │ │ ├── unittest_proto3.proto │ │ ├── unittest_proto3_arena.proto │ │ ├── unittest_proto3_arena_lite.proto │ │ ├── unittest_proto3_lite.proto │ │ ├── unittest_proto3_optional.proto │ │ ├── unittest_well_known_types.proto │ │ ├── unknown_field_set.cc │ │ ├── unknown_field_set.h │ │ ├── unknown_field_set_unittest.cc │ │ ├── util │ │ ├── delimited_message_util.cc │ │ ├── delimited_message_util.h │ │ ├── delimited_message_util_test.cc │ │ ├── field_comparator.cc │ │ ├── field_comparator.h │ │ ├── field_comparator_test.cc │ │ ├── field_mask_util.cc │ │ ├── field_mask_util.h │ │ ├── field_mask_util_test.cc │ │ ├── internal │ │ │ ├── constants.h │ │ │ ├── datapiece.cc │ │ │ ├── datapiece.h │ │ │ ├── default_value_objectwriter.cc │ │ │ ├── default_value_objectwriter.h │ │ │ ├── default_value_objectwriter_test.cc │ │ │ ├── error_listener.cc │ │ │ ├── error_listener.h │ │ │ ├── expecting_objectwriter.h │ │ │ ├── field_mask_utility.cc │ │ │ ├── field_mask_utility.h │ │ │ ├── json_escaping.cc │ │ │ ├── json_escaping.h │ │ │ ├── json_objectwriter.cc │ │ │ ├── json_objectwriter.h │ │ │ ├── json_objectwriter_test.cc │ │ │ ├── json_stream_parser.cc │ │ │ ├── json_stream_parser.h │ │ │ ├── json_stream_parser_test.cc │ │ │ ├── location_tracker.h │ │ │ ├── mock_error_listener.h │ │ │ ├── object_location_tracker.h │ │ │ ├── object_source.h │ │ │ ├── object_writer.cc │ │ │ ├── object_writer.h │ │ │ ├── proto_writer.cc │ │ │ ├── proto_writer.h │ │ │ ├── protostream_objectsource.cc │ │ │ ├── protostream_objectsource.h │ │ │ ├── protostream_objectsource_test.cc │ │ │ ├── protostream_objectwriter.cc │ │ │ ├── protostream_objectwriter.h │ │ │ ├── protostream_objectwriter_test.cc │ │ │ ├── structured_objectwriter.h │ │ │ ├── testdata │ │ │ │ ├── anys.proto │ │ │ │ ├── books.proto │ │ │ │ ├── default_value.proto │ │ │ │ ├── default_value_test.proto │ │ │ │ ├── field_mask.proto │ │ │ │ ├── maps.proto │ │ │ │ ├── oneofs.proto │ │ │ │ ├── proto3.proto │ │ │ │ ├── struct.proto │ │ │ │ ├── timestamp_duration.proto │ │ │ │ └── wrappers.proto │ │ │ ├── type_info.cc │ │ │ ├── type_info.h │ │ │ ├── type_info_test_helper.cc │ │ │ ├── type_info_test_helper.h │ │ │ ├── utility.cc │ │ │ └── utility.h │ │ ├── json_format.proto │ │ ├── json_format_proto3.proto │ │ ├── json_util.cc │ │ ├── json_util.h │ │ ├── json_util_test.cc │ │ ├── message_differencer.cc │ │ ├── message_differencer.h │ │ ├── message_differencer_unittest.cc │ │ ├── message_differencer_unittest.proto │ │ ├── package_info.h │ │ ├── time_util.cc │ │ ├── time_util.h │ │ ├── time_util_test.cc │ │ ├── type_resolver.h │ │ ├── type_resolver_util.cc │ │ ├── type_resolver_util.h │ │ └── type_resolver_util_test.cc │ │ ├── well_known_types_unittest.cc │ │ ├── wire_format.cc │ │ ├── wire_format.h │ │ ├── wire_format_lite.cc │ │ ├── wire_format_lite.h │ │ ├── wire_format_unittest.cc │ │ ├── wrappers.pb.cc │ │ ├── wrappers.pb.h │ │ └── wrappers.proto ├── grpc++ │ ├── alarm.h │ ├── channel.h │ ├── client_context.h │ ├── completion_queue.h │ ├── create_channel.h │ ├── create_channel_posix.h │ ├── ext │ │ ├── health_check_service_server_builder_option.h │ │ └── proto_server_reflection_plugin.h │ ├── generic │ │ ├── async_generic_service.h │ │ └── generic_stub.h │ ├── grpc++.h │ ├── health_check_service_interface.h │ ├── impl │ │ ├── call.h │ │ ├── channel_argument_option.h │ │ ├── client_unary_call.h │ │ ├── codegen │ │ │ ├── async_stream.h │ │ │ ├── async_unary_call.h │ │ │ ├── byte_buffer.h │ │ │ ├── call.h │ │ │ ├── call_hook.h │ │ │ ├── channel_interface.h │ │ │ ├── client_context.h │ │ │ ├── client_unary_call.h │ │ │ ├── completion_queue.h │ │ │ ├── completion_queue_tag.h │ │ │ ├── config.h │ │ │ ├── config_protobuf.h │ │ │ ├── core_codegen.h │ │ │ ├── core_codegen_interface.h │ │ │ ├── create_auth_context.h │ │ │ ├── grpc_library.h │ │ │ ├── metadata_map.h │ │ │ ├── method_handler_impl.h │ │ │ ├── proto_utils.h │ │ │ ├── rpc_method.h │ │ │ ├── rpc_service_method.h │ │ │ ├── security │ │ │ │ └── auth_context.h │ │ │ ├── serialization_traits.h │ │ │ ├── server_context.h │ │ │ ├── server_interface.h │ │ │ ├── service_type.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── status_code_enum.h │ │ │ ├── string_ref.h │ │ │ ├── stub_options.h │ │ │ ├── sync_stream.h │ │ │ └── time.h │ │ ├── grpc_library.h │ │ ├── method_handler_impl.h │ │ ├── rpc_method.h │ │ ├── rpc_service_method.h │ │ ├── serialization_traits.h │ │ ├── server_builder_option.h │ │ ├── server_builder_plugin.h │ │ ├── server_initializer.h │ │ └── service_type.h │ ├── resource_quota.h │ ├── security │ │ ├── auth_context.h │ │ ├── auth_metadata_processor.h │ │ ├── credentials.h │ │ └── server_credentials.h │ ├── server.h │ ├── server_builder.h │ ├── server_context.h │ ├── server_posix.h │ ├── support │ │ ├── async_stream.h │ │ ├── async_unary_call.h │ │ ├── byte_buffer.h │ │ ├── channel_arguments.h │ │ ├── config.h │ │ ├── error_details.h │ │ ├── slice.h │ │ ├── status.h │ │ ├── status_code_enum.h │ │ ├── string_ref.h │ │ ├── stub_options.h │ │ ├── sync_stream.h │ │ └── time.h │ └── test │ │ ├── mock_stream.h │ │ └── server_context_test_spouse.h ├── grpc │ ├── byte_buffer.h │ ├── byte_buffer_reader.h │ ├── census.h │ ├── compression.h │ ├── fork.h │ ├── grpc.h │ ├── grpc_cronet.h │ ├── grpc_posix.h │ ├── grpc_security.h │ ├── grpc_security_constants.h │ ├── impl │ │ └── codegen │ │ │ ├── README.md │ │ │ ├── atm.h │ │ │ ├── atm_gcc_atomic.h │ │ │ ├── atm_gcc_sync.h │ │ │ ├── atm_windows.h │ │ │ ├── byte_buffer.h │ │ │ ├── byte_buffer_reader.h │ │ │ ├── compression_types.h │ │ │ ├── connectivity_state.h │ │ │ ├── fork.h │ │ │ ├── gpr_slice.h │ │ │ ├── gpr_types.h │ │ │ ├── grpc_types.h │ │ │ ├── log.h │ │ │ ├── port_platform.h │ │ │ ├── propagation_bits.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── sync.h │ │ │ ├── sync_abseil.h │ │ │ ├── sync_custom.h │ │ │ ├── sync_generic.h │ │ │ ├── sync_posix.h │ │ │ └── sync_windows.h │ ├── load_reporting.h │ ├── module.modulemap │ ├── slice.h │ ├── slice_buffer.h │ ├── status.h │ └── support │ │ ├── alloc.h │ │ ├── atm.h │ │ ├── atm_gcc_atomic.h │ │ ├── atm_gcc_sync.h │ │ ├── atm_windows.h │ │ ├── cpu.h │ │ ├── log.h │ │ ├── log_windows.h │ │ ├── port_platform.h │ │ ├── string_util.h │ │ ├── sync.h │ │ ├── sync_abseil.h │ │ ├── sync_custom.h │ │ ├── sync_generic.h │ │ ├── sync_posix.h │ │ ├── sync_windows.h │ │ ├── thd_id.h │ │ ├── time.h │ │ └── workaround_list.h └── grpcpp │ ├── alarm.h │ ├── channel.h │ ├── client_context.h │ ├── completion_queue.h │ ├── create_channel.h │ ├── create_channel_posix.h │ ├── ext │ ├── channelz_service_plugin.h │ ├── health_check_service_server_builder_option.h │ ├── proto_server_reflection_plugin.h │ └── server_load_reporting.h │ ├── generic │ ├── async_generic_service.h │ └── generic_stub.h │ ├── grpcpp.h │ ├── health_check_service_interface.h │ ├── impl │ ├── README.md │ ├── call.h │ ├── channel_argument_option.h │ ├── client_unary_call.h │ ├── codegen │ │ ├── README.md │ │ ├── async_generic_service.h │ │ ├── async_stream.h │ │ ├── async_unary_call.h │ │ ├── byte_buffer.h │ │ ├── call.h │ │ ├── call_hook.h │ │ ├── call_op_set.h │ │ ├── call_op_set_interface.h │ │ ├── callback_common.h │ │ ├── channel_interface.h │ │ ├── client_callback.h │ │ ├── client_context.h │ │ ├── client_interceptor.h │ │ ├── client_unary_call.h │ │ ├── completion_queue.h │ │ ├── completion_queue_tag.h │ │ ├── config.h │ │ ├── config_protobuf.h │ │ ├── core_codegen.h │ │ ├── core_codegen_interface.h │ │ ├── create_auth_context.h │ │ ├── delegating_channel.h │ │ ├── grpc_library.h │ │ ├── intercepted_channel.h │ │ ├── interceptor.h │ │ ├── interceptor_common.h │ │ ├── message_allocator.h │ │ ├── metadata_map.h │ │ ├── method_handler.h │ │ ├── method_handler_impl.h │ │ ├── proto_buffer_reader.h │ │ ├── proto_buffer_writer.h │ │ ├── proto_utils.h │ │ ├── rpc_method.h │ │ ├── rpc_service_method.h │ │ ├── security │ │ │ └── auth_context.h │ │ ├── serialization_traits.h │ │ ├── server_callback.h │ │ ├── server_callback_handlers.h │ │ ├── server_context.h │ │ ├── server_interceptor.h │ │ ├── server_interface.h │ │ ├── service_type.h │ │ ├── slice.h │ │ ├── status.h │ │ ├── status_code_enum.h │ │ ├── string_ref.h │ │ ├── stub_options.h │ │ ├── sync.h │ │ ├── sync_stream.h │ │ └── time.h │ ├── grpc_library.h │ ├── method_handler_impl.h │ ├── rpc_method.h │ ├── rpc_service_method.h │ ├── serialization_traits.h │ ├── server_builder_option.h │ ├── server_builder_plugin.h │ ├── server_initializer.h │ └── service_type.h │ ├── opencensus.h │ ├── resource_quota.h │ ├── security │ ├── alts_context.h │ ├── alts_util.h │ ├── auth_context.h │ ├── auth_metadata_processor.h │ ├── credentials.h │ ├── cronet_credentials.h │ ├── server_credentials.h │ ├── tls_certificate_provider.h │ └── tls_credentials_options.h │ ├── server.h │ ├── server_builder.h │ ├── server_context.h │ ├── server_posix.h │ ├── support │ ├── async_stream.h │ ├── async_unary_call.h │ ├── byte_buffer.h │ ├── channel_arguments.h │ ├── client_callback.h │ ├── client_interceptor.h │ ├── config.h │ ├── error_details.h │ ├── interceptor.h │ ├── message_allocator.h │ ├── method_handler.h │ ├── proto_buffer_reader.h │ ├── proto_buffer_writer.h │ ├── server_callback.h │ ├── server_interceptor.h │ ├── slice.h │ ├── status.h │ ├── status_code_enum.h │ ├── string_ref.h │ ├── stub_options.h │ ├── sync_stream.h │ ├── time.h │ └── validate_service_config.h │ ├── test │ ├── channel_test_peer.h │ ├── default_reactor_test_peer.h │ ├── mock_stream.h │ └── server_context_test_spouse.h │ └── xds_server_builder.h ├── Include_1.50.x ├── Makefile.am ├── README.md ├── absl │ ├── BUILD.bazel │ ├── CMakeLists.txt │ ├── abseil.podspec.gen.py │ ├── algorithm │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── algorithm.h │ │ ├── algorithm_test.cc │ │ ├── container.h │ │ ├── container_test.cc │ │ └── equal_benchmark.cc │ ├── base │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── attributes.h │ │ ├── bit_cast_test.cc │ │ ├── call_once.h │ │ ├── call_once_test.cc │ │ ├── casts.h │ │ ├── config.h │ │ ├── config_test.cc │ │ ├── const_init.h │ │ ├── dynamic_annotations.h │ │ ├── exception_safety_testing_test.cc │ │ ├── inline_variable_test.cc │ │ ├── inline_variable_test_a.cc │ │ ├── inline_variable_test_b.cc │ │ ├── internal │ │ │ ├── atomic_hook.h │ │ │ ├── atomic_hook_test.cc │ │ │ ├── atomic_hook_test_helper.cc │ │ │ ├── atomic_hook_test_helper.h │ │ │ ├── cmake_thread_test.cc │ │ │ ├── cycleclock.cc │ │ │ ├── cycleclock.h │ │ │ ├── direct_mmap.h │ │ │ ├── dynamic_annotations.h │ │ │ ├── endian.h │ │ │ ├── endian_test.cc │ │ │ ├── errno_saver.h │ │ │ ├── errno_saver_test.cc │ │ │ ├── exception_safety_testing.cc │ │ │ ├── exception_safety_testing.h │ │ │ ├── exception_testing.h │ │ │ ├── fast_type_id.h │ │ │ ├── fast_type_id_test.cc │ │ │ ├── hide_ptr.h │ │ │ ├── identity.h │ │ │ ├── inline_variable.h │ │ │ ├── inline_variable_testing.h │ │ │ ├── invoke.h │ │ │ ├── low_level_alloc.cc │ │ │ ├── low_level_alloc.h │ │ │ ├── low_level_alloc_test.cc │ │ │ ├── low_level_scheduling.h │ │ │ ├── per_thread_tls.h │ │ │ ├── prefetch.h │ │ │ ├── prefetch_test.cc │ │ │ ├── pretty_function.h │ │ │ ├── raw_logging.cc │ │ │ ├── raw_logging.h │ │ │ ├── scheduling_mode.h │ │ │ ├── scoped_set_env.cc │ │ │ ├── scoped_set_env.h │ │ │ ├── scoped_set_env_test.cc │ │ │ ├── spinlock.cc │ │ │ ├── spinlock.h │ │ │ ├── spinlock_akaros.inc │ │ │ ├── spinlock_benchmark.cc │ │ │ ├── spinlock_linux.inc │ │ │ ├── spinlock_posix.inc │ │ │ ├── spinlock_wait.cc │ │ │ ├── spinlock_wait.h │ │ │ ├── spinlock_win32.inc │ │ │ ├── strerror.cc │ │ │ ├── strerror.h │ │ │ ├── strerror_benchmark.cc │ │ │ ├── strerror_test.cc │ │ │ ├── sysinfo.cc │ │ │ ├── sysinfo.h │ │ │ ├── sysinfo_test.cc │ │ │ ├── thread_annotations.h │ │ │ ├── thread_identity.cc │ │ │ ├── thread_identity.h │ │ │ ├── thread_identity_benchmark.cc │ │ │ ├── thread_identity_test.cc │ │ │ ├── throw_delegate.cc │ │ │ ├── throw_delegate.h │ │ │ ├── tsan_mutex_interface.h │ │ │ ├── unaligned_access.h │ │ │ ├── unique_small_name_test.cc │ │ │ ├── unscaledcycleclock.cc │ │ │ └── unscaledcycleclock.h │ │ ├── invoke_test.cc │ │ ├── log_severity.cc │ │ ├── log_severity.h │ │ ├── log_severity_test.cc │ │ ├── macros.h │ │ ├── optimization.h │ │ ├── optimization_test.cc │ │ ├── options.h │ │ ├── policy_checks.h │ │ ├── port.h │ │ ├── raw_logging_test.cc │ │ ├── spinlock_test_common.cc │ │ ├── thread_annotations.h │ │ └── throw_delegate_test.cc │ ├── cleanup │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── cleanup.h │ │ ├── cleanup_test.cc │ │ └── internal │ │ │ └── cleanup.h │ ├── container │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── btree_benchmark.cc │ │ ├── btree_map.h │ │ ├── btree_set.h │ │ ├── btree_test.cc │ │ ├── btree_test.h │ │ ├── fixed_array.h │ │ ├── fixed_array_benchmark.cc │ │ ├── fixed_array_exception_safety_test.cc │ │ ├── fixed_array_test.cc │ │ ├── flat_hash_map.h │ │ ├── flat_hash_map_test.cc │ │ ├── flat_hash_set.h │ │ ├── flat_hash_set_test.cc │ │ ├── inlined_vector.h │ │ ├── inlined_vector_benchmark.cc │ │ ├── inlined_vector_exception_safety_test.cc │ │ ├── inlined_vector_test.cc │ │ ├── internal │ │ │ ├── btree.h │ │ │ ├── btree_container.h │ │ │ ├── common.h │ │ │ ├── compressed_tuple.h │ │ │ ├── compressed_tuple_test.cc │ │ │ ├── container_memory.h │ │ │ ├── container_memory_test.cc │ │ │ ├── counting_allocator.h │ │ │ ├── hash_function_defaults.h │ │ │ ├── hash_function_defaults_test.cc │ │ │ ├── hash_generator_testing.cc │ │ │ ├── hash_generator_testing.h │ │ │ ├── hash_policy_testing.h │ │ │ ├── hash_policy_testing_test.cc │ │ │ ├── hash_policy_traits.h │ │ │ ├── hash_policy_traits_test.cc │ │ │ ├── hashtable_debug.h │ │ │ ├── hashtable_debug_hooks.h │ │ │ ├── hashtablez_sampler.cc │ │ │ ├── hashtablez_sampler.h │ │ │ ├── hashtablez_sampler_force_weak_definition.cc │ │ │ ├── hashtablez_sampler_test.cc │ │ │ ├── inlined_vector.h │ │ │ ├── layout.h │ │ │ ├── layout_benchmark.cc │ │ │ ├── layout_test.cc │ │ │ ├── node_slot_policy.h │ │ │ ├── node_slot_policy_test.cc │ │ │ ├── raw_hash_map.h │ │ │ ├── raw_hash_set.cc │ │ │ ├── raw_hash_set.h │ │ │ ├── raw_hash_set_allocator_test.cc │ │ │ ├── raw_hash_set_benchmark.cc │ │ │ ├── raw_hash_set_probe_benchmark.cc │ │ │ ├── raw_hash_set_test.cc │ │ │ ├── test_instance_tracker.cc │ │ │ ├── test_instance_tracker.h │ │ │ ├── test_instance_tracker_test.cc │ │ │ ├── tracked.h │ │ │ ├── unordered_map_constructor_test.h │ │ │ ├── unordered_map_lookup_test.h │ │ │ ├── unordered_map_members_test.h │ │ │ ├── unordered_map_modifiers_test.h │ │ │ ├── unordered_map_test.cc │ │ │ ├── unordered_set_constructor_test.h │ │ │ ├── unordered_set_lookup_test.h │ │ │ ├── unordered_set_members_test.h │ │ │ ├── unordered_set_modifiers_test.h │ │ │ └── unordered_set_test.cc │ │ ├── node_hash_map.h │ │ ├── node_hash_map_test.cc │ │ ├── node_hash_set.h │ │ ├── node_hash_set_test.cc │ │ └── sample_element_size_test.cc │ ├── copts │ │ ├── AbseilConfigureCopts.cmake │ │ ├── GENERATED_AbseilCopts.cmake │ │ ├── GENERATED_copts.bzl │ │ ├── configure_copts.bzl │ │ ├── copts.py │ │ └── generate_copts.py │ ├── debugging │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── failure_signal_handler.cc │ │ ├── failure_signal_handler.h │ │ ├── failure_signal_handler_test.cc │ │ ├── internal │ │ │ ├── address_is_readable.cc │ │ │ ├── address_is_readable.h │ │ │ ├── demangle.cc │ │ │ ├── demangle.h │ │ │ ├── demangle_test.cc │ │ │ ├── elf_mem_image.cc │ │ │ ├── elf_mem_image.h │ │ │ ├── examine_stack.cc │ │ │ ├── examine_stack.h │ │ │ ├── stack_consumption.cc │ │ │ ├── stack_consumption.h │ │ │ ├── stack_consumption_test.cc │ │ │ ├── stacktrace_aarch64-inl.inc │ │ │ ├── stacktrace_arm-inl.inc │ │ │ ├── stacktrace_config.h │ │ │ ├── stacktrace_emscripten-inl.inc │ │ │ ├── stacktrace_generic-inl.inc │ │ │ ├── stacktrace_powerpc-inl.inc │ │ │ ├── stacktrace_riscv-inl.inc │ │ │ ├── stacktrace_unimplemented-inl.inc │ │ │ ├── stacktrace_win32-inl.inc │ │ │ ├── stacktrace_x86-inl.inc │ │ │ ├── symbolize.h │ │ │ ├── vdso_support.cc │ │ │ └── vdso_support.h │ │ ├── leak_check.cc │ │ ├── leak_check.h │ │ ├── leak_check_fail_test.cc │ │ ├── leak_check_test.cc │ │ ├── stacktrace.cc │ │ ├── stacktrace.h │ │ ├── stacktrace_benchmark.cc │ │ ├── symbolize.cc │ │ ├── symbolize.h │ │ ├── symbolize_darwin.inc │ │ ├── symbolize_elf.inc │ │ ├── symbolize_emscripten.inc │ │ ├── symbolize_test.cc │ │ ├── symbolize_unimplemented.inc │ │ └── symbolize_win32.inc │ ├── flags │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── commandlineflag.cc │ │ ├── commandlineflag.h │ │ ├── commandlineflag_test.cc │ │ ├── config.h │ │ ├── config_test.cc │ │ ├── declare.h │ │ ├── flag.cc │ │ ├── flag.h │ │ ├── flag_benchmark.cc │ │ ├── flag_benchmark.lds │ │ ├── flag_test.cc │ │ ├── flag_test_defs.cc │ │ ├── internal │ │ │ ├── commandlineflag.cc │ │ │ ├── commandlineflag.h │ │ │ ├── flag.cc │ │ │ ├── flag.h │ │ │ ├── flag_msvc.inc │ │ │ ├── parse.h │ │ │ ├── path_util.h │ │ │ ├── path_util_test.cc │ │ │ ├── private_handle_accessor.cc │ │ │ ├── private_handle_accessor.h │ │ │ ├── program_name.cc │ │ │ ├── program_name.h │ │ │ ├── program_name_test.cc │ │ │ ├── registry.h │ │ │ ├── sequence_lock.h │ │ │ ├── sequence_lock_test.cc │ │ │ ├── usage.cc │ │ │ ├── usage.h │ │ │ └── usage_test.cc │ │ ├── marshalling.cc │ │ ├── marshalling.h │ │ ├── marshalling_test.cc │ │ ├── parse.cc │ │ ├── parse.h │ │ ├── parse_test.cc │ │ ├── reflection.cc │ │ ├── reflection.h │ │ ├── reflection_test.cc │ │ ├── usage.cc │ │ ├── usage.h │ │ ├── usage_config.cc │ │ ├── usage_config.h │ │ └── usage_config_test.cc │ ├── functional │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── any_invocable.h │ │ ├── any_invocable_test.cc │ │ ├── bind_front.h │ │ ├── bind_front_test.cc │ │ ├── function_ref.h │ │ ├── function_ref_test.cc │ │ ├── function_type_benchmark.cc │ │ └── internal │ │ │ ├── any_invocable.h │ │ │ ├── front_binder.h │ │ │ └── function_ref.h │ ├── hash │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── hash.h │ │ ├── hash_benchmark.cc │ │ ├── hash_test.cc │ │ ├── hash_testing.h │ │ └── internal │ │ │ ├── city.cc │ │ │ ├── city.h │ │ │ ├── city_test.cc │ │ │ ├── hash.cc │ │ │ ├── hash.h │ │ │ ├── low_level_hash.cc │ │ │ ├── low_level_hash.h │ │ │ ├── low_level_hash_test.cc │ │ │ ├── print_hash_of.cc │ │ │ └── spy_hash_state.h │ ├── memory │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── memory.h │ │ ├── memory_exception_safety_test.cc │ │ └── memory_test.cc │ ├── meta │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── type_traits.h │ │ └── type_traits_test.cc │ ├── numeric │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── bits.h │ │ ├── bits_benchmark.cc │ │ ├── bits_test.cc │ │ ├── int128.cc │ │ ├── int128.h │ │ ├── int128_benchmark.cc │ │ ├── int128_have_intrinsic.inc │ │ ├── int128_no_intrinsic.inc │ │ ├── int128_stream_test.cc │ │ ├── int128_test.cc │ │ └── internal │ │ │ ├── bits.h │ │ │ └── representation.h │ ├── profiling │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ └── internal │ │ │ ├── exponential_biased.cc │ │ │ ├── exponential_biased.h │ │ │ ├── exponential_biased_test.cc │ │ │ ├── periodic_sampler.cc │ │ │ ├── periodic_sampler.h │ │ │ ├── periodic_sampler_benchmark.cc │ │ │ ├── periodic_sampler_test.cc │ │ │ ├── sample_recorder.h │ │ │ └── sample_recorder_test.cc │ ├── random │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── benchmarks.cc │ │ ├── bernoulli_distribution.h │ │ ├── bernoulli_distribution_test.cc │ │ ├── beta_distribution.h │ │ ├── beta_distribution_test.cc │ │ ├── bit_gen_ref.h │ │ ├── bit_gen_ref_test.cc │ │ ├── discrete_distribution.cc │ │ ├── discrete_distribution.h │ │ ├── discrete_distribution_test.cc │ │ ├── distributions.h │ │ ├── distributions_test.cc │ │ ├── examples_test.cc │ │ ├── exponential_distribution.h │ │ ├── exponential_distribution_test.cc │ │ ├── gaussian_distribution.cc │ │ ├── gaussian_distribution.h │ │ ├── gaussian_distribution_test.cc │ │ ├── generators_test.cc │ │ ├── internal │ │ │ ├── BUILD.bazel │ │ │ ├── chi_square.cc │ │ │ ├── chi_square.h │ │ │ ├── chi_square_test.cc │ │ │ ├── distribution_caller.h │ │ │ ├── distribution_test_util.cc │ │ │ ├── distribution_test_util.h │ │ │ ├── distribution_test_util_test.cc │ │ │ ├── explicit_seed_seq.h │ │ │ ├── explicit_seed_seq_test.cc │ │ │ ├── fast_uniform_bits.h │ │ │ ├── fast_uniform_bits_test.cc │ │ │ ├── fastmath.h │ │ │ ├── fastmath_test.cc │ │ │ ├── gaussian_distribution_gentables.cc │ │ │ ├── generate_real.h │ │ │ ├── generate_real_test.cc │ │ │ ├── iostream_state_saver.h │ │ │ ├── iostream_state_saver_test.cc │ │ │ ├── mock_helpers.h │ │ │ ├── mock_overload_set.h │ │ │ ├── nanobenchmark.cc │ │ │ ├── nanobenchmark.h │ │ │ ├── nanobenchmark_test.cc │ │ │ ├── nonsecure_base.h │ │ │ ├── nonsecure_base_test.cc │ │ │ ├── pcg_engine.h │ │ │ ├── pcg_engine_test.cc │ │ │ ├── platform.h │ │ │ ├── pool_urbg.cc │ │ │ ├── pool_urbg.h │ │ │ ├── pool_urbg_test.cc │ │ │ ├── randen.cc │ │ │ ├── randen.h │ │ │ ├── randen_benchmarks.cc │ │ │ ├── randen_detect.cc │ │ │ ├── randen_detect.h │ │ │ ├── randen_engine.h │ │ │ ├── randen_engine_test.cc │ │ │ ├── randen_hwaes.cc │ │ │ ├── randen_hwaes.h │ │ │ ├── randen_hwaes_test.cc │ │ │ ├── randen_round_keys.cc │ │ │ ├── randen_slow.cc │ │ │ ├── randen_slow.h │ │ │ ├── randen_slow_test.cc │ │ │ ├── randen_test.cc │ │ │ ├── randen_traits.h │ │ │ ├── salted_seed_seq.h │ │ │ ├── salted_seed_seq_test.cc │ │ │ ├── seed_material.cc │ │ │ ├── seed_material.h │ │ │ ├── seed_material_test.cc │ │ │ ├── sequence_urbg.h │ │ │ ├── traits.h │ │ │ ├── traits_test.cc │ │ │ ├── uniform_helper.h │ │ │ ├── uniform_helper_test.cc │ │ │ ├── wide_multiply.h │ │ │ └── wide_multiply_test.cc │ │ ├── log_uniform_int_distribution.h │ │ ├── log_uniform_int_distribution_test.cc │ │ ├── mock_distributions.h │ │ ├── mock_distributions_test.cc │ │ ├── mocking_bit_gen.h │ │ ├── mocking_bit_gen_test.cc │ │ ├── poisson_distribution.h │ │ ├── poisson_distribution_test.cc │ │ ├── random.h │ │ ├── seed_gen_exception.cc │ │ ├── seed_gen_exception.h │ │ ├── seed_sequences.cc │ │ ├── seed_sequences.h │ │ ├── seed_sequences_test.cc │ │ ├── uniform_int_distribution.h │ │ ├── uniform_int_distribution_test.cc │ │ ├── uniform_real_distribution.h │ │ ├── uniform_real_distribution_test.cc │ │ ├── zipf_distribution.h │ │ └── zipf_distribution_test.cc │ ├── status │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── internal │ │ │ ├── status_internal.h │ │ │ └── statusor_internal.h │ │ ├── status.cc │ │ ├── status.h │ │ ├── status_payload_printer.cc │ │ ├── status_payload_printer.h │ │ ├── status_test.cc │ │ ├── statusor.cc │ │ ├── statusor.h │ │ └── statusor_test.cc │ ├── strings │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── ascii.cc │ │ ├── ascii.h │ │ ├── ascii_benchmark.cc │ │ ├── ascii_test.cc │ │ ├── charconv.cc │ │ ├── charconv.h │ │ ├── charconv_benchmark.cc │ │ ├── charconv_test.cc │ │ ├── cord.cc │ │ ├── cord.h │ │ ├── cord_analysis.cc │ │ ├── cord_analysis.h │ │ ├── cord_buffer.cc │ │ ├── cord_buffer.h │ │ ├── cord_buffer_test.cc │ │ ├── cord_ring_reader_test.cc │ │ ├── cord_ring_test.cc │ │ ├── cord_test.cc │ │ ├── cord_test_helpers.h │ │ ├── cordz_test.cc │ │ ├── cordz_test_helpers.h │ │ ├── escaping.cc │ │ ├── escaping.h │ │ ├── escaping_benchmark.cc │ │ ├── escaping_test.cc │ │ ├── internal │ │ │ ├── char_map.h │ │ │ ├── char_map_benchmark.cc │ │ │ ├── char_map_test.cc │ │ │ ├── charconv_bigint.cc │ │ │ ├── charconv_bigint.h │ │ │ ├── charconv_bigint_test.cc │ │ │ ├── charconv_parse.cc │ │ │ ├── charconv_parse.h │ │ │ ├── charconv_parse_test.cc │ │ │ ├── cord_data_edge.h │ │ │ ├── cord_data_edge_test.cc │ │ │ ├── cord_internal.cc │ │ │ ├── cord_internal.h │ │ │ ├── cord_rep_btree.cc │ │ │ ├── cord_rep_btree.h │ │ │ ├── cord_rep_btree_navigator.cc │ │ │ ├── cord_rep_btree_navigator.h │ │ │ ├── cord_rep_btree_navigator_test.cc │ │ │ ├── cord_rep_btree_reader.cc │ │ │ ├── cord_rep_btree_reader.h │ │ │ ├── cord_rep_btree_reader_test.cc │ │ │ ├── cord_rep_btree_test.cc │ │ │ ├── cord_rep_consume.cc │ │ │ ├── cord_rep_consume.h │ │ │ ├── cord_rep_crc.cc │ │ │ ├── cord_rep_crc.h │ │ │ ├── cord_rep_crc_test.cc │ │ │ ├── cord_rep_flat.h │ │ │ ├── cord_rep_ring.cc │ │ │ ├── cord_rep_ring.h │ │ │ ├── cord_rep_ring_reader.h │ │ │ ├── cord_rep_test_util.h │ │ │ ├── cordz_functions.cc │ │ │ ├── cordz_functions.h │ │ │ ├── cordz_functions_test.cc │ │ │ ├── cordz_handle.cc │ │ │ ├── cordz_handle.h │ │ │ ├── cordz_handle_test.cc │ │ │ ├── cordz_info.cc │ │ │ ├── cordz_info.h │ │ │ ├── cordz_info_statistics_test.cc │ │ │ ├── cordz_info_test.cc │ │ │ ├── cordz_sample_token.cc │ │ │ ├── cordz_sample_token.h │ │ │ ├── cordz_sample_token_test.cc │ │ │ ├── cordz_statistics.h │ │ │ ├── cordz_update_scope.h │ │ │ ├── cordz_update_scope_test.cc │ │ │ ├── cordz_update_tracker.h │ │ │ ├── cordz_update_tracker_test.cc │ │ │ ├── escaping.cc │ │ │ ├── escaping.h │ │ │ ├── escaping_test_common.h │ │ │ ├── memutil.cc │ │ │ ├── memutil.h │ │ │ ├── memutil_benchmark.cc │ │ │ ├── memutil_test.cc │ │ │ ├── numbers_test_common.h │ │ │ ├── ostringstream.cc │ │ │ ├── ostringstream.h │ │ │ ├── ostringstream_benchmark.cc │ │ │ ├── ostringstream_test.cc │ │ │ ├── pow10_helper.cc │ │ │ ├── pow10_helper.h │ │ │ ├── pow10_helper_test.cc │ │ │ ├── resize_uninitialized.h │ │ │ ├── resize_uninitialized_test.cc │ │ │ ├── stl_type_traits.h │ │ │ ├── str_format │ │ │ │ ├── arg.cc │ │ │ │ ├── arg.h │ │ │ │ ├── arg_test.cc │ │ │ │ ├── bind.cc │ │ │ │ ├── bind.h │ │ │ │ ├── bind_test.cc │ │ │ │ ├── checker.h │ │ │ │ ├── checker_test.cc │ │ │ │ ├── convert_test.cc │ │ │ │ ├── extension.cc │ │ │ │ ├── extension.h │ │ │ │ ├── extension_test.cc │ │ │ │ ├── float_conversion.cc │ │ │ │ ├── float_conversion.h │ │ │ │ ├── output.cc │ │ │ │ ├── output.h │ │ │ │ ├── output_test.cc │ │ │ │ ├── parser.cc │ │ │ │ ├── parser.h │ │ │ │ └── parser_test.cc │ │ │ ├── str_join_internal.h │ │ │ ├── str_split_internal.h │ │ │ ├── string_constant.h │ │ │ ├── string_constant_test.cc │ │ │ ├── utf8.cc │ │ │ ├── utf8.h │ │ │ └── utf8_test.cc │ │ ├── match.cc │ │ ├── match.h │ │ ├── match_test.cc │ │ ├── numbers.cc │ │ ├── numbers.h │ │ ├── numbers_benchmark.cc │ │ ├── numbers_test.cc │ │ ├── str_cat.cc │ │ ├── str_cat.h │ │ ├── str_cat_benchmark.cc │ │ ├── str_cat_test.cc │ │ ├── str_format.h │ │ ├── str_format_test.cc │ │ ├── str_join.h │ │ ├── str_join_benchmark.cc │ │ ├── str_join_test.cc │ │ ├── str_replace.cc │ │ ├── str_replace.h │ │ ├── str_replace_benchmark.cc │ │ ├── str_replace_test.cc │ │ ├── str_split.cc │ │ ├── str_split.h │ │ ├── str_split_benchmark.cc │ │ ├── str_split_test.cc │ │ ├── string_view.cc │ │ ├── string_view.h │ │ ├── string_view_benchmark.cc │ │ ├── string_view_test.cc │ │ ├── strip.h │ │ ├── strip_test.cc │ │ ├── substitute.cc │ │ ├── substitute.h │ │ └── substitute_test.cc │ ├── synchronization │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── barrier.cc │ │ ├── barrier.h │ │ ├── barrier_test.cc │ │ ├── blocking_counter.cc │ │ ├── blocking_counter.h │ │ ├── blocking_counter_benchmark.cc │ │ ├── blocking_counter_test.cc │ │ ├── internal │ │ │ ├── create_thread_identity.cc │ │ │ ├── create_thread_identity.h │ │ │ ├── futex.h │ │ │ ├── graphcycles.cc │ │ │ ├── graphcycles.h │ │ │ ├── graphcycles_benchmark.cc │ │ │ ├── graphcycles_test.cc │ │ │ ├── kernel_timeout.h │ │ │ ├── per_thread_sem.cc │ │ │ ├── per_thread_sem.h │ │ │ ├── per_thread_sem_test.cc │ │ │ ├── thread_pool.h │ │ │ ├── waiter.cc │ │ │ └── waiter.h │ │ ├── lifetime_test.cc │ │ ├── mutex.cc │ │ ├── mutex.h │ │ ├── mutex_benchmark.cc │ │ ├── mutex_test.cc │ │ ├── notification.cc │ │ ├── notification.h │ │ └── notification_test.cc │ ├── time │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── civil_time.cc │ │ ├── civil_time.h │ │ ├── civil_time_benchmark.cc │ │ ├── civil_time_test.cc │ │ ├── clock.cc │ │ ├── clock.h │ │ ├── clock_benchmark.cc │ │ ├── clock_test.cc │ │ ├── duration.cc │ │ ├── duration_benchmark.cc │ │ ├── duration_test.cc │ │ ├── format.cc │ │ ├── format_benchmark.cc │ │ ├── format_test.cc │ │ ├── internal │ │ │ ├── cctz │ │ │ │ ├── BUILD.bazel │ │ │ │ ├── include │ │ │ │ │ └── cctz │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ ├── src │ │ │ │ │ ├── cctz_benchmark.cc │ │ │ │ │ ├── civil_time_detail.cc │ │ │ │ │ ├── civil_time_test.cc │ │ │ │ │ ├── time_zone_fixed.cc │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ ├── time_zone_format.cc │ │ │ │ │ ├── time_zone_format_test.cc │ │ │ │ │ ├── time_zone_if.cc │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ ├── time_zone_impl.cc │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ ├── time_zone_info.cc │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ ├── time_zone_libc.cc │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ ├── time_zone_lookup.cc │ │ │ │ │ ├── time_zone_lookup_test.cc │ │ │ │ │ ├── time_zone_posix.cc │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ ├── tzfile.h │ │ │ │ │ └── zone_info_source.cc │ │ │ │ └── testdata │ │ │ │ │ ├── README.zoneinfo │ │ │ │ │ ├── version │ │ │ │ │ └── zoneinfo │ │ │ │ │ ├── Africa │ │ │ │ │ ├── Abidjan │ │ │ │ │ ├── Accra │ │ │ │ │ ├── Addis_Ababa │ │ │ │ │ ├── Algiers │ │ │ │ │ ├── Asmara │ │ │ │ │ ├── Asmera │ │ │ │ │ ├── Bamako │ │ │ │ │ ├── Bangui │ │ │ │ │ ├── Banjul │ │ │ │ │ ├── Bissau │ │ │ │ │ ├── Blantyre │ │ │ │ │ ├── Brazzaville │ │ │ │ │ ├── Bujumbura │ │ │ │ │ ├── Cairo │ │ │ │ │ ├── Casablanca │ │ │ │ │ ├── Ceuta │ │ │ │ │ ├── Conakry │ │ │ │ │ ├── Dakar │ │ │ │ │ ├── Dar_es_Salaam │ │ │ │ │ ├── Djibouti │ │ │ │ │ ├── Douala │ │ │ │ │ ├── El_Aaiun │ │ │ │ │ ├── Freetown │ │ │ │ │ ├── Gaborone │ │ │ │ │ ├── Harare │ │ │ │ │ ├── Johannesburg │ │ │ │ │ ├── Juba │ │ │ │ │ ├── Kampala │ │ │ │ │ ├── Khartoum │ │ │ │ │ ├── Kigali │ │ │ │ │ ├── Kinshasa │ │ │ │ │ ├── Lagos │ │ │ │ │ ├── Libreville │ │ │ │ │ ├── Lome │ │ │ │ │ ├── Luanda │ │ │ │ │ ├── Lubumbashi │ │ │ │ │ ├── Lusaka │ │ │ │ │ ├── Malabo │ │ │ │ │ ├── Maputo │ │ │ │ │ ├── Maseru │ │ │ │ │ ├── Mbabane │ │ │ │ │ ├── Mogadishu │ │ │ │ │ ├── Monrovia │ │ │ │ │ ├── Nairobi │ │ │ │ │ ├── Ndjamena │ │ │ │ │ ├── Niamey │ │ │ │ │ ├── Nouakchott │ │ │ │ │ ├── Ouagadougou │ │ │ │ │ ├── Porto-Novo │ │ │ │ │ ├── Sao_Tome │ │ │ │ │ ├── Timbuktu │ │ │ │ │ ├── Tripoli │ │ │ │ │ ├── Tunis │ │ │ │ │ └── Windhoek │ │ │ │ │ ├── America │ │ │ │ │ ├── Adak │ │ │ │ │ ├── Anchorage │ │ │ │ │ ├── Anguilla │ │ │ │ │ ├── Antigua │ │ │ │ │ ├── Araguaina │ │ │ │ │ ├── Argentina │ │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ │ ├── Catamarca │ │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ │ ├── Cordoba │ │ │ │ │ │ ├── Jujuy │ │ │ │ │ │ ├── La_Rioja │ │ │ │ │ │ ├── Mendoza │ │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ │ ├── Salta │ │ │ │ │ │ ├── San_Juan │ │ │ │ │ │ ├── San_Luis │ │ │ │ │ │ ├── Tucuman │ │ │ │ │ │ └── Ushuaia │ │ │ │ │ ├── Aruba │ │ │ │ │ ├── Asuncion │ │ │ │ │ ├── Atikokan │ │ │ │ │ ├── Atka │ │ │ │ │ ├── Bahia │ │ │ │ │ ├── Bahia_Banderas │ │ │ │ │ ├── Barbados │ │ │ │ │ ├── Belem │ │ │ │ │ ├── Belize │ │ │ │ │ ├── Blanc-Sablon │ │ │ │ │ ├── Boa_Vista │ │ │ │ │ ├── Bogota │ │ │ │ │ ├── Boise │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ ├── Cambridge_Bay │ │ │ │ │ ├── Campo_Grande │ │ │ │ │ ├── Cancun │ │ │ │ │ ├── Caracas │ │ │ │ │ ├── Catamarca │ │ │ │ │ ├── Cayenne │ │ │ │ │ ├── Cayman │ │ │ │ │ ├── Chicago │ │ │ │ │ ├── Chihuahua │ │ │ │ │ ├── Coral_Harbour │ │ │ │ │ ├── Cordoba │ │ │ │ │ ├── Costa_Rica │ │ │ │ │ ├── Creston │ │ │ │ │ ├── Cuiaba │ │ │ │ │ ├── Curacao │ │ │ │ │ ├── Danmarkshavn │ │ │ │ │ ├── Dawson │ │ │ │ │ ├── Dawson_Creek │ │ │ │ │ ├── Denver │ │ │ │ │ ├── Detroit │ │ │ │ │ ├── Dominica │ │ │ │ │ ├── Edmonton │ │ │ │ │ ├── Eirunepe │ │ │ │ │ ├── El_Salvador │ │ │ │ │ ├── Ensenada │ │ │ │ │ ├── Fort_Nelson │ │ │ │ │ ├── Fort_Wayne │ │ │ │ │ ├── Fortaleza │ │ │ │ │ ├── Glace_Bay │ │ │ │ │ ├── Godthab │ │ │ │ │ ├── Goose_Bay │ │ │ │ │ ├── Grand_Turk │ │ │ │ │ ├── Grenada │ │ │ │ │ ├── Guadeloupe │ │ │ │ │ ├── Guatemala │ │ │ │ │ ├── Guayaquil │ │ │ │ │ ├── Guyana │ │ │ │ │ ├── Halifax │ │ │ │ │ ├── Havana │ │ │ │ │ ├── Hermosillo │ │ │ │ │ ├── Indiana │ │ │ │ │ │ ├── Indianapolis │ │ │ │ │ │ ├── Knox │ │ │ │ │ │ ├── Marengo │ │ │ │ │ │ ├── Petersburg │ │ │ │ │ │ ├── Tell_City │ │ │ │ │ │ ├── Vevay │ │ │ │ │ │ ├── Vincennes │ │ │ │ │ │ └── Winamac │ │ │ │ │ ├── Indianapolis │ │ │ │ │ ├── Inuvik │ │ │ │ │ ├── Iqaluit │ │ │ │ │ ├── Jamaica │ │ │ │ │ ├── Jujuy │ │ │ │ │ ├── Juneau │ │ │ │ │ ├── Kentucky │ │ │ │ │ │ ├── Louisville │ │ │ │ │ │ └── Monticello │ │ │ │ │ ├── Knox_IN │ │ │ │ │ ├── Kralendijk │ │ │ │ │ ├── La_Paz │ │ │ │ │ ├── Lima │ │ │ │ │ ├── Los_Angeles │ │ │ │ │ ├── Louisville │ │ │ │ │ ├── Lower_Princes │ │ │ │ │ ├── Maceio │ │ │ │ │ ├── Managua │ │ │ │ │ ├── Manaus │ │ │ │ │ ├── Marigot │ │ │ │ │ ├── Martinique │ │ │ │ │ ├── Matamoros │ │ │ │ │ ├── Mazatlan │ │ │ │ │ ├── Mendoza │ │ │ │ │ ├── Menominee │ │ │ │ │ ├── Merida │ │ │ │ │ ├── Metlakatla │ │ │ │ │ ├── Mexico_City │ │ │ │ │ ├── Miquelon │ │ │ │ │ ├── Moncton │ │ │ │ │ ├── Monterrey │ │ │ │ │ ├── Montevideo │ │ │ │ │ ├── Montreal │ │ │ │ │ ├── Montserrat │ │ │ │ │ ├── Nassau │ │ │ │ │ ├── New_York │ │ │ │ │ ├── Nipigon │ │ │ │ │ ├── Nome │ │ │ │ │ ├── Noronha │ │ │ │ │ ├── North_Dakota │ │ │ │ │ │ ├── Beulah │ │ │ │ │ │ ├── Center │ │ │ │ │ │ └── New_Salem │ │ │ │ │ ├── Nuuk │ │ │ │ │ ├── Ojinaga │ │ │ │ │ ├── Panama │ │ │ │ │ ├── Pangnirtung │ │ │ │ │ ├── Paramaribo │ │ │ │ │ ├── Phoenix │ │ │ │ │ ├── Port-au-Prince │ │ │ │ │ ├── Port_of_Spain │ │ │ │ │ ├── Porto_Acre │ │ │ │ │ ├── Porto_Velho │ │ │ │ │ ├── Puerto_Rico │ │ │ │ │ ├── Punta_Arenas │ │ │ │ │ ├── Rainy_River │ │ │ │ │ ├── Rankin_Inlet │ │ │ │ │ ├── Recife │ │ │ │ │ ├── Regina │ │ │ │ │ ├── Resolute │ │ │ │ │ ├── Rio_Branco │ │ │ │ │ ├── Rosario │ │ │ │ │ ├── Santa_Isabel │ │ │ │ │ ├── Santarem │ │ │ │ │ ├── Santiago │ │ │ │ │ ├── Santo_Domingo │ │ │ │ │ ├── Sao_Paulo │ │ │ │ │ ├── Scoresbysund │ │ │ │ │ ├── Shiprock │ │ │ │ │ ├── Sitka │ │ │ │ │ ├── St_Barthelemy │ │ │ │ │ ├── St_Johns │ │ │ │ │ ├── St_Kitts │ │ │ │ │ ├── St_Lucia │ │ │ │ │ ├── St_Thomas │ │ │ │ │ ├── St_Vincent │ │ │ │ │ ├── Swift_Current │ │ │ │ │ ├── Tegucigalpa │ │ │ │ │ ├── Thule │ │ │ │ │ ├── Thunder_Bay │ │ │ │ │ ├── Tijuana │ │ │ │ │ ├── Toronto │ │ │ │ │ ├── Tortola │ │ │ │ │ ├── Vancouver │ │ │ │ │ ├── Virgin │ │ │ │ │ ├── Whitehorse │ │ │ │ │ ├── Winnipeg │ │ │ │ │ ├── Yakutat │ │ │ │ │ └── Yellowknife │ │ │ │ │ ├── Antarctica │ │ │ │ │ ├── Casey │ │ │ │ │ ├── Davis │ │ │ │ │ ├── DumontDUrville │ │ │ │ │ ├── Macquarie │ │ │ │ │ ├── Mawson │ │ │ │ │ ├── McMurdo │ │ │ │ │ ├── Palmer │ │ │ │ │ ├── Rothera │ │ │ │ │ ├── South_Pole │ │ │ │ │ ├── Syowa │ │ │ │ │ ├── Troll │ │ │ │ │ └── Vostok │ │ │ │ │ ├── Arctic │ │ │ │ │ └── Longyearbyen │ │ │ │ │ ├── Asia │ │ │ │ │ ├── Aden │ │ │ │ │ ├── Almaty │ │ │ │ │ ├── Amman │ │ │ │ │ ├── Anadyr │ │ │ │ │ ├── Aqtau │ │ │ │ │ ├── Aqtobe │ │ │ │ │ ├── Ashgabat │ │ │ │ │ ├── Ashkhabad │ │ │ │ │ ├── Atyrau │ │ │ │ │ ├── Baghdad │ │ │ │ │ ├── Bahrain │ │ │ │ │ ├── Baku │ │ │ │ │ ├── Bangkok │ │ │ │ │ ├── Barnaul │ │ │ │ │ ├── Beirut │ │ │ │ │ ├── Bishkek │ │ │ │ │ ├── Brunei │ │ │ │ │ ├── Calcutta │ │ │ │ │ ├── Chita │ │ │ │ │ ├── Choibalsan │ │ │ │ │ ├── Chongqing │ │ │ │ │ ├── Chungking │ │ │ │ │ ├── Colombo │ │ │ │ │ ├── Dacca │ │ │ │ │ ├── Damascus │ │ │ │ │ ├── Dhaka │ │ │ │ │ ├── Dili │ │ │ │ │ ├── Dubai │ │ │ │ │ ├── Dushanbe │ │ │ │ │ ├── Famagusta │ │ │ │ │ ├── Gaza │ │ │ │ │ ├── Harbin │ │ │ │ │ ├── Hebron │ │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ │ ├── Hong_Kong │ │ │ │ │ ├── Hovd │ │ │ │ │ ├── Irkutsk │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jakarta │ │ │ │ │ ├── Jayapura │ │ │ │ │ ├── Jerusalem │ │ │ │ │ ├── Kabul │ │ │ │ │ ├── Kamchatka │ │ │ │ │ ├── Karachi │ │ │ │ │ ├── Kashgar │ │ │ │ │ ├── Kathmandu │ │ │ │ │ ├── Katmandu │ │ │ │ │ ├── Khandyga │ │ │ │ │ ├── Kolkata │ │ │ │ │ ├── Krasnoyarsk │ │ │ │ │ ├── Kuala_Lumpur │ │ │ │ │ ├── Kuching │ │ │ │ │ ├── Kuwait │ │ │ │ │ ├── Macao │ │ │ │ │ ├── Macau │ │ │ │ │ ├── Magadan │ │ │ │ │ ├── Makassar │ │ │ │ │ ├── Manila │ │ │ │ │ ├── Muscat │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Novokuznetsk │ │ │ │ │ ├── Novosibirsk │ │ │ │ │ ├── Omsk │ │ │ │ │ ├── Oral │ │ │ │ │ ├── Phnom_Penh │ │ │ │ │ ├── Pontianak │ │ │ │ │ ├── Pyongyang │ │ │ │ │ ├── Qatar │ │ │ │ │ ├── Qostanay │ │ │ │ │ ├── Qyzylorda │ │ │ │ │ ├── Rangoon │ │ │ │ │ ├── Riyadh │ │ │ │ │ ├── Saigon │ │ │ │ │ ├── Sakhalin │ │ │ │ │ ├── Samarkand │ │ │ │ │ ├── Seoul │ │ │ │ │ ├── Shanghai │ │ │ │ │ ├── Singapore │ │ │ │ │ ├── Srednekolymsk │ │ │ │ │ ├── Taipei │ │ │ │ │ ├── Tashkent │ │ │ │ │ ├── Tbilisi │ │ │ │ │ ├── Tehran │ │ │ │ │ ├── Tel_Aviv │ │ │ │ │ ├── Thimbu │ │ │ │ │ ├── Thimphu │ │ │ │ │ ├── Tokyo │ │ │ │ │ ├── Tomsk │ │ │ │ │ ├── Ujung_Pandang │ │ │ │ │ ├── Ulaanbaatar │ │ │ │ │ ├── Ulan_Bator │ │ │ │ │ ├── Urumqi │ │ │ │ │ ├── Ust-Nera │ │ │ │ │ ├── Vientiane │ │ │ │ │ ├── Vladivostok │ │ │ │ │ ├── Yakutsk │ │ │ │ │ ├── Yangon │ │ │ │ │ ├── Yekaterinburg │ │ │ │ │ └── Yerevan │ │ │ │ │ ├── Atlantic │ │ │ │ │ ├── Azores │ │ │ │ │ ├── Bermuda │ │ │ │ │ ├── Canary │ │ │ │ │ ├── Cape_Verde │ │ │ │ │ ├── Faeroe │ │ │ │ │ ├── Faroe │ │ │ │ │ ├── Jan_Mayen │ │ │ │ │ ├── Madeira │ │ │ │ │ ├── Reykjavik │ │ │ │ │ ├── South_Georgia │ │ │ │ │ ├── St_Helena │ │ │ │ │ └── Stanley │ │ │ │ │ ├── Australia │ │ │ │ │ ├── ACT │ │ │ │ │ ├── Adelaide │ │ │ │ │ ├── Brisbane │ │ │ │ │ ├── Broken_Hill │ │ │ │ │ ├── Canberra │ │ │ │ │ ├── Currie │ │ │ │ │ ├── Darwin │ │ │ │ │ ├── Eucla │ │ │ │ │ ├── Hobart │ │ │ │ │ ├── LHI │ │ │ │ │ ├── Lindeman │ │ │ │ │ ├── Lord_Howe │ │ │ │ │ ├── Melbourne │ │ │ │ │ ├── NSW │ │ │ │ │ ├── North │ │ │ │ │ ├── Perth │ │ │ │ │ ├── Queensland │ │ │ │ │ ├── South │ │ │ │ │ ├── Sydney │ │ │ │ │ ├── Tasmania │ │ │ │ │ ├── Victoria │ │ │ │ │ ├── West │ │ │ │ │ └── Yancowinna │ │ │ │ │ ├── Brazil │ │ │ │ │ ├── Acre │ │ │ │ │ ├── DeNoronha │ │ │ │ │ ├── East │ │ │ │ │ └── West │ │ │ │ │ ├── CET │ │ │ │ │ ├── CST6CDT │ │ │ │ │ ├── Canada │ │ │ │ │ ├── Atlantic │ │ │ │ │ ├── Central │ │ │ │ │ ├── Eastern │ │ │ │ │ ├── Mountain │ │ │ │ │ ├── Newfoundland │ │ │ │ │ ├── Pacific │ │ │ │ │ ├── Saskatchewan │ │ │ │ │ └── Yukon │ │ │ │ │ ├── Chile │ │ │ │ │ ├── Continental │ │ │ │ │ └── EasterIsland │ │ │ │ │ ├── Cuba │ │ │ │ │ ├── EET │ │ │ │ │ ├── EST │ │ │ │ │ ├── EST5EDT │ │ │ │ │ ├── Egypt │ │ │ │ │ ├── Eire │ │ │ │ │ ├── Etc │ │ │ │ │ ├── GMT │ │ │ │ │ ├── GMT+0 │ │ │ │ │ ├── GMT+1 │ │ │ │ │ ├── GMT+10 │ │ │ │ │ ├── GMT+11 │ │ │ │ │ ├── GMT+12 │ │ │ │ │ ├── GMT+2 │ │ │ │ │ ├── GMT+3 │ │ │ │ │ ├── GMT+4 │ │ │ │ │ ├── GMT+5 │ │ │ │ │ ├── GMT+6 │ │ │ │ │ ├── GMT+7 │ │ │ │ │ ├── GMT+8 │ │ │ │ │ ├── GMT+9 │ │ │ │ │ ├── GMT-0 │ │ │ │ │ ├── GMT-1 │ │ │ │ │ ├── GMT-10 │ │ │ │ │ ├── GMT-11 │ │ │ │ │ ├── GMT-12 │ │ │ │ │ ├── GMT-13 │ │ │ │ │ ├── GMT-14 │ │ │ │ │ ├── GMT-2 │ │ │ │ │ ├── GMT-3 │ │ │ │ │ ├── GMT-4 │ │ │ │ │ ├── GMT-5 │ │ │ │ │ ├── GMT-6 │ │ │ │ │ ├── GMT-7 │ │ │ │ │ ├── GMT-8 │ │ │ │ │ ├── GMT-9 │ │ │ │ │ ├── GMT0 │ │ │ │ │ ├── Greenwich │ │ │ │ │ ├── UCT │ │ │ │ │ ├── UTC │ │ │ │ │ ├── Universal │ │ │ │ │ └── Zulu │ │ │ │ │ ├── Europe │ │ │ │ │ ├── Amsterdam │ │ │ │ │ ├── Andorra │ │ │ │ │ ├── Astrakhan │ │ │ │ │ ├── Athens │ │ │ │ │ ├── Belfast │ │ │ │ │ ├── Belgrade │ │ │ │ │ ├── Berlin │ │ │ │ │ ├── Bratislava │ │ │ │ │ ├── Brussels │ │ │ │ │ ├── Bucharest │ │ │ │ │ ├── Budapest │ │ │ │ │ ├── Busingen │ │ │ │ │ ├── Chisinau │ │ │ │ │ ├── Copenhagen │ │ │ │ │ ├── Dublin │ │ │ │ │ ├── Gibraltar │ │ │ │ │ ├── Guernsey │ │ │ │ │ ├── Helsinki │ │ │ │ │ ├── Isle_of_Man │ │ │ │ │ ├── Istanbul │ │ │ │ │ ├── Jersey │ │ │ │ │ ├── Kaliningrad │ │ │ │ │ ├── Kiev │ │ │ │ │ ├── Kirov │ │ │ │ │ ├── Lisbon │ │ │ │ │ ├── Ljubljana │ │ │ │ │ ├── London │ │ │ │ │ ├── Luxembourg │ │ │ │ │ ├── Madrid │ │ │ │ │ ├── Malta │ │ │ │ │ ├── Mariehamn │ │ │ │ │ ├── Minsk │ │ │ │ │ ├── Monaco │ │ │ │ │ ├── Moscow │ │ │ │ │ ├── Nicosia │ │ │ │ │ ├── Oslo │ │ │ │ │ ├── Paris │ │ │ │ │ ├── Podgorica │ │ │ │ │ ├── Prague │ │ │ │ │ ├── Riga │ │ │ │ │ ├── Rome │ │ │ │ │ ├── Samara │ │ │ │ │ ├── San_Marino │ │ │ │ │ ├── Sarajevo │ │ │ │ │ ├── Saratov │ │ │ │ │ ├── Simferopol │ │ │ │ │ ├── Skopje │ │ │ │ │ ├── Sofia │ │ │ │ │ ├── Stockholm │ │ │ │ │ ├── Tallinn │ │ │ │ │ ├── Tirane │ │ │ │ │ ├── Tiraspol │ │ │ │ │ ├── Ulyanovsk │ │ │ │ │ ├── Uzhgorod │ │ │ │ │ ├── Vaduz │ │ │ │ │ ├── Vatican │ │ │ │ │ ├── Vienna │ │ │ │ │ ├── Vilnius │ │ │ │ │ ├── Volgograd │ │ │ │ │ ├── Warsaw │ │ │ │ │ ├── Zagreb │ │ │ │ │ ├── Zaporozhye │ │ │ │ │ └── Zurich │ │ │ │ │ ├── Factory │ │ │ │ │ ├── GB │ │ │ │ │ ├── GB-Eire │ │ │ │ │ ├── GMT │ │ │ │ │ ├── GMT+0 │ │ │ │ │ ├── GMT-0 │ │ │ │ │ ├── GMT0 │ │ │ │ │ ├── Greenwich │ │ │ │ │ ├── HST │ │ │ │ │ ├── Hongkong │ │ │ │ │ ├── Iceland │ │ │ │ │ ├── Indian │ │ │ │ │ ├── Antananarivo │ │ │ │ │ ├── Chagos │ │ │ │ │ ├── Christmas │ │ │ │ │ ├── Cocos │ │ │ │ │ ├── Comoro │ │ │ │ │ ├── Kerguelen │ │ │ │ │ ├── Mahe │ │ │ │ │ ├── Maldives │ │ │ │ │ ├── Mauritius │ │ │ │ │ ├── Mayotte │ │ │ │ │ └── Reunion │ │ │ │ │ ├── Iran │ │ │ │ │ ├── Israel │ │ │ │ │ ├── Jamaica │ │ │ │ │ ├── Japan │ │ │ │ │ ├── Kwajalein │ │ │ │ │ ├── Libya │ │ │ │ │ ├── MET │ │ │ │ │ ├── MST │ │ │ │ │ ├── MST7MDT │ │ │ │ │ ├── Mexico │ │ │ │ │ ├── BajaNorte │ │ │ │ │ ├── BajaSur │ │ │ │ │ └── General │ │ │ │ │ ├── NZ │ │ │ │ │ ├── NZ-CHAT │ │ │ │ │ ├── Navajo │ │ │ │ │ ├── PRC │ │ │ │ │ ├── PST8PDT │ │ │ │ │ ├── Pacific │ │ │ │ │ ├── Apia │ │ │ │ │ ├── Auckland │ │ │ │ │ ├── Bougainville │ │ │ │ │ ├── Chatham │ │ │ │ │ ├── Chuuk │ │ │ │ │ ├── Easter │ │ │ │ │ ├── Efate │ │ │ │ │ ├── Enderbury │ │ │ │ │ ├── Fakaofo │ │ │ │ │ ├── Fiji │ │ │ │ │ ├── Funafuti │ │ │ │ │ ├── Galapagos │ │ │ │ │ ├── Gambier │ │ │ │ │ ├── Guadalcanal │ │ │ │ │ ├── Guam │ │ │ │ │ ├── Honolulu │ │ │ │ │ ├── Johnston │ │ │ │ │ ├── Kanton │ │ │ │ │ ├── Kiritimati │ │ │ │ │ ├── Kosrae │ │ │ │ │ ├── Kwajalein │ │ │ │ │ ├── Majuro │ │ │ │ │ ├── Marquesas │ │ │ │ │ ├── Midway │ │ │ │ │ ├── Nauru │ │ │ │ │ ├── Niue │ │ │ │ │ ├── Norfolk │ │ │ │ │ ├── Noumea │ │ │ │ │ ├── Pago_Pago │ │ │ │ │ ├── Palau │ │ │ │ │ ├── Pitcairn │ │ │ │ │ ├── Pohnpei │ │ │ │ │ ├── Ponape │ │ │ │ │ ├── Port_Moresby │ │ │ │ │ ├── Rarotonga │ │ │ │ │ ├── Saipan │ │ │ │ │ ├── Samoa │ │ │ │ │ ├── Tahiti │ │ │ │ │ ├── Tarawa │ │ │ │ │ ├── Tongatapu │ │ │ │ │ ├── Truk │ │ │ │ │ ├── Wake │ │ │ │ │ ├── Wallis │ │ │ │ │ └── Yap │ │ │ │ │ ├── Poland │ │ │ │ │ ├── Portugal │ │ │ │ │ ├── ROC │ │ │ │ │ ├── ROK │ │ │ │ │ ├── Singapore │ │ │ │ │ ├── Turkey │ │ │ │ │ ├── UCT │ │ │ │ │ ├── US │ │ │ │ │ ├── Alaska │ │ │ │ │ ├── Aleutian │ │ │ │ │ ├── Arizona │ │ │ │ │ ├── Central │ │ │ │ │ ├── East-Indiana │ │ │ │ │ ├── Eastern │ │ │ │ │ ├── Hawaii │ │ │ │ │ ├── Indiana-Starke │ │ │ │ │ ├── Michigan │ │ │ │ │ ├── Mountain │ │ │ │ │ ├── Pacific │ │ │ │ │ └── Samoa │ │ │ │ │ ├── UTC │ │ │ │ │ ├── Universal │ │ │ │ │ ├── W-SU │ │ │ │ │ ├── WET │ │ │ │ │ ├── Zulu │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── localtime │ │ │ │ │ └── zone1970.tab │ │ │ ├── get_current_time_chrono.inc │ │ │ ├── get_current_time_posix.inc │ │ │ ├── test_util.cc │ │ │ ├── test_util.h │ │ │ └── zoneinfo.inc │ │ ├── time.cc │ │ ├── time.h │ │ ├── time_benchmark.cc │ │ ├── time_test.cc │ │ └── time_zone_test.cc │ ├── types │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── any.h │ │ ├── any_exception_safety_test.cc │ │ ├── any_test.cc │ │ ├── bad_any_cast.cc │ │ ├── bad_any_cast.h │ │ ├── bad_optional_access.cc │ │ ├── bad_optional_access.h │ │ ├── bad_variant_access.cc │ │ ├── bad_variant_access.h │ │ ├── compare.h │ │ ├── compare_test.cc │ │ ├── internal │ │ │ ├── conformance_aliases.h │ │ │ ├── conformance_archetype.h │ │ │ ├── conformance_profile.h │ │ │ ├── conformance_testing.h │ │ │ ├── conformance_testing_helpers.h │ │ │ ├── conformance_testing_test.cc │ │ │ ├── optional.h │ │ │ ├── parentheses.h │ │ │ ├── span.h │ │ │ ├── transform_args.h │ │ │ └── variant.h │ │ ├── optional.h │ │ ├── optional_exception_safety_test.cc │ │ ├── optional_test.cc │ │ ├── span.h │ │ ├── span_test.cc │ │ ├── variant.h │ │ ├── variant_benchmark.cc │ │ ├── variant_exception_safety_test.cc │ │ └── variant_test.cc │ └── utility │ │ ├── BUILD.bazel │ │ ├── CMakeLists.txt │ │ ├── utility.h │ │ └── utility_test.cc ├── google │ └── protobuf │ │ ├── any.cc │ │ ├── any.h │ │ ├── any.pb.cc │ │ ├── any.pb.h │ │ ├── any.proto │ │ ├── any_lite.cc │ │ ├── any_test.cc │ │ ├── any_test.proto │ │ ├── api.pb.cc │ │ ├── api.pb.h │ │ ├── api.proto │ │ ├── arena.cc │ │ ├── arena.h │ │ ├── arena_impl.h │ │ ├── arena_test_util.cc │ │ ├── arena_test_util.h │ │ ├── arena_unittest.cc │ │ ├── arenastring.cc │ │ ├── arenastring.h │ │ ├── arenastring_unittest.cc │ │ ├── arenaz_sampler.cc │ │ ├── arenaz_sampler.h │ │ ├── arenaz_sampler_test.cc │ │ ├── compiler │ │ ├── annotation_test_util.cc │ │ ├── annotation_test_util.h │ │ ├── code_generator.cc │ │ ├── code_generator.h │ │ ├── command_line_interface.cc │ │ ├── command_line_interface.h │ │ ├── command_line_interface_unittest.cc │ │ ├── cpp │ │ │ ├── bootstrap_unittest.cc │ │ │ ├── cpp_generator.h │ │ │ ├── enum.cc │ │ │ ├── enum.h │ │ │ ├── enum_field.cc │ │ │ ├── enum_field.h │ │ │ ├── extension.cc │ │ │ ├── extension.h │ │ │ ├── field.cc │ │ │ ├── field.h │ │ │ ├── file.cc │ │ │ ├── file.h │ │ │ ├── generator.cc │ │ │ ├── generator.h │ │ │ ├── helpers.cc │ │ │ ├── helpers.h │ │ │ ├── map_field.cc │ │ │ ├── map_field.h │ │ │ ├── message.cc │ │ │ ├── message.h │ │ │ ├── message_field.cc │ │ │ ├── message_field.h │ │ │ ├── message_layout_helper.h │ │ │ ├── message_size_unittest.cc │ │ │ ├── metadata_test.cc │ │ │ ├── move_unittest.cc │ │ │ ├── names.h │ │ │ ├── options.h │ │ │ ├── padding_optimizer.cc │ │ │ ├── padding_optimizer.h │ │ │ ├── parse_function_generator.cc │ │ │ ├── parse_function_generator.h │ │ │ ├── plugin_unittest.cc │ │ │ ├── primitive_field.cc │ │ │ ├── primitive_field.h │ │ │ ├── service.cc │ │ │ ├── service.h │ │ │ ├── string_field.cc │ │ │ ├── string_field.h │ │ │ ├── test_bad_identifiers.proto │ │ │ ├── test_large_enum_value.proto │ │ │ ├── unittest.cc │ │ │ ├── unittest.h │ │ │ └── unittest.inc │ │ ├── csharp │ │ │ ├── csharp_bootstrap_unittest.cc │ │ │ ├── csharp_doc_comment.cc │ │ │ ├── csharp_doc_comment.h │ │ │ ├── csharp_enum.cc │ │ │ ├── csharp_enum.h │ │ │ ├── csharp_enum_field.cc │ │ │ ├── csharp_enum_field.h │ │ │ ├── csharp_field_base.cc │ │ │ ├── csharp_field_base.h │ │ │ ├── csharp_generator.cc │ │ │ ├── csharp_generator.h │ │ │ ├── csharp_generator_unittest.cc │ │ │ ├── csharp_helpers.cc │ │ │ ├── csharp_helpers.h │ │ │ ├── csharp_map_field.cc │ │ │ ├── csharp_map_field.h │ │ │ ├── csharp_message.cc │ │ │ ├── csharp_message.h │ │ │ ├── csharp_message_field.cc │ │ │ ├── csharp_message_field.h │ │ │ ├── csharp_names.h │ │ │ ├── csharp_options.h │ │ │ ├── csharp_primitive_field.cc │ │ │ ├── csharp_primitive_field.h │ │ │ ├── csharp_reflection_class.cc │ │ │ ├── csharp_reflection_class.h │ │ │ ├── csharp_repeated_enum_field.cc │ │ │ ├── csharp_repeated_enum_field.h │ │ │ ├── csharp_repeated_message_field.cc │ │ │ ├── csharp_repeated_message_field.h │ │ │ ├── csharp_repeated_primitive_field.cc │ │ │ ├── csharp_repeated_primitive_field.h │ │ │ ├── csharp_source_generator_base.cc │ │ │ ├── csharp_source_generator_base.h │ │ │ ├── csharp_wrapper_field.cc │ │ │ └── csharp_wrapper_field.h │ │ ├── importer.cc │ │ ├── importer.h │ │ ├── importer_unittest.cc │ │ ├── java │ │ │ ├── context.cc │ │ │ ├── context.h │ │ │ ├── doc_comment.cc │ │ │ ├── doc_comment.h │ │ │ ├── doc_comment_unittest.cc │ │ │ ├── enum.cc │ │ │ ├── enum.h │ │ │ ├── enum_field.cc │ │ │ ├── enum_field.h │ │ │ ├── enum_field_lite.cc │ │ │ ├── enum_field_lite.h │ │ │ ├── enum_lite.cc │ │ │ ├── enum_lite.h │ │ │ ├── extension.cc │ │ │ ├── extension.h │ │ │ ├── extension_lite.cc │ │ │ ├── extension_lite.h │ │ │ ├── field.cc │ │ │ ├── field.h │ │ │ ├── file.cc │ │ │ ├── file.h │ │ │ ├── generator.cc │ │ │ ├── generator.h │ │ │ ├── generator_factory.cc │ │ │ ├── generator_factory.h │ │ │ ├── helpers.cc │ │ │ ├── helpers.h │ │ │ ├── java_generator.h │ │ │ ├── kotlin_generator.cc │ │ │ ├── kotlin_generator.h │ │ │ ├── map_field.cc │ │ │ ├── map_field.h │ │ │ ├── map_field_lite.cc │ │ │ ├── map_field_lite.h │ │ │ ├── message.cc │ │ │ ├── message.h │ │ │ ├── message_builder.cc │ │ │ ├── message_builder.h │ │ │ ├── message_builder_lite.cc │ │ │ ├── message_builder_lite.h │ │ │ ├── message_field.cc │ │ │ ├── message_field.h │ │ │ ├── message_field_lite.cc │ │ │ ├── message_field_lite.h │ │ │ ├── message_lite.cc │ │ │ ├── message_lite.h │ │ │ ├── name_resolver.cc │ │ │ ├── name_resolver.h │ │ │ ├── names.h │ │ │ ├── options.h │ │ │ ├── plugin_unittest.cc │ │ │ ├── primitive_field.cc │ │ │ ├── primitive_field.h │ │ │ ├── primitive_field_lite.cc │ │ │ ├── primitive_field_lite.h │ │ │ ├── service.cc │ │ │ ├── service.h │ │ │ ├── shared_code_generator.cc │ │ │ ├── shared_code_generator.h │ │ │ ├── string_field.cc │ │ │ ├── string_field.h │ │ │ ├── string_field_lite.cc │ │ │ └── string_field_lite.h │ │ ├── main.cc │ │ ├── mock_code_generator.cc │ │ ├── mock_code_generator.h │ │ ├── objectivec │ │ │ ├── method_dump.sh │ │ │ ├── objectivec_enum.cc │ │ │ ├── objectivec_enum.h │ │ │ ├── objectivec_enum_field.cc │ │ │ ├── objectivec_enum_field.h │ │ │ ├── objectivec_extension.cc │ │ │ ├── objectivec_extension.h │ │ │ ├── objectivec_field.cc │ │ │ ├── objectivec_field.h │ │ │ ├── objectivec_file.cc │ │ │ ├── objectivec_file.h │ │ │ ├── objectivec_generator.cc │ │ │ ├── objectivec_generator.h │ │ │ ├── objectivec_helpers.cc │ │ │ ├── objectivec_helpers.h │ │ │ ├── objectivec_helpers_unittest.cc │ │ │ ├── objectivec_map_field.cc │ │ │ ├── objectivec_map_field.h │ │ │ ├── objectivec_message.cc │ │ │ ├── objectivec_message.h │ │ │ ├── objectivec_message_field.cc │ │ │ ├── objectivec_message_field.h │ │ │ ├── objectivec_nsobject_methods.h │ │ │ ├── objectivec_oneof.cc │ │ │ ├── objectivec_oneof.h │ │ │ ├── objectivec_primitive_field.cc │ │ │ └── objectivec_primitive_field.h │ │ ├── package_info.h │ │ ├── parser.cc │ │ ├── parser.h │ │ ├── parser_unittest.cc │ │ ├── php │ │ │ ├── php_generator.cc │ │ │ └── php_generator.h │ │ ├── plugin.cc │ │ ├── plugin.h │ │ ├── plugin.pb.cc │ │ ├── plugin.pb.h │ │ ├── plugin.proto │ │ ├── python │ │ │ ├── generator.cc │ │ │ ├── generator.h │ │ │ ├── helpers.cc │ │ │ ├── helpers.h │ │ │ ├── plugin_unittest.cc │ │ │ ├── pyi_generator.cc │ │ │ ├── pyi_generator.h │ │ │ └── python_generator.h │ │ ├── ruby │ │ │ ├── ruby_generated_code.proto │ │ │ ├── ruby_generated_code_pb.rb │ │ │ ├── ruby_generated_code_proto2.proto │ │ │ ├── ruby_generated_code_proto2_import.proto │ │ │ ├── ruby_generated_code_proto2_pb.rb │ │ │ ├── ruby_generated_pkg_explicit.proto │ │ │ ├── ruby_generated_pkg_explicit_legacy.proto │ │ │ ├── ruby_generated_pkg_explicit_legacy_pb.rb │ │ │ ├── ruby_generated_pkg_explicit_pb.rb │ │ │ ├── ruby_generated_pkg_implicit.proto │ │ │ ├── ruby_generated_pkg_implicit_pb.rb │ │ │ ├── ruby_generator.cc │ │ │ ├── ruby_generator.h │ │ │ └── ruby_generator_unittest.cc │ │ ├── scc.h │ │ ├── subprocess.cc │ │ ├── subprocess.h │ │ ├── test_plugin.cc │ │ ├── zip_output_unittest.sh │ │ ├── zip_writer.cc │ │ └── zip_writer.h │ │ ├── descriptor.cc │ │ ├── descriptor.h │ │ ├── descriptor.pb.cc │ │ ├── descriptor.pb.h │ │ ├── descriptor.proto │ │ ├── descriptor_database.cc │ │ ├── descriptor_database.h │ │ ├── descriptor_database_unittest.cc │ │ ├── descriptor_unittest.cc │ │ ├── drop_unknown_fields_test.cc │ │ ├── duration.pb.cc │ │ ├── duration.pb.h │ │ ├── duration.proto │ │ ├── dynamic_message.cc │ │ ├── dynamic_message.h │ │ ├── dynamic_message_unittest.cc │ │ ├── empty.pb.cc │ │ ├── empty.pb.h │ │ ├── empty.proto │ │ ├── endian.h │ │ ├── explicitly_constructed.h │ │ ├── extension_set.cc │ │ ├── extension_set.h │ │ ├── extension_set_heavy.cc │ │ ├── extension_set_inl.h │ │ ├── extension_set_unittest.cc │ │ ├── field_access_listener.h │ │ ├── field_mask.pb.cc │ │ ├── field_mask.pb.h │ │ ├── field_mask.proto │ │ ├── generated_enum_reflection.h │ │ ├── generated_enum_util.cc │ │ ├── generated_enum_util.h │ │ ├── generated_message_bases.cc │ │ ├── generated_message_bases.h │ │ ├── generated_message_reflection.cc │ │ ├── generated_message_reflection.h │ │ ├── generated_message_reflection_unittest.cc │ │ ├── generated_message_tctable_decl.h │ │ ├── generated_message_tctable_full.cc │ │ ├── generated_message_tctable_impl.h │ │ ├── generated_message_tctable_lite.cc │ │ ├── generated_message_tctable_lite_test.cc │ │ ├── generated_message_util.cc │ │ ├── generated_message_util.h │ │ ├── has_bits.h │ │ ├── implicit_weak_message.cc │ │ ├── implicit_weak_message.h │ │ ├── inlined_string_field.cc │ │ ├── inlined_string_field.h │ │ ├── inlined_string_field_unittest.cc │ │ ├── io │ │ ├── coded_stream.cc │ │ ├── coded_stream.h │ │ ├── coded_stream_unittest.cc │ │ ├── gzip_stream.cc │ │ ├── gzip_stream.h │ │ ├── gzip_stream_unittest.sh │ │ ├── io_win32.cc │ │ ├── io_win32.h │ │ ├── io_win32_unittest.cc │ │ ├── package_info.h │ │ ├── printer.cc │ │ ├── printer.h │ │ ├── printer_unittest.cc │ │ ├── strtod.cc │ │ ├── strtod.h │ │ ├── tokenizer.cc │ │ ├── tokenizer.h │ │ ├── tokenizer_unittest.cc │ │ ├── zero_copy_stream.cc │ │ ├── zero_copy_stream.h │ │ ├── zero_copy_stream_impl.cc │ │ ├── zero_copy_stream_impl.h │ │ ├── zero_copy_stream_impl_lite.cc │ │ ├── zero_copy_stream_impl_lite.h │ │ └── zero_copy_stream_unittest.cc │ │ ├── lite_arena_unittest.cc │ │ ├── lite_unittest.cc │ │ ├── map.cc │ │ ├── map.h │ │ ├── map_entry.h │ │ ├── map_entry_lite.h │ │ ├── map_field.cc │ │ ├── map_field.h │ │ ├── map_field_inl.h │ │ ├── map_field_lite.h │ │ ├── map_field_test.cc │ │ ├── map_lite_test_util.cc │ │ ├── map_lite_test_util.h │ │ ├── map_lite_unittest.proto │ │ ├── map_proto2_unittest.proto │ │ ├── map_test.cc │ │ ├── map_test.inc │ │ ├── map_test_util.h │ │ ├── map_test_util.inc │ │ ├── map_test_util_impl.h │ │ ├── map_type_handler.h │ │ ├── map_unittest.proto │ │ ├── message.cc │ │ ├── message.h │ │ ├── message_lite.cc │ │ ├── message_lite.h │ │ ├── message_unittest.cc │ │ ├── message_unittest.inc │ │ ├── metadata.h │ │ ├── metadata_lite.h │ │ ├── no_field_presence_test.cc │ │ ├── package_info.h │ │ ├── parse_context.cc │ │ ├── parse_context.h │ │ ├── port.h │ │ ├── port_def.inc │ │ ├── port_undef.inc │ │ ├── preserve_unknown_enum_test.cc │ │ ├── proto3_arena_lite_unittest.cc │ │ ├── proto3_arena_unittest.cc │ │ ├── proto3_lite_unittest.cc │ │ ├── proto3_lite_unittest.inc │ │ ├── reflection.h │ │ ├── reflection_internal.h │ │ ├── reflection_ops.cc │ │ ├── reflection_ops.h │ │ ├── reflection_ops_unittest.cc │ │ ├── reflection_tester.cc │ │ ├── reflection_tester.h │ │ ├── repeated_field.cc │ │ ├── repeated_field.h │ │ ├── repeated_field_reflection_unittest.cc │ │ ├── repeated_field_unittest.cc │ │ ├── repeated_ptr_field.cc │ │ ├── repeated_ptr_field.h │ │ ├── service.cc │ │ ├── service.h │ │ ├── source_context.pb.cc │ │ ├── source_context.pb.h │ │ ├── source_context.proto │ │ ├── string_member_robber.h │ │ ├── struct.pb.cc │ │ ├── struct.pb.h │ │ ├── struct.proto │ │ ├── stubs │ │ ├── bytestream.cc │ │ ├── bytestream.h │ │ ├── bytestream_unittest.cc │ │ ├── callback.h │ │ ├── casts.h │ │ ├── common.cc │ │ ├── common.h │ │ ├── common_unittest.cc │ │ ├── hash.h │ │ ├── int128.cc │ │ ├── int128.h │ │ ├── int128_unittest.cc │ │ ├── logging.h │ │ ├── macros.h │ │ ├── map_util.h │ │ ├── mathutil.h │ │ ├── mutex.h │ │ ├── once.h │ │ ├── platform_macros.h │ │ ├── port.h │ │ ├── status.cc │ │ ├── status.h │ │ ├── status_macros.h │ │ ├── status_test.cc │ │ ├── statusor.cc │ │ ├── statusor.h │ │ ├── statusor_test.cc │ │ ├── stl_util.h │ │ ├── stringpiece.cc │ │ ├── stringpiece.h │ │ ├── stringpiece_unittest.cc │ │ ├── stringprintf.cc │ │ ├── stringprintf.h │ │ ├── stringprintf_unittest.cc │ │ ├── structurally_valid.cc │ │ ├── structurally_valid_unittest.cc │ │ ├── strutil.cc │ │ ├── strutil.h │ │ ├── strutil_unittest.cc │ │ ├── substitute.cc │ │ ├── substitute.h │ │ ├── template_util.h │ │ ├── template_util_unittest.cc │ │ ├── time.cc │ │ ├── time.h │ │ └── time_test.cc │ │ ├── test_messages_proto2.proto │ │ ├── test_messages_proto3.proto │ │ ├── test_util.cc │ │ ├── test_util.h │ │ ├── test_util.inc │ │ ├── test_util2.h │ │ ├── test_util_lite.cc │ │ ├── test_util_lite.h │ │ ├── testdata │ │ ├── bad_utf8_string │ │ ├── golden_message │ │ ├── golden_message_maps │ │ ├── golden_message_oneof_implemented │ │ ├── golden_message_proto3 │ │ ├── golden_packed_fields_message │ │ ├── map_test_data.txt │ │ ├── text_format_unittest_data.txt │ │ ├── text_format_unittest_data_oneof_implemented.txt │ │ ├── text_format_unittest_data_pointy.txt │ │ ├── text_format_unittest_data_pointy_oneof.txt │ │ ├── text_format_unittest_extensions_data.txt │ │ └── text_format_unittest_extensions_data_pointy.txt │ │ ├── testing │ │ ├── file.cc │ │ ├── file.h │ │ ├── googletest.cc │ │ ├── googletest.h │ │ ├── zcgunzip.cc │ │ └── zcgzip.cc │ │ ├── text_format.cc │ │ ├── text_format.h │ │ ├── text_format_unittest.cc │ │ ├── timestamp.pb.cc │ │ ├── timestamp.pb.h │ │ ├── timestamp.proto │ │ ├── type.pb.cc │ │ ├── type.pb.h │ │ ├── type.proto │ │ ├── unittest.proto │ │ ├── unittest_arena.proto │ │ ├── unittest_custom_options.proto │ │ ├── unittest_drop_unknown_fields.proto │ │ ├── unittest_embed_optimize_for.proto │ │ ├── unittest_empty.proto │ │ ├── unittest_enormous_descriptor.proto │ │ ├── unittest_import.proto │ │ ├── unittest_import_lite.proto │ │ ├── unittest_import_public.proto │ │ ├── unittest_import_public_lite.proto │ │ ├── unittest_lazy_dependencies.proto │ │ ├── unittest_lazy_dependencies_custom_option.proto │ │ ├── unittest_lazy_dependencies_enum.proto │ │ ├── unittest_lite.proto │ │ ├── unittest_lite_imports_nonlite.proto │ │ ├── unittest_mset.proto │ │ ├── unittest_mset_wire_format.proto │ │ ├── unittest_no_field_presence.proto │ │ ├── unittest_no_generic_services.proto │ │ ├── unittest_optimize_for.proto │ │ ├── unittest_preserve_unknown_enum.proto │ │ ├── unittest_preserve_unknown_enum2.proto │ │ ├── unittest_proto3.proto │ │ ├── unittest_proto3_arena.proto │ │ ├── unittest_proto3_arena_lite.proto │ │ ├── unittest_proto3_lite.proto │ │ ├── unittest_proto3_optional.proto │ │ ├── unittest_well_known_types.proto │ │ ├── unknown_field_set.cc │ │ ├── unknown_field_set.h │ │ ├── unknown_field_set_unittest.cc │ │ ├── util │ │ ├── delimited_message_util.cc │ │ ├── delimited_message_util.h │ │ ├── delimited_message_util_test.cc │ │ ├── field_comparator.cc │ │ ├── field_comparator.h │ │ ├── field_comparator_test.cc │ │ ├── field_mask_util.cc │ │ ├── field_mask_util.h │ │ ├── field_mask_util_test.cc │ │ ├── internal │ │ │ ├── constants.h │ │ │ ├── datapiece.cc │ │ │ ├── datapiece.h │ │ │ ├── default_value_objectwriter.cc │ │ │ ├── default_value_objectwriter.h │ │ │ ├── default_value_objectwriter_test.cc │ │ │ ├── error_listener.cc │ │ │ ├── error_listener.h │ │ │ ├── expecting_objectwriter.h │ │ │ ├── field_mask_utility.cc │ │ │ ├── field_mask_utility.h │ │ │ ├── json_escaping.cc │ │ │ ├── json_escaping.h │ │ │ ├── json_objectwriter.cc │ │ │ ├── json_objectwriter.h │ │ │ ├── json_objectwriter_test.cc │ │ │ ├── json_stream_parser.cc │ │ │ ├── json_stream_parser.h │ │ │ ├── json_stream_parser_test.cc │ │ │ ├── location_tracker.h │ │ │ ├── mock_error_listener.h │ │ │ ├── object_location_tracker.h │ │ │ ├── object_source.h │ │ │ ├── object_writer.cc │ │ │ ├── object_writer.h │ │ │ ├── proto_writer.cc │ │ │ ├── proto_writer.h │ │ │ ├── protostream_objectsource.cc │ │ │ ├── protostream_objectsource.h │ │ │ ├── protostream_objectsource_test.cc │ │ │ ├── protostream_objectwriter.cc │ │ │ ├── protostream_objectwriter.h │ │ │ ├── protostream_objectwriter_test.cc │ │ │ ├── structured_objectwriter.h │ │ │ ├── testdata │ │ │ │ ├── anys.proto │ │ │ │ ├── books.proto │ │ │ │ ├── default_value.proto │ │ │ │ ├── default_value_test.proto │ │ │ │ ├── field_mask.proto │ │ │ │ ├── maps.proto │ │ │ │ ├── oneofs.proto │ │ │ │ ├── proto3.proto │ │ │ │ ├── struct.proto │ │ │ │ ├── timestamp_duration.proto │ │ │ │ └── wrappers.proto │ │ │ ├── type_info.cc │ │ │ ├── type_info.h │ │ │ ├── type_info_test_helper.cc │ │ │ ├── type_info_test_helper.h │ │ │ ├── utility.cc │ │ │ └── utility.h │ │ ├── json_format.proto │ │ ├── json_format_proto3.proto │ │ ├── json_util.cc │ │ ├── json_util.h │ │ ├── json_util_test.cc │ │ ├── message_differencer.cc │ │ ├── message_differencer.h │ │ ├── message_differencer_unittest.cc │ │ ├── message_differencer_unittest.proto │ │ ├── package_info.h │ │ ├── time_util.cc │ │ ├── time_util.h │ │ ├── time_util_test.cc │ │ ├── type_resolver.h │ │ ├── type_resolver_util.cc │ │ ├── type_resolver_util.h │ │ └── type_resolver_util_test.cc │ │ ├── well_known_types_unittest.cc │ │ ├── wire_format.cc │ │ ├── wire_format.h │ │ ├── wire_format_lite.cc │ │ ├── wire_format_lite.h │ │ ├── wire_format_unittest.cc │ │ ├── wire_format_unittest.inc │ │ ├── wrappers.pb.cc │ │ ├── wrappers.pb.h │ │ └── wrappers.proto ├── grpc++ │ ├── README.md │ ├── alarm.h │ ├── channel.h │ ├── client_context.h │ ├── completion_queue.h │ ├── create_channel.h │ ├── create_channel_posix.h │ ├── ext │ │ ├── health_check_service_server_builder_option.h │ │ └── proto_server_reflection_plugin.h │ ├── generic │ │ ├── async_generic_service.h │ │ └── generic_stub.h │ ├── grpc++.h │ ├── health_check_service_interface.h │ ├── impl │ │ ├── call.h │ │ ├── channel_argument_option.h │ │ ├── client_unary_call.h │ │ ├── codegen │ │ │ ├── async_stream.h │ │ │ ├── async_unary_call.h │ │ │ ├── byte_buffer.h │ │ │ ├── call.h │ │ │ ├── call_hook.h │ │ │ ├── channel_interface.h │ │ │ ├── client_context.h │ │ │ ├── client_unary_call.h │ │ │ ├── completion_queue.h │ │ │ ├── completion_queue_tag.h │ │ │ ├── config.h │ │ │ ├── config_protobuf.h │ │ │ ├── core_codegen.h │ │ │ ├── core_codegen_interface.h │ │ │ ├── create_auth_context.h │ │ │ ├── grpc_library.h │ │ │ ├── metadata_map.h │ │ │ ├── method_handler_impl.h │ │ │ ├── proto_utils.h │ │ │ ├── rpc_method.h │ │ │ ├── rpc_service_method.h │ │ │ ├── security │ │ │ │ └── auth_context.h │ │ │ ├── serialization_traits.h │ │ │ ├── server_context.h │ │ │ ├── server_interface.h │ │ │ ├── service_type.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── status_code_enum.h │ │ │ ├── string_ref.h │ │ │ ├── stub_options.h │ │ │ ├── sync_stream.h │ │ │ └── time.h │ │ ├── grpc_library.h │ │ ├── method_handler_impl.h │ │ ├── rpc_method.h │ │ ├── rpc_service_method.h │ │ ├── serialization_traits.h │ │ ├── server_builder_option.h │ │ ├── server_builder_plugin.h │ │ ├── server_initializer.h │ │ └── service_type.h │ ├── resource_quota.h │ ├── security │ │ ├── auth_context.h │ │ ├── auth_metadata_processor.h │ │ ├── credentials.h │ │ └── server_credentials.h │ ├── server.h │ ├── server_builder.h │ ├── server_context.h │ ├── server_posix.h │ ├── support │ │ ├── async_stream.h │ │ ├── async_unary_call.h │ │ ├── byte_buffer.h │ │ ├── channel_arguments.h │ │ ├── config.h │ │ ├── error_details.h │ │ ├── slice.h │ │ ├── status.h │ │ ├── status_code_enum.h │ │ ├── string_ref.h │ │ ├── stub_options.h │ │ ├── sync_stream.h │ │ └── time.h │ └── test │ │ ├── mock_stream.h │ │ └── server_context_test_spouse.h ├── grpc │ ├── byte_buffer.h │ ├── byte_buffer_reader.h │ ├── census.h │ ├── compression.h │ ├── event_engine │ │ ├── README.md │ │ ├── endpoint_config.h │ │ ├── event_engine.h │ │ ├── internal │ │ │ └── memory_allocator_impl.h │ │ ├── memory_allocator.h │ │ ├── memory_request.h │ │ ├── port.h │ │ ├── slice.h │ │ └── slice_buffer.h │ ├── fork.h │ ├── grpc.h │ ├── grpc_cronet.h │ ├── grpc_posix.h │ ├── grpc_security.h │ ├── grpc_security_constants.h │ ├── impl │ │ └── codegen │ │ │ ├── README.md │ │ │ ├── atm.h │ │ │ ├── atm_gcc_atomic.h │ │ │ ├── atm_gcc_sync.h │ │ │ ├── atm_windows.h │ │ │ ├── byte_buffer.h │ │ │ ├── byte_buffer_reader.h │ │ │ ├── compression_types.h │ │ │ ├── connectivity_state.h │ │ │ ├── fork.h │ │ │ ├── gpr_slice.h │ │ │ ├── gpr_types.h │ │ │ ├── grpc_types.h │ │ │ ├── log.h │ │ │ ├── port_platform.h │ │ │ ├── propagation_bits.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── sync.h │ │ │ ├── sync_abseil.h │ │ │ ├── sync_custom.h │ │ │ ├── sync_generic.h │ │ │ ├── sync_posix.h │ │ │ └── sync_windows.h │ ├── load_reporting.h │ ├── module.modulemap │ ├── slice.h │ ├── slice_buffer.h │ ├── status.h │ └── support │ │ ├── alloc.h │ │ ├── atm.h │ │ ├── atm_gcc_atomic.h │ │ ├── atm_gcc_sync.h │ │ ├── atm_windows.h │ │ ├── cpu.h │ │ ├── log.h │ │ ├── log_windows.h │ │ ├── port_platform.h │ │ ├── string_util.h │ │ ├── sync.h │ │ ├── sync_abseil.h │ │ ├── sync_custom.h │ │ ├── sync_generic.h │ │ ├── sync_posix.h │ │ ├── sync_windows.h │ │ ├── thd_id.h │ │ ├── time.h │ │ └── workaround_list.h ├── grpcpp │ ├── alarm.h │ ├── channel.h │ ├── client_context.h │ ├── completion_queue.h │ ├── create_channel.h │ ├── create_channel_binder.h │ ├── create_channel_posix.h │ ├── ext │ │ ├── admin_services.h │ │ ├── call_metric_recorder.h │ │ ├── channelz_service_plugin.h │ │ ├── health_check_service_server_builder_option.h │ │ ├── orca_service.h │ │ ├── proto_server_reflection_plugin.h │ │ └── server_load_reporting.h │ ├── generic │ │ ├── async_generic_service.h │ │ └── generic_stub.h │ ├── grpcpp.h │ ├── health_check_service_interface.h │ ├── impl │ │ ├── README.md │ │ ├── call.h │ │ ├── call_hook.h │ │ ├── call_op_set_interface.h │ │ ├── channel_argument_option.h │ │ ├── client_unary_call.h │ │ ├── codegen │ │ │ ├── README.md │ │ │ ├── async_generic_service.h │ │ │ ├── async_stream.h │ │ │ ├── async_unary_call.h │ │ │ ├── byte_buffer.h │ │ │ ├── call.h │ │ │ ├── call_hook.h │ │ │ ├── call_op_set.h │ │ │ ├── call_op_set_interface.h │ │ │ ├── callback_common.h │ │ │ ├── channel_interface.h │ │ │ ├── client_callback.h │ │ │ ├── client_context.h │ │ │ ├── client_interceptor.h │ │ │ ├── client_unary_call.h │ │ │ ├── completion_queue.h │ │ │ ├── completion_queue_tag.h │ │ │ ├── config.h │ │ │ ├── config_protobuf.h │ │ │ ├── core_codegen.h │ │ │ ├── core_codegen_interface.h │ │ │ ├── create_auth_context.h │ │ │ ├── delegating_channel.h │ │ │ ├── grpc_library.h │ │ │ ├── intercepted_channel.h │ │ │ ├── interceptor.h │ │ │ ├── interceptor_common.h │ │ │ ├── message_allocator.h │ │ │ ├── metadata_map.h │ │ │ ├── method_handler.h │ │ │ ├── method_handler_impl.h │ │ │ ├── proto_buffer_reader.h │ │ │ ├── proto_buffer_writer.h │ │ │ ├── proto_utils.h │ │ │ ├── rpc_method.h │ │ │ ├── rpc_service_method.h │ │ │ ├── security │ │ │ │ └── auth_context.h │ │ │ ├── serialization_traits.h │ │ │ ├── server_callback.h │ │ │ ├── server_callback_handlers.h │ │ │ ├── server_context.h │ │ │ ├── server_interceptor.h │ │ │ ├── server_interface.h │ │ │ ├── service_type.h │ │ │ ├── slice.h │ │ │ ├── status.h │ │ │ ├── status_code_enum.h │ │ │ ├── string_ref.h │ │ │ ├── stub_options.h │ │ │ ├── sync.h │ │ │ ├── sync_stream.h │ │ │ └── time.h │ │ ├── grpc_library.h │ │ ├── method_handler_impl.h │ │ ├── rpc_method.h │ │ ├── rpc_service_method.h │ │ ├── serialization_traits.h │ │ ├── server_builder_option.h │ │ ├── server_builder_plugin.h │ │ ├── server_initializer.h │ │ └── service_type.h │ ├── opencensus.h │ ├── resource_quota.h │ ├── security │ │ ├── alts_context.h │ │ ├── alts_util.h │ │ ├── auth_context.h │ │ ├── auth_metadata_processor.h │ │ ├── authorization_policy_provider.h │ │ ├── binder_credentials.h │ │ ├── binder_security_policy.h │ │ ├── credentials.h │ │ ├── cronet_credentials.h │ │ ├── server_credentials.h │ │ ├── tls_certificate_provider.h │ │ ├── tls_certificate_verifier.h │ │ └── tls_credentials_options.h │ ├── server.h │ ├── server_builder.h │ ├── server_context.h │ ├── server_posix.h │ ├── support │ │ ├── async_stream.h │ │ ├── async_unary_call.h │ │ ├── byte_buffer.h │ │ ├── channel_arguments.h │ │ ├── client_callback.h │ │ ├── client_interceptor.h │ │ ├── config.h │ │ ├── error_details.h │ │ ├── interceptor.h │ │ ├── message_allocator.h │ │ ├── method_handler.h │ │ ├── proto_buffer_reader.h │ │ ├── proto_buffer_writer.h │ │ ├── server_callback.h │ │ ├── server_interceptor.h │ │ ├── slice.h │ │ ├── status.h │ │ ├── status_code_enum.h │ │ ├── string_ref.h │ │ ├── stub_options.h │ │ ├── sync_stream.h │ │ ├── time.h │ │ └── validate_service_config.h │ ├── test │ │ ├── channel_test_peer.h │ │ ├── client_context_test_peer.h │ │ ├── default_reactor_test_peer.h │ │ ├── mock_stream.h │ │ └── server_context_test_spouse.h │ └── xds_server_builder.h ├── libprotobuf-lite.map ├── libprotobuf.map ├── libprotoc.map └── solaris │ └── libstdc++.la └── lib └── win64 ├── absl_bad_any_cast_impl.lib ├── absl_bad_optional_access.lib ├── absl_bad_variant_access.lib ├── absl_base.lib ├── absl_city.lib ├── absl_civil_time.lib ├── absl_cord.lib ├── absl_debugging_internal.lib ├── absl_demangle_internal.lib ├── absl_examine_stack.lib ├── absl_exponential_biased.lib ├── absl_failure_signal_handler.lib ├── absl_flags.lib ├── absl_flags_commandlineflag.lib ├── absl_flags_commandlineflag_internal.lib ├── absl_flags_config.lib ├── absl_flags_internal.lib ├── absl_flags_marshalling.lib ├── absl_flags_parse.lib ├── absl_flags_private_handle_accessor.lib ├── absl_flags_program_name.lib ├── absl_flags_reflection.lib ├── absl_flags_usage.lib ├── absl_flags_usage_internal.lib ├── absl_graphcycles_internal.lib ├── absl_hash.lib ├── absl_hashtablez_sampler.lib ├── absl_int128.lib ├── absl_leak_check.lib ├── absl_leak_check_disable.lib ├── absl_log_severity.lib ├── absl_malloc_internal.lib ├── absl_periodic_sampler.lib ├── absl_random_distributions.lib ├── absl_random_internal_distribution_test_util.lib ├── absl_random_internal_platform.lib ├── absl_random_internal_pool_urbg.lib ├── absl_random_internal_randen.lib ├── absl_random_internal_randen_hwaes.lib ├── absl_random_internal_randen_hwaes_impl.lib ├── absl_random_internal_randen_slow.lib ├── absl_random_internal_seed_material.lib ├── absl_random_seed_gen_exception.lib ├── absl_random_seed_sequences.lib ├── absl_raw_hash_set.lib ├── absl_raw_logging_internal.lib ├── absl_scoped_set_env.lib ├── absl_spinlock_wait.lib ├── absl_stacktrace.lib ├── absl_status.lib ├── absl_statusor.lib ├── absl_str_format_internal.lib ├── absl_strerror.lib ├── absl_strings.lib ├── absl_strings_internal.lib ├── absl_symbolize.lib ├── absl_synchronization.lib ├── absl_throw_delegate.lib ├── absl_time.lib ├── absl_time_zone.lib ├── address_sorting.lib ├── cares.lib ├── gpr.lib ├── grpc++.lib ├── grpc++_alts.lib ├── grpc++_error_details.lib ├── grpc++_reflection.lib ├── grpc++_unsecure.lib ├── grpc.lib ├── grpc_csharp_ext.lib ├── grpc_plugin_support.lib ├── grpc_unsecure.lib ├── grpcpp_channelz.lib ├── libprotobuf-lite.lib ├── libprotobuf.lib ├── libprotoc.lib ├── re2.lib ├── sample.lib ├── testing.lib └── upb.lib /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/.gitignore -------------------------------------------------------------------------------- /Build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Build.py -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Config/FilterPlugin.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Config/FilterPlugin.ini -------------------------------------------------------------------------------- /Content/AI/AI_Controller_Convai.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/AI/AI_Controller_Convai.uasset -------------------------------------------------------------------------------- /Content/AI/BT/BTDecorator_HasOrder.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/AI/BT/BTDecorator_HasOrder.uasset -------------------------------------------------------------------------------- /Content/AI/BT/BTService_ProcessAction.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/AI/BT/BTService_ProcessAction.uasset -------------------------------------------------------------------------------- /Content/AI/BT/Convai_BB.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/AI/BT/Convai_BB.uasset -------------------------------------------------------------------------------- /Content/AI/BT/Convai_BT.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/AI/BT/Convai_BT.uasset -------------------------------------------------------------------------------- /Content/Core/ConvaiBaseCharacter.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Core/ConvaiBaseCharacter.uasset -------------------------------------------------------------------------------- /Content/Core/ConvaiBasePlayer.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Core/ConvaiBasePlayer.uasset -------------------------------------------------------------------------------- /Content/Core/ConvaiPlayerWithVoiceActivation.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Core/ConvaiPlayerWithVoiceActivation.uasset -------------------------------------------------------------------------------- /Content/Curves/Jaw.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Curves/Jaw.uasset -------------------------------------------------------------------------------- /Content/Demo/Companion.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Demo/Companion.uasset -------------------------------------------------------------------------------- /Content/Demo/ConvaiDemoGM.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Demo/ConvaiDemoGM.uasset -------------------------------------------------------------------------------- /Content/Demo/Convai_Demo.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Demo/Convai_Demo.umap -------------------------------------------------------------------------------- /Content/Demo/Convai_Demo_BuiltData.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Demo/Convai_Demo_BuiltData.uasset -------------------------------------------------------------------------------- /Content/Demo/Pickup/Pickup.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Demo/Pickup/Pickup.uasset -------------------------------------------------------------------------------- /Content/Demo/Pickup/PickupColor.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Demo/Pickup/PickupColor.uasset -------------------------------------------------------------------------------- /Content/Logo/color__1_.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Logo/color__1_.uasset -------------------------------------------------------------------------------- /Content/MetaHumans/Animations/Convai_MetaHuman_BodyAnim.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/MetaHumans/Animations/Convai_MetaHuman_BodyAnim.uasset -------------------------------------------------------------------------------- /Content/MetaHumans/Animations/Convai_MetaHuman_FaceAnim.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/MetaHumans/Animations/Convai_MetaHuman_FaceAnim.uasset -------------------------------------------------------------------------------- /Content/MetaHumans/Animations/M1_B1D_MetaHuman.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/MetaHumans/Animations/M1_B1D_MetaHuman.uasset -------------------------------------------------------------------------------- /Content/MetaHumans/Animations/MM_Idle.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/MetaHumans/Animations/MM_Idle.uasset -------------------------------------------------------------------------------- /Content/MetaHumans/Animations/MM_Run_Fwd.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/MetaHumans/Animations/MM_Run_Fwd.uasset -------------------------------------------------------------------------------- /Content/MetaHumans/Animations/MM_Walk_Fwd.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/MetaHumans/Animations/MM_Walk_Fwd.uasset -------------------------------------------------------------------------------- /Content/MetaHumans/Animations/MM_Walk_InPlace.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/MetaHumans/Animations/MM_Walk_InPlace.uasset -------------------------------------------------------------------------------- /Content/MetaHumans/Animations/m_sample_anim.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/MetaHumans/Animations/m_sample_anim.uasset -------------------------------------------------------------------------------- /Content/Submixes/AudioInput.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Submixes/AudioInput.uasset -------------------------------------------------------------------------------- /Content/Submixes/MuteMic.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Submixes/MuteMic.uasset -------------------------------------------------------------------------------- /Content/Widgets/ChatItem_WB.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/ChatItem_WB.uasset -------------------------------------------------------------------------------- /Content/Widgets/Chat_WB.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Chat_WB.uasset -------------------------------------------------------------------------------- /Content/Widgets/Fonts/AR/KFGQPC_Uthman_Taha_Naskh_Regular.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Fonts/AR/KFGQPC_Uthman_Taha_Naskh_Regular.uasset -------------------------------------------------------------------------------- /Content/Widgets/Fonts/ConvaiFont.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Fonts/ConvaiFont.uasset -------------------------------------------------------------------------------- /Content/Widgets/Fonts/HI/Mangal_Regular.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Fonts/HI/Mangal_Regular.uasset -------------------------------------------------------------------------------- /Content/Widgets/Images/UI_CBFV1.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Images/UI_CBFV1.uasset -------------------------------------------------------------------------------- /Content/Widgets/Images/UI_CBFV2.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Images/UI_CBFV2.uasset -------------------------------------------------------------------------------- /Content/Widgets/Images/UI_CBFV3.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Images/UI_CBFV3.uasset -------------------------------------------------------------------------------- /Content/Widgets/Images/UI_ChatBotHistory.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Images/UI_ChatBotHistory.uasset -------------------------------------------------------------------------------- /Content/Widgets/Images/UI_ChatBotThumbsDownFill.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Images/UI_ChatBotThumbsDownFill.uasset -------------------------------------------------------------------------------- /Content/Widgets/Images/UI_ChatBotThumbsDownOutline.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Images/UI_ChatBotThumbsDownOutline.uasset -------------------------------------------------------------------------------- /Content/Widgets/Images/UI_ChatBotThumbsDownOutlineFill.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Images/UI_ChatBotThumbsDownOutlineFill.uasset -------------------------------------------------------------------------------- /Content/Widgets/Images/UI_ChatBot_CollapseHistory.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Images/UI_ChatBot_CollapseHistory.uasset -------------------------------------------------------------------------------- /Content/Widgets/Images/UI_ChatBot_ConvaiLogo.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Images/UI_ChatBot_ConvaiLogo.uasset -------------------------------------------------------------------------------- /Content/Widgets/Images/UI_ChatBot_ThumbsUpFill.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Images/UI_ChatBot_ThumbsUpFill.uasset -------------------------------------------------------------------------------- /Content/Widgets/MicSettings_WB.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/MicSettings_WB.uasset -------------------------------------------------------------------------------- /Content/Widgets/Sound/UI_Talk.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Content/Widgets/Sound/UI_Talk.uasset -------------------------------------------------------------------------------- /ConvAI.uplugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/ConvAI.uplugin -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Resources/Icon128.png -------------------------------------------------------------------------------- /Resources/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Resources/desktop.ini -------------------------------------------------------------------------------- /Source/Convai/Convai.Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Convai.Build.cs -------------------------------------------------------------------------------- /Source/Convai/Convai.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Convai.cpp -------------------------------------------------------------------------------- /Source/Convai/Convai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Convai.h -------------------------------------------------------------------------------- /Source/Convai/Convai_AndroidAPL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Convai_AndroidAPL.xml -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiActionUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiActionUtils.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiAndroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiAndroid.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiAudioCaptureComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiAudioCaptureComponent.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiAudioStreamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiAudioStreamer.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiChatBotProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiChatBotProxy.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiChatbotComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiChatbotComponent.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiDefinitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiDefinitions.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiFaceSync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiFaceSync.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiGRPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiGRPC.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiGRPCTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiGRPCTest.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiGetActionProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiGetActionProxy.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiNarrativeDesignProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiNarrativeDesignProxy.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiPlayerComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiPlayerComponent.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiSpeechToTextProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiSpeechToTextProxy.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiSubsystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiSubsystem.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiTextToSpeechProxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiTextToSpeechProxy.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/ConvaiUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/ConvaiUtils.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/Mac/ConvaiApple.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/Mac/ConvaiApple.mm -------------------------------------------------------------------------------- /Source/Convai/Private/Proto/arkit_blend_shapes.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/Proto/arkit_blend_shapes.grpc.pb.cc -------------------------------------------------------------------------------- /Source/Convai/Private/Proto/arkit_blend_shapes.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/Proto/arkit_blend_shapes.grpc.pb.h -------------------------------------------------------------------------------- /Source/Convai/Private/Proto/arkit_blend_shapes.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/Proto/arkit_blend_shapes.pb.cc -------------------------------------------------------------------------------- /Source/Convai/Private/Proto/arkit_blend_shapes.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/Proto/arkit_blend_shapes.pb.h -------------------------------------------------------------------------------- /Source/Convai/Private/Proto/service.grpc.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/Proto/service.grpc.pb.cc -------------------------------------------------------------------------------- /Source/Convai/Private/Proto/service.grpc.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/Proto/service.grpc.pb.h -------------------------------------------------------------------------------- /Source/Convai/Private/Proto/service.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/Proto/service.pb.cc -------------------------------------------------------------------------------- /Source/Convai/Private/Proto/service.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/Proto/service.pb.h -------------------------------------------------------------------------------- /Source/Convai/Private/VoiceCaptureComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/VoiceCaptureComp.cpp -------------------------------------------------------------------------------- /Source/Convai/Private/getentropy_compact.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Private/getentropy_compact.c -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiActionUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiActionUtils.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiAndroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiAndroid.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiAudioCaptureComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiAudioCaptureComponent.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiAudioStreamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiAudioStreamer.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiChatBotProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiChatBotProxy.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiChatbotComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiChatbotComponent.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiDefinitions.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiFaceSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiFaceSync.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiGRPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiGRPC.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiGRPCTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiGRPCTest.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiGetActionProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiGetActionProxy.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiNarrativeDesignProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiNarrativeDesignProxy.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiPlayerComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiPlayerComponent.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiSpeechToTextProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiSpeechToTextProxy.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiSubsystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiSubsystem.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiTextToSpeechProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiTextToSpeechProxy.h -------------------------------------------------------------------------------- /Source/Convai/Public/ConvaiUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/ConvaiUtils.h -------------------------------------------------------------------------------- /Source/Convai/Public/LipSyncInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/LipSyncInterface.h -------------------------------------------------------------------------------- /Source/Convai/Public/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/RingBuffer.h -------------------------------------------------------------------------------- /Source/Convai/Public/VisionInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/VisionInterface.h -------------------------------------------------------------------------------- /Source/Convai/Public/VoiceCaptureComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/Convai/Public/VoiceCaptureComp.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/any.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/any.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/any.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/any.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/any.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/any.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/any.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/any_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/any_lite.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/any_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/any_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/any_test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/any_test.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/api.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/api.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/api.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/api.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/api.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/arena.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/arena.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/arena_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/arena_impl.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/arena_test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/arena_test_util.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/arena_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/arena_test_util.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/arena_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/arena_unittest.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/arenastring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/arenastring.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/arenastring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/arenastring.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/compiler/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/compiler/main.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/compiler/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/compiler/parser.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/compiler/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/compiler/parser.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/compiler/plugin.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/compiler/plugin.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/compiler/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/compiler/plugin.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/compiler/scc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/compiler/scc.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/descriptor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/descriptor.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/descriptor.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/descriptor.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/descriptor.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/descriptor.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/descriptor.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/duration.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/duration.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/duration.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/duration.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/duration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/duration.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/dynamic_message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/dynamic_message.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/dynamic_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/dynamic_message.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/empty.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/empty.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/empty.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/empty.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/empty.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/extension_set.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/extension_set.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/extension_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/extension_set.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/field_mask.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/field_mask.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/field_mask.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/field_mask.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/field_mask.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/field_mask.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/has_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/has_bits.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/coded_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/coded_stream.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/coded_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/coded_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/gzip_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/gzip_stream.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/gzip_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/gzip_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/io_win32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/io_win32.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/io_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/io_win32.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/package_info.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/printer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/printer.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/printer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/strtod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/strtod.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/strtod.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/tokenizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/tokenizer.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/io/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/io/tokenizer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/lite_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/lite_unittest.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_entry.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_entry_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_entry_lite.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_field.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_field.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_field_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_field_inl.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_field_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_field_lite.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_field_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_field_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_test_util.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_test_util.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_test_util.inc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_type_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_type_handler.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/map_unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/map_unittest.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/message.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/message.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/message.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/message_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/message_lite.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/message_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/message_lite.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/metadata.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/metadata_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/metadata_lite.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/package_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/package_info.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/parse_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/parse_context.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/parse_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/parse_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/port.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/port_def.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/port_def.inc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/port_undef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/port_undef.inc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/reflection.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/reflection_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/reflection_ops.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/reflection_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/reflection_ops.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/repeated_field.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/repeated_field.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/repeated_field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/repeated_field.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/service.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/service.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/struct.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/struct.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/struct.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/struct.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/struct.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/bytestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/bytestream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/callback.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/casts.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/common.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/common.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/hash.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/int128.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/int128.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/int128.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/logging.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/macros.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/map_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/map_util.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/mathutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/mathutil.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/mutex.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/once.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/port.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/status.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/status.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/statusor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/statusor.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/statusor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/statusor.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/stl_util.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/strutil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/strutil.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/strutil.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/substitute.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/time.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/time.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/stubs/time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/stubs/time_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/test_util.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/test_util.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/test_util.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/test_util.inc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/test_util2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/test_util2.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/test_util_lite.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/test_util_lite.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/test_util_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/test_util_lite.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/testing/file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/testing/file.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/testing/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/testing/file.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/testing/zcgzip.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/testing/zcgzip.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/text_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/text_format.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/text_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/text_format.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/timestamp.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/timestamp.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/timestamp.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/timestamp.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/type.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/type.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/type.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/type.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/type.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/unittest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/unittest.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/util/json_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/util/json_util.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/util/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/util/json_util.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/util/time_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/util/time_util.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/util/time_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/util/time_util.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/wire_format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/wire_format.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/wire_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/wire_format.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/wire_format_lite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/wire_format_lite.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/wrappers.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/wrappers.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/wrappers.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/wrappers.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/google/protobuf/wrappers.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/google/protobuf/wrappers.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/alarm.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/channel.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/client_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/completion_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/completion_queue.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/create_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/create_channel.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/create_channel_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/create_channel_posix.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/generic/generic_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/generic/generic_stub.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/grpc++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/grpc++.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/call.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/client_unary_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/client_unary_call.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/async_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/async_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/byte_buffer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/call.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/call_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/call_hook.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/config.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/core_codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/core_codegen.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/grpc_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/grpc_library.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/metadata_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/metadata_map.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/proto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/proto_utils.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/rpc_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/rpc_method.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/service_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/service_type.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/status.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/string_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/string_ref.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/stub_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/stub_options.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/sync_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/sync_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/codegen/time.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/grpc_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/grpc_library.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/method_handler_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/method_handler_impl.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/rpc_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/rpc_method.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/rpc_service_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/rpc_service_method.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/serialization_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/serialization_traits.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/server_initializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/server_initializer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/impl/service_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/impl/service_type.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/resource_quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/resource_quota.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/security/auth_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/security/auth_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/security/credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/security/credentials.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/server.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/server_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/server_builder.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/server_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/server_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/server_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/server_posix.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/async_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/async_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/async_unary_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/async_unary_call.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/byte_buffer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/channel_arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/channel_arguments.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/config.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/error_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/error_details.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/status.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/status_code_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/status_code_enum.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/string_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/string_ref.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/stub_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/stub_options.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/sync_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/sync_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/support/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/support/time.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc++/test/mock_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc++/test/mock_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/byte_buffer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/byte_buffer_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/byte_buffer_reader.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/census.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/census.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/compression.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/fork.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/grpc.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/grpc_cronet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/grpc_cronet.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/grpc_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/grpc_posix.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/grpc_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/grpc_security.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/grpc_security_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/grpc_security_constants.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/README.md -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/atm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/atm.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/atm_gcc_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/atm_gcc_atomic.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/atm_gcc_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/atm_gcc_sync.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/atm_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/atm_windows.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/byte_buffer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/fork.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/gpr_slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/gpr_slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/gpr_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/gpr_types.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/grpc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/grpc_types.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/log.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/port_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/port_platform.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/status.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync_abseil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync_abseil.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync_custom.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync_generic.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync_posix.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/impl/codegen/sync_windows.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/load_reporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/load_reporting.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/module.modulemap -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/slice_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/slice_buffer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/status.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/alloc.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/atm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/atm.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/atm_gcc_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/atm_gcc_atomic.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/atm_gcc_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/atm_gcc_sync.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/atm_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/atm_windows.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/cpu.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/log.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/log_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/log_windows.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/port_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/port_platform.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/string_util.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/sync.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/sync_abseil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/sync_abseil.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/sync_custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/sync_custom.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/sync_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/sync_generic.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/sync_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/sync_posix.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/sync_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/sync_windows.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/thd_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/thd_id.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/time.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpc/support/workaround_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpc/support/workaround_list.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/alarm.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/channel.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/client_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/completion_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/completion_queue.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/create_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/create_channel.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/create_channel_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/create_channel_posix.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/ext/server_load_reporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/ext/server_load_reporting.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/generic/generic_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/generic/generic_stub.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/grpcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/grpcpp.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/README.md -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/call.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/client_unary_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/client_unary_call.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/README.md -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/async_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/async_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/byte_buffer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/call.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/call_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/call_hook.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/call_op_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/call_op_set.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/config.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/core_codegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/core_codegen.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/grpc_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/grpc_library.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/interceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/interceptor.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/metadata_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/metadata_map.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/proto_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/proto_utils.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/rpc_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/rpc_method.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/service_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/service_type.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/status.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/string_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/string_ref.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/stub_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/stub_options.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/sync.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/sync_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/sync_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/codegen/time.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/grpc_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/grpc_library.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/method_handler_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/method_handler_impl.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/rpc_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/rpc_method.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/rpc_service_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/rpc_service_method.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/serialization_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/serialization_traits.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/server_initializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/server_initializer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/impl/service_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/impl/service_type.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/opencensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/opencensus.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/resource_quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/resource_quota.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/security/alts_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/security/alts_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/security/alts_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/security/alts_util.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/security/auth_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/security/auth_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/security/credentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/security/credentials.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/server.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/server_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/server_builder.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/server_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/server_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/server_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/server_posix.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/async_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/async_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/async_unary_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/async_unary_call.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/byte_buffer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/channel_arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/channel_arguments.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/client_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/client_callback.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/config.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/error_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/error_details.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/interceptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/interceptor.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/message_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/message_allocator.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/method_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/method_handler.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/server_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/server_callback.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/status.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/status_code_enum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/status_code_enum.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/string_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/string_ref.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/stub_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/stub_options.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/sync_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/sync_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/support/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/support/time.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/test/channel_test_peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/test/channel_test_peer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/test/mock_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/test/mock_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include/grpcpp/xds_server_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include/grpcpp/xds_server_builder.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/Makefile.am -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/README.md -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/abseil.podspec.gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/abseil.podspec.gen.py -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/algorithm/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/algorithm/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/attributes.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/call_once.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/casts.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/config.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/config_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/config_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/const_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/const_init.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/invoke_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/invoke_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/log_severity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/log_severity.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/log_severity.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/macros.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/optimization.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/options.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/policy_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/policy_checks.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/base/port.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/cleanup/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/cleanup/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/cleanup/cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/cleanup/cleanup.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/copts/copts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/copts/copts.py -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/config.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/config_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/config_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/declare.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/flag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/flag.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/flag.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/flag_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/flag_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/marshalling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/marshalling.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/marshalling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/marshalling.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/parse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/parse.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/parse.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/parse_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/parse_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/reflection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/reflection.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/reflection.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/usage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/usage.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/usage.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/usage_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/flags/usage_config.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/hash.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/hash_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/hash_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/hash_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/hash_testing.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/internal/city.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/internal/city.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/hash/internal/hash.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/memory/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/memory/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/memory/memory.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/meta/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/meta/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/meta/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/meta/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/meta/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/meta/type_traits.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/numeric/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/numeric/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/numeric/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/numeric/bits.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/numeric/bits_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/numeric/bits_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/numeric/int128.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/numeric/int128.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/numeric/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/numeric/int128.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/random/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/random/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/random/benchmarks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/random/benchmarks.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/random/bit_gen_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/random/bit_gen_ref.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/random/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/random/random.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/status/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/status/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/status/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/status/status.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/status/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/status/status.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/status/statusor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/status/statusor.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/status/statusor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/status/statusor.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/ascii.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/ascii.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/ascii.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/charconv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/charconv.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/charconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/charconv.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/cord.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/cord.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/cord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/cord.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/cord_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/cord_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/escaping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/escaping.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/escaping.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/match.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/match.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/match.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/numbers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/numbers.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/numbers.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_cat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_cat.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_cat.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_format.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_join.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_split.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/str_split.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/strip.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/strings/substitute.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/civil_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/civil_time.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/civil_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/civil_time.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/clock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/clock.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/clock.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/clock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/clock_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/duration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/duration.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/format.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/format_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/format_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/internal/cctz/testdata/version: -------------------------------------------------------------------------------- 1 | 2022a 2 | -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/time.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/time.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/time/time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/time/time_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/types/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/types/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/types/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/types/CMakeLists.txt -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/types/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/types/any.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/types/any_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/types/any_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/types/bad_any_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/types/bad_any_cast.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/types/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/types/compare.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/types/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/types/optional.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/types/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/types/span.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/types/span_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/types/span_test.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/types/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/types/variant.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/utility/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/utility/BUILD.bazel -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/absl/utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/absl/utility/utility.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/any.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/any.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/any.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/any.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/any.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/any.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/any.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/api.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/api.pb.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/api.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/api.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/api.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/api.proto -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/arena.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/arena.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/arena.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/endian.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/map.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/map.cc -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/map.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/message.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/port.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/service.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/type.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/google/protobuf/type.pb.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/README.md -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/alarm.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/channel.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/client_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/completion_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/completion_queue.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/create_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/create_channel.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/grpc++.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/grpc++.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/impl/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/impl/call.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/impl/rpc_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/impl/rpc_method.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/resource_quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/resource_quota.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/server.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/server_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/server_builder.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/server_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/server_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/server_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/server_posix.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/support/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/support/config.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/support/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/support/slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/support/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/support/status.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/support/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/support/time.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc++/test/mock_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc++/test/mock_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/byte_buffer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/byte_buffer_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/byte_buffer_reader.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/census.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/census.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/compression.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/event_engine/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/event_engine/port.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/event_engine/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/event_engine/slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/fork.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/grpc.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/grpc_cronet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/grpc_cronet.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/grpc_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/grpc_posix.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/grpc_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/grpc_security.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/impl/codegen/atm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/impl/codegen/atm.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/impl/codegen/fork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/impl/codegen/fork.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/impl/codegen/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/impl/codegen/log.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/impl/codegen/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/impl/codegen/slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/impl/codegen/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/impl/codegen/sync.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/load_reporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/load_reporting.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/module.modulemap -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/slice_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/slice_buffer.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/status.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/alloc.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/atm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/atm.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/cpu.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/log.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/sync.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/sync_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/sync_posix.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/thd_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/thd_id.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpc/support/time.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/alarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/alarm.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/channel.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/client_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/client_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/completion_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/completion_queue.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/create_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/create_channel.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/ext/orca_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/ext/orca_service.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/grpcpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/grpcpp.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/impl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/impl/README.md -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/impl/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/impl/call.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/impl/call_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/impl/call_hook.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/impl/rpc_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/impl/rpc_method.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/opencensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/opencensus.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/resource_quota.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/resource_quota.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/server.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/server_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/server_builder.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/server_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/server_context.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/server_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/server_posix.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/support/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/support/config.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/support/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/support/slice.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/support/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/support/status.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/support/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/support/time.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/test/mock_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/grpcpp/test/mock_stream.h -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/libprotobuf-lite.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/libprotobuf-lite.map -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/libprotobuf.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/libprotobuf.map -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/libprotoc.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/libprotoc.map -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/Include_1.50.x/solaris/libstdc++.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/Include_1.50.x/solaris/libstdc++.la -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_bad_any_cast_impl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_bad_any_cast_impl.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_bad_optional_access.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_bad_optional_access.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_bad_variant_access.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_bad_variant_access.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_base.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_base.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_city.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_city.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_civil_time.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_civil_time.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_cord.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_cord.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_debugging_internal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_debugging_internal.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_demangle_internal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_demangle_internal.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_examine_stack.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_examine_stack.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_exponential_biased.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_exponential_biased.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_flags.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_flags.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_flags_commandlineflag.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_flags_commandlineflag.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_flags_config.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_flags_config.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_flags_internal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_flags_internal.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_flags_marshalling.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_flags_marshalling.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_flags_parse.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_flags_parse.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_flags_program_name.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_flags_program_name.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_flags_reflection.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_flags_reflection.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_flags_usage.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_flags_usage.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_flags_usage_internal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_flags_usage_internal.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_graphcycles_internal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_graphcycles_internal.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_hash.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_hash.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_hashtablez_sampler.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_hashtablez_sampler.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_int128.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_int128.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_leak_check.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_leak_check.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_leak_check_disable.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_leak_check_disable.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_log_severity.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_log_severity.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_malloc_internal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_malloc_internal.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_periodic_sampler.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_periodic_sampler.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_random_distributions.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_random_distributions.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_random_seed_sequences.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_random_seed_sequences.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_raw_hash_set.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_raw_hash_set.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_raw_logging_internal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_raw_logging_internal.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_scoped_set_env.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_scoped_set_env.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_spinlock_wait.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_spinlock_wait.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_stacktrace.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_stacktrace.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_status.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_status.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_statusor.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_statusor.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_str_format_internal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_str_format_internal.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_strerror.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_strerror.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_strings.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_strings.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_strings_internal.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_strings_internal.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_symbolize.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_symbolize.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_synchronization.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_synchronization.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_throw_delegate.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_throw_delegate.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_time.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_time.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/absl_time_zone.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/absl_time_zone.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/address_sorting.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/address_sorting.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/cares.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/cares.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/gpr.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/gpr.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/grpc++.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/grpc++.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/grpc++_alts.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/grpc++_alts.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/grpc++_error_details.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/grpc++_error_details.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/grpc++_reflection.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/grpc++_reflection.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/grpc++_unsecure.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/grpc++_unsecure.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/grpc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/grpc.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/grpc_csharp_ext.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/grpc_csharp_ext.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/grpc_plugin_support.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/grpc_plugin_support.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/grpc_unsecure.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/grpc_unsecure.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/grpcpp_channelz.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/grpcpp_channelz.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/libprotobuf-lite.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/libprotobuf-lite.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/libprotobuf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/libprotobuf.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/libprotoc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/libprotoc.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/re2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/re2.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/sample.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/sample.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/testing.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/testing.lib -------------------------------------------------------------------------------- /Source/ThirdParty/gRPC/lib/win64/upb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Conv-AI/Convai-UnrealEngine-SDK/HEAD/Source/ThirdParty/gRPC/lib/win64/upb.lib --------------------------------------------------------------------------------