Searched defs:DSO (Results 1 - 1 of 1) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/
H A DDSO.java33 public abstract class DSO implements LoadObject { class in inherits:LoadObject
49 return ELFFileParser.getParser().parse(DSO.this.filename);
55 return ELFFileParser.getParser().parse(new AddressDataSource(DSO.this.addr));
59 public DSO(String filename, long size, Address relocation) throws ELFException { method in class:DSO
66 public DSO(long size, Address relocation) throws ELFException { method in class:DSO
139 if (o == null || !(o instanceof DSO)) {
142 DSO other = (DSO)o;

Completed in 295 milliseconds