Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,337 for symbolz (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/symbolz/symbolz.go

    // handler. syms receives the symbolz query (hex addresses separated by '+')
    // and returns the symbolz output in a string. If force is false, it will only
    // symbolize locations from mappings not already marked as HasFunctions. Never
    // attempts symbolization of addresses from unsymbolizable system
    // mappings as those may look negative - e.g. "[vsyscall]".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:18:01 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    )
    
    // Symbolizer implements the plugin.Symbolize interface.
    type Symbolizer struct {
    	Obj       plugin.ObjTool
    	UI        plugin.UI
    	Transport http.RoundTripper
    }
    
    // test taps for dependency injection
    var symbolzSymbolize = symbolz.Symbolize
    var localSymbolize = doLocalSymbolize
    var demangleFunction = Demangle
    
    // Symbolize attempts to symbolize profile p. First uses binutils on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. src/cmd/vendor/modules.txt

    github.com/google/pprof/internal/graph
    github.com/google/pprof/internal/measurement
    github.com/google/pprof/internal/plugin
    github.com/google/pprof/internal/report
    github.com/google/pprof/internal/symbolizer
    github.com/google/pprof/internal/symbolz
    github.com/google/pprof/internal/transport
    github.com/google/pprof/profile
    github.com/google/pprof/third_party/svgpan
    # github.com/ianlancetaylor/demangle v0.0.0-20240312041847-bd984b5ce465
    ## explicit; go 1.13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/debug/pe/symbol.go

    // symbols (whose fields are described by COFFSymbol above) and
    // auxiliary symbols; all symbols are 18 bytes in size. The auxiliary
    // symbols for a given primary symbol are placed following it in the
    // array, e.g.
    //
    //	...
    //	k+0:  regular sym k
    //	k+1:    1st aux symbol for k
    //	k+2:    2nd aux symbol for k
    //	k+3:  regular sym k+3
    //	k+4:    1st aux symbol for k+3
    //	k+5:  regular sym k+5
    //	k+6:  regular sym k+6
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  5. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

       /* To figure out the load address we use the definition that for any symbol:
          dynamic_addr(symbol) = static_addr(symbol) + load_addr
     
    -     The choice of symbol is arbitrary. The static address we obtain
    -     by constructing a non GOT reference to the symbol, the dynamic
    -     address of the symbol we compute using adrp/add to compute the
    -     symbol's address relative to the PC. */
    -
    -  ElfW(Addr) static_addr;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. src/cmd/internal/goobj/objfile.go

    // are the RelocIndex[i]-th (inclusive) to RelocIndex[i+1]-th (exclusive)
    // elements in the Relocs array. Aux/Data are likewise. (The index is
    // 0-based.)
    
    // Auxiliary symbols.
    //
    // Each symbol may (or may not) be associated with a number of auxiliary
    // symbols. They are described in the Aux block. See Aux struct below.
    // Currently a symbol's Gotype, FuncInfo, and associated DWARF symbols
    // are auxiliary symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    	// with the leaf function first.
    	SourceLine(addr uint64) ([]Frame, error)
    
    	// Symbols returns a list of symbols in the object file.
    	// If r is not nil, Symbols restricts the list to symbols
    	// with names matching the regular expression.
    	// If addr is not zero, Symbols restricts the list to symbols
    	// containing that address.
    	Symbols(r *regexp.Regexp, addr uint64) ([]*Sym, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/link.go

    //
    // Relocations are applied prior to emitting generator Symbol contents.
    // Generator Symbols that require relocations can be written in two passes.
    // The first pass, at Symbol creation time, adds only relocations.
    // The second pass, at content generation time, adds the rest.
    // See generateFunctab for an example.
    //
    // Generator functions shouldn't grow the Symbol size.
    // Generator functions must be safe for concurrent use.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 19 15:59:22 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loadpe/ldpe.go

    //
    // Background: DLL import symbols are data (SNOPTRDATA) symbols whose
    // name is of the form "__imp_XXX", which contain a pointer/reference
    // to symbol XXX. It's possible to have import symbols for both data
    // symbols ("__imp__fmode") and text symbols ("__imp_CreateEventA").
    // In some case import symbols are just references to some external
    // thing, and in other cases we see actual definitions of import
    // symbols when reading host objects.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaClassSymbol.kt

    import org.jetbrains.kotlin.analysis.api.impl.base.symbols.toKtClassKind
    import org.jetbrains.kotlin.analysis.api.lifetime.withValidityAssertion
    import org.jetbrains.kotlin.analysis.api.symbols.KaClassKind
    import org.jetbrains.kotlin.analysis.api.symbols.KaNamedClassOrObjectSymbol
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbolOrigin
    import org.jetbrains.kotlin.analysis.api.symbols.KaTypeParameterSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top