func encoding/json.Unmarshal

64 uses

	encoding/json (current package)
		decode.go#L96: func Unmarshal(data []byte, v interface{}) error {

	cloud.google.com/go/logging
		logging.go#L730: 	err = json.Unmarshal(jb, &m)

	github.com/aws/aws-sdk-go/aws/credentials/processcreds
		provider.go#L246: 	if err = json.Unmarshal(out, resp); err != nil {

	github.com/aws/aws-sdk-go/aws/endpoints
		decode.go#L73: 	if err := json.Unmarshal(b, &ps); err != nil {

	github.com/aws/aws-sdk-go/private/protocol
		jsonvalue.go#L70: 	err = json.Unmarshal(b, &m)

	github.com/emirpasic/gods/lists/arraylist
		serialization.go#L24: 	err := json.Unmarshal(data, &list.elements)

	github.com/ghodss/yaml
		yaml.go#L37: 	err = json.Unmarshal(j, o)

	github.com/golang/protobuf/proto
		deprecated.go#L70: 		if err := json.Unmarshal(data, &repr); err != nil {
		deprecated.go#L81: 	if err := json.Unmarshal(data, &val); err != nil {

	github.com/jackc/pgtype
		bool.go#L205: 	err := json.Unmarshal(b, &v)
		date.go#L262: 	err := json.Unmarshal(b, &s)
		int4.go#L300: 	err := json.Unmarshal(b, &n)
		int8.go#L286: 	err := json.Unmarshal(b, &n)
		json.go#L67: 		err := json.Unmarshal(dst.Bytes, &i)
		json.go#L110: 		return json.Unmarshal(data, dst)
		text.go#L170: 	err := json.Unmarshal(b, &s)
		timestamptz.go#L268: 	err := json.Unmarshal(b, &s)

	github.com/jmespath/go-jmespath
		lexer.go#L372: 	if err := json.Unmarshal([]byte(asJSON), &decoded); err != nil {
		parser.go#L321: 		err := json.Unmarshal([]byte(token.value), &parsed)

	github.com/prometheus/client_golang/prometheus
		expvar_collector.go#L85: 		if err := json.Unmarshal([]byte(expVar.String()), &v); err != nil {

	github.com/prometheus/common/model
		labels.go#L123: 	if err := json.Unmarshal(b, &s); err != nil {
		labelset.go#L156: 	if err := json.Unmarshal(b, &m); err != nil {
		silence.go#L32: 	if err := json.Unmarshal(b, (*plain)(m)); err != nil {
		value.go#L99: 	return json.Unmarshal(b, &v)
		value.go#L172: 	if err := json.Unmarshal(b, &v); err != nil {
		value.go#L264: 	if err := json.Unmarshal(b, &s); err != nil {
		value.go#L321: 	if err := json.Unmarshal(b, &v); err != nil {
		value.go#L351: 	return json.Unmarshal(b, &v)

	golang.org/x/oauth2/google
		default.go#L126: 	if err := json.Unmarshal(jsonData, &f); err != nil {
		google.go#L49: 	if err := json.Unmarshal(jsonKey, &j); err != nil {
		google.go#L82: 	if err := json.Unmarshal(jsonKey, &f); err != nil {

	golang.org/x/oauth2/internal
		token.go#L82: 	err := json.Unmarshal(b, &n)
		token.go#L269: 		if err = json.Unmarshal(body, &tj); err != nil {
		token.go#L279: 		json.Unmarshal(body, &token.Raw) // no error checks for optional fields

	golang.org/x/oauth2/jwt
		jwt.go#L156: 	if err := json.Unmarshal(body, &tokenRes); err != nil {
		jwt.go#L164: 	json.Unmarshal(body, &raw) // no error checks for optional fields

	golang.org/x/pkgsite/internal/postgres
		details.go#L183: 	if err := json.Unmarshal(jsonBytes, v.Interface()); err != nil {
		licenses.go#L123: 		if err := json.Unmarshal(covBytes, &lic.Coverage); err != nil {
		licenses.go#L128: 			if err := json.Unmarshal(covBytes, &lic.OldCoverage); err != nil {

	golang.org/x/pkgsite/internal/proxy
		client.go#L115: 	if err := json.Unmarshal(data, &v); err != nil {

	golang.org/x/pkgsite/internal/source
		source.go#L194: 	if err := json.Unmarshal(data, &ji); err != nil {

	google.golang.org/api/googleapi
		googleapi.go#L137: 		err = json.Unmarshal(slurp, jerr)
		googleapi.go#L350: 	return json.Unmarshal(buf.Bytes(), dst) == nil
		types.go#L19: 	if err := json.Unmarshal(raw, &ss); err != nil {
		types.go#L38: 	if err := json.Unmarshal(raw, &ss); err != nil {
		types.go#L57: 	if err := json.Unmarshal(raw, &ss); err != nil {
		types.go#L76: 	if err := json.Unmarshal(raw, &ss); err != nil {
		types.go#L95: 	if err := json.Unmarshal(raw, &ss); err != nil {

	google.golang.org/api/idtoken
		idtoken.go#L136: 	if err := json.Unmarshal(data, &f); err != nil {
		validate.go#L271: 	err = json.Unmarshal(dh, &h)
		validate.go#L285: 	if err := json.Unmarshal(dp, &p); err != nil {
		validate.go#L288: 	if err := json.Unmarshal(dp, &p.Claims); err != nil {

	google.golang.org/api/internal
		creds.go#L79: 		if err := json.Unmarshal(cred.JSON, &f); err != nil {
		creds.go#L113: 	if err := json.Unmarshal(cred.JSON, &v); err != nil {

	google.golang.org/api/internal/gensupport
		jsonfloat.go#L27: 	if err := json.Unmarshal(data, &ff); err == nil {
		jsonfloat.go#L32: 	if err := json.Unmarshal(data, &s); err == nil {

	google.golang.org/api/internal/impersonate
		impersonate.go#L117: 	if err := json.Unmarshal(body, &accessTokenResp); err != nil {

	google.golang.org/api/transport/cert
		default_cert.go#L79: 	if err := json.Unmarshal(file, &metadata); err != nil {

	google.golang.org/grpc
		service_config.go#L278: 	err := json.Unmarshal([]byte(js), &rsc)

	google.golang.org/grpc/balancer/grpclb
		grpclb_config.go#L41: 	if err := json.Unmarshal(lbConfig, ret); err != nil {

	google.golang.org/grpc/internal/resolver/dns
		dns_resolver.go#L424: 	err := json.Unmarshal([]byte(js), &rcs)

	google.golang.org/grpc/internal/serviceconfig
		serviceconfig.go#L58: 	err := json.Unmarshal(b, &ir)

	google.golang.org/protobuf/internal/impl
		legacy_export.go#L42: 		if err := json.Unmarshal(b, &name); err != nil {
		legacy_export.go#L52: 		if err := json.Unmarshal(b, &num); err != nil {