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

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DConstantPool.java218 private Symbol implGetNameRefAt(int which, boolean uncached) { argument
219 int signatureIndex = getNameRefIndexAt(implNameAndTypeRefIndexAt(which, uncached));
227 private Symbol implGetSignatureRefAt(int which, boolean uncached) { argument
228 int signatureIndex = getSignatureRefIndexAt(implNameAndTypeRefIndexAt(which, uncached));
233 private int implNameAndTypeRefIndexAt(int which, boolean uncached) { argument
235 if (!uncached && getCache() != null) {
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.cpp311 Symbol* constantPoolOopDesc::impl_name_ref_at(int which, bool uncached) { argument
312 int name_index = name_ref_index_at(impl_name_and_type_ref_index_at(which, uncached));
317 Symbol* constantPoolOopDesc::impl_signature_ref_at(int which, bool uncached) { argument
318 int signature_index = signature_ref_index_at(impl_name_and_type_ref_index_at(which, uncached));
323 int constantPoolOopDesc::impl_name_and_type_ref_index_at(int which, bool uncached) { argument
325 if (!uncached && cache() != NULL) {
349 int constantPoolOopDesc::impl_klass_ref_index_at(int which, bool uncached) { argument
353 if (!uncached && cache() != NULL) {

Completed in 39 milliseconds