ObjAddr returns the objdump address corresponding to a runtime address.
(addr uint64)
| 1668 | |
| 1669 | // ObjAddr returns the objdump address corresponding to a runtime address. |
| 1670 | func (m *mockFile) ObjAddr(addr uint64) (uint64, error) { |
| 1671 | return addr - m.base, nil |
| 1672 | } |
| 1673 | |
| 1674 | // BuildID returns the GNU build ID of the file, or an empty string. |
| 1675 | func (m *mockFile) BuildID() string { |
nothing calls this directly
no outgoing calls
no test coverage detected