internalObjTool is a wrapper to map from the pprof external interface to the internal interface.
| 234 | // internalObjTool is a wrapper to map from the pprof external |
| 235 | // interface to the internal interface. |
| 236 | type internalObjTool struct { |
| 237 | ObjTool |
| 238 | } |
| 239 | |
| 240 | func (o *internalObjTool) Open(file string, start, limit, offset uint64, relocationSymbol string) (plugin.ObjFile, error) { |
| 241 | f, err := o.ObjTool.Open(file, start, limit, offset, relocationSymbol) |
nothing calls this directly
no outgoing calls
no test coverage detected