Searched refs:cvAttributes (Results 1 - 16 of 16) sorted by relevance

/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DLazyType.java33 private int cvAttributes; field in class:LazyType
39 private LazyType(Object key, int cvAttributes) { argument
40 super(null, 0, cvAttributes);
45 this.cvAttributes = cvAttributes;
57 if (cvAttributes != 0) {
58 return t.getCVVariant(cvAttributes);
64 protected Type createCVVariant(int cvAttributes) { argument
65 return new LazyType(key, cvAttributes);
H A DBasicDoubleType.java35 private BasicDoubleType(String name, int size, int cvAttributes) { argument
36 super(name, size, cvAttributes);
45 protected Type createCVVariant(int cvAttributes) { argument
46 return new BasicDoubleType(getName(), getSize(), cvAttributes);
H A DBasicFloatType.java35 private BasicFloatType(String name, int size, int cvAttributes) { argument
36 super(name, size, cvAttributes);
45 protected Type createCVVariant(int cvAttributes) { argument
46 return new BasicFloatType(getName(), getSize(), cvAttributes);
H A DBasicIntType.java37 protected BasicIntType(String name, int size, boolean unsigned, int cvAttributes) { argument
38 super(name, size, cvAttributes);
51 protected Type createCVVariant(int cvAttributes) { argument
52 return new BasicIntType(getName(), getSize(), isUnsigned(), cvAttributes);
H A DBasicType.java34 private int cvAttributes; field in class:BasicType
42 protected BasicType(String name, int size, int cvAttributes) { argument
45 this.cvAttributes = cvAttributes;
81 public boolean isConst() { return ((cvAttributes & CONST) != 0); }
82 public boolean isVolatile() { return ((cvAttributes & VOLATILE) != 0); }
97 public Type getCVVariant(int cvAttributes) { argument
98 Type t = findCVVariant(cvAttributes);
100 t = createCVVariant(cvAttributes);
109 private int getCVAttributes() { return cvAttributes; }
110 createCVVariant(int cvAttributes) argument
111 findCVVariant(int cvAttributes) argument
[all...]
H A DBasicRefType.java37 private BasicRefType(String name, int size, Type targetType, int cvAttributes) { argument
38 super(name, size, cvAttributes);
60 protected Type createCVVariant(int cvAttributes) { argument
61 return new BasicRefType(getName(), getSize(), getTargetType(), cvAttributes);
H A DBasicFunctionType.java39 protected BasicFunctionType(String name, int size, Type returnType, int cvAttributes) { argument
40 super(name, size, cvAttributes);
76 protected Type createCVVariant(int cvAttributes) { argument
77 BasicFunctionType t = new BasicFunctionType(getName(), getSize(), getReturnType(), cvAttributes);
H A DBasicArrayType.java38 private BasicArrayType(String name, Type elementType, int sizeInBytes, int length, int cvAttributes) { argument
39 super(name, sizeInBytes, cvAttributes);
87 protected Type createCVVariant(int cvAttributes) { argument
88 return new BasicArrayType(getName(), getElementType(), getSize(), getLength(), cvAttributes);
H A DBasicMemberFunctionType.java51 int cvAttributes) {
52 super(name, size, returnType, cvAttributes);
77 protected Type createCVVariant(int cvAttributes) { argument
84 cvAttributes);
45 BasicMemberFunctionType(String name, int size, Type returnType, Type containingClass, Type thisType, long thisAdjust, int cvAttributes) argument
H A DBasicPointerType.java37 private BasicPointerType(String name, int size, Type targetType, int cvAttributes) { argument
38 super(name, size, cvAttributes);
60 protected Type createCVVariant(int cvAttributes) { argument
61 return new BasicPointerType(getName(), getSize(), getTargetType(), cvAttributes);
H A DBasicVoidType.java39 protected Type createCVVariant(int cvAttributes) { argument
H A DBasicBitType.java44 private BasicBitType(Type underlyingType, int sizeInBits, int lsbOffset, int cvAttributes) { argument
45 super(null, 0, false, cvAttributes);
93 protected Type createCVVariant(int cvAttributes) { argument
94 return new BasicBitType(underlyingType, getSizeInBits(), getOffset(), cvAttributes);
H A DBasicEnumType.java56 private BasicEnumType(String name, Type underlyingType, int cvAttributes) { argument
57 super(name, 0, false, cvAttributes);
113 protected Type createCVVariant(int cvAttributes) { argument
114 BasicEnumType t = new BasicEnumType(getName(), underlyingType, cvAttributes);
H A DBasicCompoundType.java41 private BasicCompoundType(String name, int size, CompoundTypeKind kind, int cvAttributes) { argument
42 super(name, size, cvAttributes);
132 protected Type createCVVariant(int cvAttributes) { argument
133 BasicCompoundType t = new BasicCompoundType(getName(), getSize(), kind, cvAttributes);
H A DBasicCDebugInfoDataBase.java189 public Type lookupType(String name, int cvAttributes) { argument
195 if (cvAttributes != 0) {
196 t = (BasicType) t.getCVVariant(cvAttributes);
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/cdbg/
H A DCDebugInfoDataBase.java39 public Type lookupType(String name, int cvAttributes); argument

Completed in 53 milliseconds