Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:13:18

0001 // Protocol Buffers - Google's data interchange format
0002 // Copyright 2023 Google LLC.  All rights reserved.
0003 //
0004 // Use of this source code is governed by a BSD-style
0005 // license that can be found in the LICENSE file or at
0006 // https://developers.google.com/open-source/licenses/bsd
0007 
0008 // IWYU pragma: private, include "upb/reflection/def.h"
0009 
0010 #ifndef UPB_REFLECTION_METHOD_DEF_H_
0011 #define UPB_REFLECTION_METHOD_DEF_H_
0012 
0013 #include "upb/reflection/common.h"
0014 
0015 // Must be last.
0016 #include "upb/port/def.inc"
0017 
0018 #ifdef __cplusplus
0019 extern "C" {
0020 #endif
0021 
0022 UPB_API bool upb_MethodDef_ClientStreaming(const upb_MethodDef* m);
0023 const char* upb_MethodDef_FullName(const upb_MethodDef* m);
0024 bool upb_MethodDef_HasOptions(const upb_MethodDef* m);
0025 int upb_MethodDef_Index(const upb_MethodDef* m);
0026 UPB_API const upb_MessageDef* upb_MethodDef_InputType(const upb_MethodDef* m);
0027 UPB_API const char* upb_MethodDef_Name(const upb_MethodDef* m);
0028 UPB_API const UPB_DESC(MethodOptions) *
0029     upb_MethodDef_Options(const upb_MethodDef* m);
0030 const UPB_DESC(FeatureSet) *
0031     upb_MethodDef_ResolvedFeatures(const upb_MethodDef* m);
0032 UPB_API const upb_MessageDef* upb_MethodDef_OutputType(const upb_MethodDef* m);
0033 UPB_API bool upb_MethodDef_ServerStreaming(const upb_MethodDef* m);
0034 UPB_API const upb_ServiceDef* upb_MethodDef_Service(const upb_MethodDef* m);
0035 
0036 #ifdef __cplusplus
0037 } /* extern "C" */
0038 #endif
0039 
0040 #include "upb/port/undef.inc"
0041 
0042 #endif /* UPB_REFLECTION_METHOD_DEF_H_ */