Searched defs:refType (Results 1 - 25 of 46) sorted by relevance

12

/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 DWatchpointRequest.java66 * @param refType the reference type to filter on.
71 void addClassFilter(ReferenceType refType); argument
H A DStepRequest.java81 * @param refType the reference type to filter on.
86 void addClassFilter(ReferenceType refType); argument
/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 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 DPatternReferenceTypeSpec.java60 public boolean matches(ReferenceType refType) { argument
62 return refType.name().endsWith(classId);
64 return refType.name().equals(classId);
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/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 DExceptionSpec.java57 * The 'refType' is known to match, return the EventRequest.
60 EventRequest resolveEventRequest(ReferenceType refType) { argument
61 EventRequestManager em = refType.virtualMachine().eventRequestManager();
62 ExceptionRequest excReq = em.createExceptionRequest(refType,
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 DEventRequestSpec.java58 * The 'refType' is known to match, return the EventRequest.
60 abstract EventRequest resolveEventRequest(ReferenceType refType) argument
64 * @return If this EventRequestSpec matches the 'refType'
123 for (ReferenceType refType : Env.vm().allClasses()) {
124 if (refType.isPrepared() && refSpec.matches(refType)) {
125 resolved = resolveEventRequest(refType);
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/hotspot/test/runtime/7158988/
H A DFieldMonitor.java87 for (ReferenceType refType : referenceTypes) {
88 addFieldWatch(vm, refType);
121 ReferenceType refType = classPrepEvent
123 addFieldWatch(vm, refType);
210 ReferenceType refType) {
212 Field field = refType.fieldByName(FIELD_NAME);
209 addFieldWatch(VirtualMachine vm, ReferenceType refType) argument
/openjdk7/jdk/test/java/rmi/activation/Activatable/notSerializable/
H A DNotSerializable.java100 private final String refType; field in class:NotSerializable.FakeRemoteRef
102 FakeRemoteRef(String refType) { argument
103 this.refType = refType;
131 return refType;

Completed in 42 milliseconds

12