Searched defs:UnmarshalOptions (Results  1 – 5 of 5) sorted by relevance
| /external/golang-protobuf/proto/ | 
| D | decode.go | 24 type UnmarshalOptions struct {  struct25 	pragma.NoUnkeyedLiterals
 30 	Merge bool
 35 	AllowPartial bool
 38 	DiscardUnknown bool
 42 	Resolver interface {
 49 	RecursionLimit int
 61 func (o UnmarshalOptions) Unmarshal(b []byte, m Message) error {
 73 …nmarshalOptions) UnmarshalState(in protoiface.UnmarshalInput) (protoiface.UnmarshalOutput, error) {
 83 …lOptions) unmarshal(b []byte, m protoreflect.Message) (out protoiface.UnmarshalOutput, err error) {
 [all …]
 
 | 
| /external/golang-protobuf/encoding/prototext/ | 
| D | decode.go | 31 type UnmarshalOptions struct {  struct32 	pragma.NoUnkeyedLiterals
 37 	AllowPartial bool
 43 	DiscardUnknown bool
 48 	Resolver interface {
 57 func (o UnmarshalOptions) Unmarshal(b []byte, m proto.Message) error {
 64 func (o UnmarshalOptions) unmarshal(b []byte, m proto.Message) error {
 
 | 
| /external/golang-protobuf/encoding/protodelim/ | 
| D | protodelim.go | 50 type UnmarshalOptions struct {  struct51 	proto.UnmarshalOptions  argument
 57 	MaxSize int64
 93 func (o UnmarshalOptions) UnmarshalFrom(r Reader, m proto.Message) error {
 
 | 
| /external/golang-protobuf/encoding/protojson/ | 
| D | decode.go | 33 type UnmarshalOptions struct {  struct34 	pragma.NoUnkeyedLiterals
 38 	AllowPartial bool
 41 	DiscardUnknown bool
 46 	Resolver interface {
 57 func (o UnmarshalOptions) Unmarshal(b []byte, m proto.Message) error {
 64 func (o UnmarshalOptions) unmarshal(b []byte, m proto.Message) error {
 
 | 
| /external/golang-protobuf/types/known/anypb/ | 
| D | any.pb.go | 281 func UnmarshalTo(src *Any, dst proto.Message, opts proto.UnmarshalOptions) error {300 func UnmarshalNew(src *Any, opts proto.UnmarshalOptions) (dst proto.Message, err error) {
 
 |