Method
Open
(file string, start, limit, offset uint64, relocationSymbol string)
Source from the content-addressed store, hash-verified
| 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) |
| 242 | if err != nil { |
| 243 | return nil, err |
| 244 | } |
| 245 | return &internalObjFile{f}, err |
| 246 | } |
| 247 | |
| 248 | type internalObjFile struct { |
| 249 | ObjFile |
Callers
nothing calls this directly
Tested by
no test coverage detected