Searched refs:refType (Results 1 - 25 of 65) sorted by relevance

123

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DAccessWatchpointSpec.java47 * The 'refType' is known to match.
50 void resolve(ReferenceType refType) throws InvalidTypeException, argument
52 if (!(refType instanceof ClassType)) {
55 Field field = refType.fieldByName(fieldId);
59 setRequest(refType.virtualMachine().eventRequestManager()
H A DModificationWatchpointSpec.java47 * The 'refType' is known to match.
50 void resolve(ReferenceType refType) throws InvalidTypeException, argument
52 if (!(refType instanceof ClassType)) {
55 Field field = refType.fieldByName(fieldId);
59 setRequest(refType.virtualMachine().eventRequestManager()
H A DEventRequestSpec.java66 * The 'refType' is known to match.
68 abstract void resolve(ReferenceType refType) throws Exception; argument
77 * The 'refType' is known to match.
79 void resolveNotify(ReferenceType refType) { argument
81 resolve(refType);
91 * See if 'refType' matches and resolve.
93 void attemptResolve(ReferenceType refType) { argument
94 if (!isResolved() && refSpec.matches(refType)) {
95 resolveNotify(refType);
101 for (ReferenceType refType
[all...]
H A DReferenceTypeSpec.java43 boolean matches(ReferenceType refType); argument
H A DSourceNameReferenceTypeSpec.java52 public boolean matches(ReferenceType refType) { argument
54 if (refType.sourceName().equals(sourceName)) {
56 refType.locationsOfLine(linenumber);
H A DLineBreakpointSpec.java50 * The 'refType' is known to match.
53 void resolve(ReferenceType refType) throws InvalidTypeException, argument
55 if (!(refType instanceof ClassType)) {
58 Location location = location((ClassType)refType);
59 setRequest(refType.virtualMachine().eventRequestManager()
H A DExceptionSpec.java78 * The 'refType' is known to match.
81 void resolve(ReferenceType refType) { argument
82 setRequest(refType.virtualMachine().eventRequestManager()
83 .createExceptionRequest(refType,
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DSourceModel.java73 public ReferenceType refType = null; field in class:SourceModel.Line
78 return refType != null;
158 void addClass(ReferenceType refType) { argument
160 if (classes.indexOf(refType) == -1) {
161 classes.add(refType);
163 markClassLines(refType);
189 public void showExecutable(int ln, ReferenceType refType) { argument
190 line(ln).refType = refType;
198 private void markClassLines(ReferenceType refType) { argument
[all...]
H A DSourceManager.java123 public SourceModel sourceForClass(ReferenceType refType) { argument
124 SourceModel sm = classToSource.get(refType);
129 String filename = refType.sourceName();
130 String refName = refType.name();
137 classToSource.put(refType, sm);
176 ReferenceType refType = e.getReferenceType();
177 SourceModel sm = sourceForClass(refType);
179 sm.addClass(refType);
/openjdk7/jdk/test/java/rmi/server/RemoteObject/unrecognizedRefType/
H A DUnrecognizedRefType.java85 FakeRemoteObject(String refType) { argument
86 super(new FakeRemoteRef(refType));
91 private final String refType; field in class:UnrecognizedRefType.FakeRemoteRef
93 FakeRemoteRef(String refType) { argument
94 this.refType = refType;
122 return refType;
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DAccessWatchpointSpec.java48 * The 'refType' is known to match, return the EventRequest.
51 EventRequest resolveEventRequest(ReferenceType refType) argument
53 Field field = refType.fieldByName(fieldId);
54 EventRequestManager em = refType.virtualMachine().eventRequestManager();
H A DModificationWatchpointSpec.java48 * The 'refType' is known to match, return the EventRequest.
51 EventRequest resolveEventRequest(ReferenceType refType) argument
53 Field field = refType.fieldByName(fieldId);
54 EventRequestManager em = refType.virtualMachine().eventRequestManager();
H A DReferenceTypeSpec.java44 boolean matches(ReferenceType refType); argument
H A DPatternReferenceTypeSpec.java68 public boolean matches(ReferenceType refType) { argument
70 return refType.name().endsWith(stem);
72 return refType.name().startsWith(stem);
74 return refType.name().equals(classId);
/openjdk7/jdk/src/share/classes/com/sun/jdi/request/
H A DClassPrepareRequest.java58 * @param refType the reference type to filter on.
63 void addClassFilter(ReferenceType refType); argument
98 * That is, if refType is the ReferenceType being prepared,
101 * refType.availableStrata();
104 * refType.sourceNames(someStratam)
H A DExceptionRequest.java101 * @param refType the reference type to filter on.
106 void addClassFilter(ReferenceType refType); argument
H A DMethodEntryRequest.java65 * @param refType the reference type to filter on.
70 void addClassFilter(ReferenceType refType); argument
H A DMethodExitRequest.java65 * @param refType the reference type to filter on.
70 void addClassFilter(ReferenceType refType); argument
H A DMonitorContendedEnterRequest.java66 * @param refType the reference type to filter on.
71 void addClassFilter(ReferenceType refType); argument
H A DMonitorContendedEnteredRequest.java66 * @param refType the reference type to filter on.
71 void addClassFilter(ReferenceType refType); argument
H A DMonitorWaitRequest.java65 * @param refType the reference type to filter on.
70 void addClassFilter(ReferenceType refType); argument
H A DMonitorWaitedRequest.java65 * @param refType the reference type to filter on.
70 void addClassFilter(ReferenceType refType); argument
H A DStepRequest.java81 * @param refType the reference type to filter on.
86 void addClassFilter(ReferenceType refType); argument
H A DWatchpointRequest.java66 * @param refType the reference type to filter on.
71 void addClassFilter(ReferenceType refType); argument
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DInterfaceTypeImpl.java59 for (ReferenceType refType : vm.allClasses()) {
60 if (refType instanceof InterfaceType) {
61 InterfaceType interfaze = (InterfaceType)refType;
72 for (ReferenceType refType : vm.allClasses()) {
73 if (refType instanceof ClassType) {
74 ClassType clazz = (ClassType)refType;

Completed in 80 milliseconds

123