Searched defs:db (Results 101 - 125 of 278) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DPhaseCFG.java43 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
44 Type type = db.lookupType("PhaseCFG");
H A DPhaseRegAlloc.java42 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
43 Type type = db.lookupType("PhaseRegAlloc");
H A DSafePointNode.java43 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
44 Type type = db.lookupType("SafePointNode");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DBasicObjectLock.java41 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
42 Type type = db.lookupType("BasicObjectLock");
H A DCompilerThread.java44 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
45 Type type = db.lookupType("CompilerThread");
H A DJNIHandles.java44 private static synchronized void initialize(TypeDataBase db) { argument
45 Type type = db.lookupType("JNIHandles");
H A DJNIid.java50 private static synchronized void initialize(TypeDataBase db) { argument
57 Type type = db.lookupType("JNIid");
H A DJavaCallWrapper.java54 private static synchronized void initialize(TypeDataBase db) { argument
55 Type type = db.lookupType("JavaCallWrapper");
56 Type anchorType = db.lookupType("JavaFrameAnchor");
H A DOSThread.java44 private static synchronized void initialize(TypeDataBase db) { argument
45 Type type = db.lookupType("OSThread");
H A DVirtualBaseConstructor.java40 private TypeDataBase db; field in class:VirtualBaseConstructor
45 public VirtualBaseConstructor(TypeDataBase db, Type baseType, String packageName, Class unknownTypeHandler) { argument
46 this.db = (HotSpotTypeDataBase)db;
53 for (Iterator iter = db.getTypes(); iter.hasNext(); ) {
87 Type type = db.findDynamicTypeForAddress(addr, baseType);
H A DVirtualConstructor.java42 private TypeDataBase db; field in class:VirtualConstructor
45 public VirtualConstructor(TypeDataBase db) { argument
46 this.db = db;
75 if (db.addressTypeIsEqualToType(addr, db.lookupType(typeName))) {
H A DvmSymbols.java50 private static synchronized void initialize(TypeDataBase db) throws WrongTypeException { argument
51 Type type = db.lookupType("vmSymbols");
53 FIRST_SID = db.lookupIntConstant("vmSymbols::FIRST_SID");
54 SID_LIMIT = db.lookupIntConstant("vmSymbols::SID_LIMIT");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/amd64/
H A DAMD64JavaCallWrapper.java43 private static synchronized void initialize(TypeDataBase db) { argument
44 Type type = db.lookupType("JavaFrameAnchor");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DIA64JavaCallWrapper.java43 private static synchronized void initialize(TypeDataBase db) { argument
44 Type type = db.lookupType("JavaCallWrapper");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/x86/
H A DX86JavaCallWrapper.java43 private static synchronized void initialize(TypeDataBase db) { argument
44 Type type = db.lookupType("JavaFrameAnchor");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicCIntegerType.java37 public BasicCIntegerType(BasicTypeDataBase db, String name, boolean isUnsigned) { argument
38 super(db, name, null);
89 return db.cIntegerTypeMaxValue(getSize(), isUnsigned());
93 return db.cIntegerTypeMinValue(getSize(), isUnsigned());
H A DBasicJBooleanField.java36 public BasicJBooleanField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJBooleanType())) {
41 throw new WrongTypeException("Type of a BasicJBooleanField must be db.getJBooleanType()");
H A DBasicJByteField.java36 public BasicJByteField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJByteType())) {
41 throw new WrongTypeException("Type of a BasicJByteField must be db.getJByteType()");
H A DBasicJCharField.java36 public BasicJCharField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJCharType())) {
41 throw new WrongTypeException("Type of a BasicJCharField must be db.getJCharType()");
H A DBasicJDoubleField.java36 public BasicJDoubleField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJDoubleType())) {
H A DBasicJFloatField.java36 public BasicJFloatField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJFloatType())) {
H A DBasicJIntField.java36 public BasicJIntField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJIntType())) {
H A DBasicJLongField.java36 public BasicJLongField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJLongType())) {
H A DBasicJShortField.java36 public BasicJShortField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
40 if (!type.equals(db.getJShortType())) {
H A DBasicOopField.java41 public BasicOopField(BasicTypeDataBase db, Type containingType, String name, Type type, argument
43 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);

Completed in 47 milliseconds

1234567891011>>