runtime.MemStats.HeapInuse (field)

5 uses

	runtime (current package)
		heapdump.go#L576: 	dumpint(m.HeapInuse)
		mstats.go#L284: 	HeapInuse uint64
		mstats.go#L509: 	stats.HeapInuse = memstats.heap_inuse

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

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