Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for writeHeapInternal (0.13 sec)

  1. src/runtime/pprof/pprof.go

    func writeHeap(w io.Writer, debug int) error {
    	return writeHeapInternal(w, debug, "")
    }
    
    // writeAlloc writes the current runtime heap profile to w
    // with the total allocation space as the default sample type.
    func writeAlloc(w io.Writer, debug int) error {
    	return writeHeapInternal(w, debug, "alloc_space")
    }
    
    func writeHeapInternal(w io.Writer, debug int, defaultSampleType string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
Back to top