Searched defs:structPointer (Results 1 – 4 of 4) sorted by relevance
/external/golang-protobuf/proto/ |
D | encode.go | 314 func (o *Buffer) enc_bool(p *Properties, base structPointer) error { 328 func (o *Buffer) enc_proto3_bool(p *Properties, base structPointer) error { 338 func size_bool(p *Properties, base structPointer) int { 346 func size_proto3_bool(p *Properties, base structPointer) int { 355 func (o *Buffer) enc_int32(p *Properties, base structPointer) error { 366 func (o *Buffer) enc_proto3_int32(p *Properties, base structPointer) error { 377 func size_int32(p *Properties, base structPointer) (n int) { 388 func size_proto3_int32(p *Properties, base structPointer) (n int) { 401 func (o *Buffer) enc_uint32(p *Properties, base structPointer) error { 412 func (o *Buffer) enc_proto3_uint32(p *Properties, base structPointer) error { [all …]
|
D | decode.go | 317 func (o *Buffer) skipAndSave(t reflect.Type, tag, wire int, base structPointer, unrecField field) e… 462 …) unmarshalType(st reflect.Type, prop *StructProperties, is_group bool, base structPointer) error { 592 func (o *Buffer) dec_bool(p *Properties, base structPointer) error { 606 func (o *Buffer) dec_proto3_bool(p *Properties, base structPointer) error { 616 func (o *Buffer) dec_int32(p *Properties, base structPointer) error { 625 func (o *Buffer) dec_proto3_int32(p *Properties, base structPointer) error { 635 func (o *Buffer) dec_int64(p *Properties, base structPointer) error { 644 func (o *Buffer) dec_proto3_int64(p *Properties, base structPointer) error { 654 func (o *Buffer) dec_string(p *Properties, base structPointer) error { 663 func (o *Buffer) dec_proto3_string(p *Properties, base structPointer) error { [all …]
|
D | pointer_unsafe.go | 53 type structPointer unsafe.Pointer type 61 func structPointer_IsNil(p structPointer) bool { 67 func structPointer_Interface(p structPointer, t reflect.Type) interface{} { 89 func structPointer_Bytes(p structPointer, f field) *[]byte { 94 func structPointer_BytesSlice(p structPointer, f field) *[][]byte { 99 func structPointer_Bool(p structPointer, f field) **bool { 104 func structPointer_BoolVal(p structPointer, f field) *bool { 109 func structPointer_BoolSlice(p structPointer, f field) *[]bool { 114 func structPointer_String(p structPointer, f field) **string { 119 func structPointer_StringVal(p structPointer, f field) *string { [all …]
|
D | pointer_reflect.go | 46 type structPointer struct { struct 47 v reflect.Value 57 func structPointer_IsNil(p structPointer) bool { 62 func structPointer_Interface(p structPointer, _ reflect.Type) interface{} { 83 func structPointer_field(p structPointer, f field) reflect.Value { 98 func structPointer_ifield(p structPointer, f field) interface{} { 103 func structPointer_Bytes(p structPointer, f field) *[]byte { 108 func structPointer_BytesSlice(p structPointer, f field) *[][]byte { 113 func structPointer_Bool(p structPointer, f field) **bool { 118 func structPointer_BoolVal(p structPointer, f field) *bool { [all …]
|