(long vAddr, long size)
| 4 | private long size; |
| 5 | |
| 6 | public ElfSection(long vAddr, long size) { |
| 7 | this.vAddr = vAddr; |
| 8 | this.size = size; |
| 9 | } |
| 10 | |
| 11 | public long getvAddr() { |
| 12 | return vAddr; |
nothing calls this directly
no outgoing calls
no test coverage detected