MCPcopy Create free account
hub / github.com/google/gapid / BeginGroup

Method BeginGroup

gapis/capture/decoder.go:52–59  ·  view source on GitHub ↗
(ctx context.Context, msg proto.Message, id uint64)

Source from the content-addressed store, hash-verified

50}
51
52func (d *decoder) BeginGroup(ctx context.Context, msg proto.Message, id uint64) error {
53 obj, err := d.decode(ctx, msg)
54 if err != nil {
55 return err
56 }
57 d.groups[id] = obj
58 return nil
59}
60
61func (d *decoder) BeginChildGroup(ctx context.Context, msg proto.Message, id, parentID uint64) error {
62 obj, err := d.decode(ctx, msg)

Callers

nothing calls this directly

Calls 1

decodeMethod · 0.95

Tested by

no test coverage detected