kubernetes/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go

func (fd *File) lazyRawInit() {}

func (file *File) resolveMessages() {}

func (file *File) resolveExtensions() {}

func (file *File) resolveServices() {}

func (file *File) resolveEnumDependency(ed protoreflect.EnumDescriptor, i, j int32) protoreflect.EnumDescriptor {}

func (file *File) resolveMessageDependency(md protoreflect.MessageDescriptor, i, j int32) protoreflect.MessageDescriptor {}

func (fd *File) unmarshalFull(b []byte) {}

func (ed *Enum) unmarshalFull(b []byte, sb *strs.Builder) {}

func unmarshalEnumReservedRange(b []byte) (r [2]protoreflect.EnumNumber) {}

func (vd *EnumValue) unmarshalFull(b []byte, sb *strs.Builder, pf *File, pd protoreflect.Descriptor, i int) {}

func (md *Message) unmarshalFull(b []byte, sb *strs.Builder) {}

func (md *Message) unmarshalOptions(b []byte) {}

func unmarshalMessageReservedRange(b []byte) (r [2]protoreflect.FieldNumber) {}

func unmarshalMessageExtensionRange(b []byte) (r [2]protoreflect.FieldNumber, rawOptions []byte) {}

func (fd *Field) unmarshalFull(b []byte, sb *strs.Builder, pf *File, pd protoreflect.Descriptor, i int) {}

func (fd *Field) unmarshalOptions(b []byte) {}

func (od *Oneof) unmarshalFull(b []byte, sb *strs.Builder, pf *File, pd protoreflect.Descriptor, i int) {}

func (xd *Extension) unmarshalFull(b []byte, sb *strs.Builder) {}

func (sd *Service) unmarshalFull(b []byte, sb *strs.Builder) {}

func (md *Method) unmarshalFull(b []byte, sb *strs.Builder, pf *File, pd protoreflect.Descriptor, i int) {}

// appendOptions appends src to dst, where the returned slice is never nil.
// This is necessary to distinguish between empty and unpopulated options.
func appendOptions(dst, src []byte) []byte {}

// optionsUnmarshaler constructs a lazy unmarshal function for an options message.
//
// The type of message to unmarshal to is passed as a pointer since the
// vars in descopts may not yet be populated at the time this function is called.
func (db *Builder) optionsUnmarshaler(p *protoreflect.ProtoMessage, b []byte) func() protoreflect.ProtoMessage {}