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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/
H A DTypeDataBase.java40 /** Equivalent to lookupIntConstant(constantName, true) */
41 public Integer lookupIntConstant(String constantName); method in interface:TypeDataBase
47 public Integer lookupIntConstant(String constantName, boolean throwException); method in interface:TypeDataBase
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicTypeDataBase.java85 public Integer lookupIntConstant(String constantName) { method in class:BasicTypeDataBase
86 return lookupIntConstant(constantName, true);
89 public Integer lookupIntConstant(String constantName, boolean throwException) { method in class:BasicTypeDataBase
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DVM.java299 stackBias = db.lookupIntConstant("STACK_BIAS").intValue();
300 invocationEntryBCI = db.lookupIntConstant("InvocationEntryBci").intValue();
301 invalidOSREntryBCI = db.lookupIntConstant("InvalidOSREntryBci").intValue();
321 useTLAB = (db.lookupIntConstant("UseTLAB").intValue() != 0);
322 enableInvokeDynamic = (db.lookupIntConstant("EnableInvokeDynamic").intValue() != 0);
327 bytesPerLong = db.lookupIntConstant("BytesPerLong").intValue();
328 heapWordSize = db.lookupIntConstant("HeapWordSize").intValue();
329 oopSize = db.lookupIntConstant("oopSize").intValue();
473 public Integer lookupIntConstant(String name) { method in class:VM
474 return db.lookupIntConstant(nam
[all...]

Completed in 75 milliseconds