runtime.MemStats.HeapObjects (field)

5 uses

	runtime (current package)
		heapdump.go#L578: 	dumpint(m.HeapObjects)
		mstats.go#L297: 	HeapObjects uint64
		mstats.go#L511: 	stats.HeapObjects = memstats.heap_objects

	runtime/pprof
		pprof.go#L630: 	fmt.Fprintf(w, "# HeapObjects = %d\n", s.HeapObjects)

	github.com/prometheus/client_golang/prometheus
		go_collector.go#L181: 				eval:    func(ms *runtime.MemStats) float64 { return float64(ms.HeapObjects) },