HomeSort by relevance Sort by last modified time
    Searched refs:MappingSources (Results 1 - 19 of 19) sorted by null

  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/
fetch.go 73 p, m, err = combineProfiles([]*profile.Profile{p, pbase}, []plugin.MappingSources{m, mbase})
123 func grabSourcesAndBases(sources, bases []profileSource, fetch plugin.Fetcher, obj plugin.ObjTool, ui plugin.UI) (*profile.Profile, *profile.Profile, plugin.MappingSources, plugin.MappingSources, bool, error) {
127 var msrc, mbase plugin.MappingSources
167 func chunkedGrab(sources []profileSource, fetch plugin.Fetcher, obj plugin.ObjTool, ui plugin.UI) (*profile.Profile, plugin.MappingSources, bool, int, error) {
171 var msrc plugin.MappingSources
189 p, msrc, chunkErr = combineProfiles([]*profile.Profile{p, chunkP}, []plugin.MappingSources{msrc, chunkMsrc})
204 func concurrentGrab(sources []profileSource, fetch plugin.Fetcher, obj plugin.ObjTool, ui plugin.UI) (*profile.Profile, plugin.MappingSources, bool, int, error) {
217 msrcs := make([]plugin.MappingSources, 0, len(sources))
241 func combineProfiles(profiles []*profile.Profile, msrcs []plugin.MappingSources) (*profile.Profile, plugin.MappingSources, error)
    [all...]
fetch_test.go 101 want plugin.MappingSources
103 {"/usr/bin/binary", "buildId", mappingSources("buildId", url, startAddress)},
104 {"/usr/bin/binary", "", mappingSources("/usr/bin/binary", url, startAddress)},
105 {"", "", mappingSources(url, url, startAddress)},
320 // mappingSources creates MappingSources map with a single item.
321 func mappingSources(key, source string, start uint64) plugin.MappingSources {
322 return plugin.MappingSources{
driver_test.go 434 func (testSymbolizer) Symbolize(_ string, _ plugin.MappingSources, _ *profile.Profile) error {
440 func (testSymbolizeDemangler) Symbolize(_ string, _ plugin.MappingSources, p *profile.Profile) error {
482 func (testSymbolzSymbolizer) Symbolize(variables string, sources plugin.MappingSources, p *profile.Profile) error {
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/driver/
fetch.go 73 p, m, err = combineProfiles([]*profile.Profile{p, pbase}, []plugin.MappingSources{m, mbase})
123 func grabSourcesAndBases(sources, bases []profileSource, fetch plugin.Fetcher, obj plugin.ObjTool, ui plugin.UI) (*profile.Profile, *profile.Profile, plugin.MappingSources, plugin.MappingSources, bool, error) {
127 var msrc, mbase plugin.MappingSources
167 func chunkedGrab(sources []profileSource, fetch plugin.Fetcher, obj plugin.ObjTool, ui plugin.UI) (*profile.Profile, plugin.MappingSources, bool, int, error) {
171 var msrc plugin.MappingSources
189 p, msrc, chunkErr = combineProfiles([]*profile.Profile{p, chunkP}, []plugin.MappingSources{msrc, chunkMsrc})
204 func concurrentGrab(sources []profileSource, fetch plugin.Fetcher, obj plugin.ObjTool, ui plugin.UI) (*profile.Profile, plugin.MappingSources, bool, int, error) {
217 msrcs := make([]plugin.MappingSources, 0, len(sources))
241 func combineProfiles(profiles []*profile.Profile, msrcs []plugin.MappingSources) (*profile.Profile, plugin.MappingSources, error)
    [all...]
fetch_test.go 101 want plugin.MappingSources
103 {"/usr/bin/binary", "buildId", mappingSources("buildId", url, startAddress)},
104 {"/usr/bin/binary", "", mappingSources("/usr/bin/binary", url, startAddress)},
105 {"", "", mappingSources(url, url, startAddress)},
320 // mappingSources creates MappingSources map with a single item.
321 func mappingSources(key, source string, start uint64) plugin.MappingSources {
322 return plugin.MappingSources{
driver_test.go 434 func (testSymbolizer) Symbolize(_ string, _ plugin.MappingSources, _ *profile.Profile) error {
440 func (testSymbolizeDemangler) Symbolize(_ string, _ plugin.MappingSources, p *profile.Profile) error {
482 func (testSymbolzSymbolizer) Symbolize(variables string, sources plugin.MappingSources, p *profile.Profile) error {
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/driver/
driver.go 114 Symbolize(mode string, srcs MappingSources, prof *profile.Profile) error
117 // MappingSources map each profile.Mapping to the source of the profile.
119 type MappingSources map[string][]struct {
275 func (s *internalSymbolizer) Symbolize(mode string, srcs plugin.MappingSources, prof *profile.Profile) error {
276 isrcs := MappingSources{}
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/driver/
driver.go 114 Symbolize(mode string, srcs MappingSources, prof *profile.Profile) error
117 // MappingSources map each profile.Mapping to the source of the profile.
119 type MappingSources map[string][]struct {
275 func (s *internalSymbolizer) Symbolize(mode string, srcs plugin.MappingSources, prof *profile.Profile) error {
276 isrcs := MappingSources{}
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/plugin/
plugin.go 100 Symbolize(mode string, srcs MappingSources, prof *profile.Profile) error
103 // MappingSources map each profile.Mapping to the source of the profile.
105 type MappingSources map[string][]struct {
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/plugin/
plugin.go 100 Symbolize(mode string, srcs MappingSources, prof *profile.Profile) error
103 // MappingSources map each profile.Mapping to the source of the profile.
105 type MappingSources map[string][]struct {
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/symbolz/
symbolz_test.go 45 s := plugin.MappingSources{
symbolz.go 42 func Symbolize(p *profile.Profile, force bool, sources plugin.MappingSources, syms func(string, string) ([]byte, error), ui plugin.UI) error {
48 mappingSources := sources[m.File]
50 mappingSources = append(mappingSources, sources[m.BuildID]...)
52 for _, source := range mappingSources {
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/symbolz/
symbolz_test.go 45 s := plugin.MappingSources{
symbolz.go 42 func Symbolize(p *profile.Profile, force bool, sources plugin.MappingSources, syms func(string, string) ([]byte, error), ui plugin.UI) error {
48 mappingSources := sources[m.File]
50 mappingSources = append(mappingSources, sources[m.BuildID]...)
52 for _, source := range mappingSources {
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/internal/symbolizer/
symbolizer_test.go 167 func symbolzMock(p *profile.Profile, force bool, sources plugin.MappingSources, syms func(string, string) ([]byte, error), ui plugin.UI) error {
symbolizer.go 50 func (s *Symbolizer) Symbolize(mode string, sources plugin.MappingSources, p *profile.Profile) error {
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/internal/symbolizer/
symbolizer_test.go 167 func symbolzMock(p *profile.Profile, force bool, sources plugin.MappingSources, syms func(string, string) ([]byte, error), ui plugin.UI) error {
symbolizer.go 50 func (s *Symbolizer) Symbolize(mode string, sources plugin.MappingSources, p *profile.Profile) error {
  /external/clang/lib/Serialization/
ASTReader.cpp 353 DiagnosticsEngine *MappingSources[] = { &Diags, &StoredDiags };
355 for (DiagnosticsEngine *MappingSource : MappingSources) {
    [all...]

Completed in 219 milliseconds