MCPcopy Create free account
hub / github.com/google/pprof / decodeStrings

Function decodeStrings

profile/proto.go:365–372  ·  view source on GitHub ↗
(b *buffer, x *[]string)

Source from the content-addressed store, hash-verified

363}
364
365func decodeStrings(b *buffer, x *[]string) error {
366 var s string
367 if err := decodeString(b, &s); err != nil {
368 return err
369 }
370 *x = append(*x, s)
371 return nil
372}
373
374func decodeBool(b *buffer, x *bool) error {
375 if err := checkType(b, 0); err != nil {

Callers 1

encode.goFile · 0.85

Calls 1

decodeStringFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…