Searched refs:inst (Results 1 - 25 of 80) sorted by relevance

1234

/openjdk7/jdk/test/java/lang/instrument/appendToClassLoaderSearch/
H A DAgent.java35 static Instrumentation inst; field in class:Agent
38 inst = ins;
42 return inst;
/openjdk7/jdk/test/java/lang/instrument/
H A DManifestTestAgent.java32 public static void premain(String agentArgs, Instrumentation inst) { argument
35 inst.isNativeMethodPrefixSupported());
37 inst.isRedefineClassesSupported());
39 inst.isRetransformClassesSupported());
H A DRedefineMethodAddInvokeAgent.java32 public static void premain(String agentArgs, Instrumentation inst) { argument
35 inst.isRedefineClassesSupported());
37 instrumentation = inst;
H A DInstrumentationHandoff.java47 premain(String options, Instrumentation inst) argument
50 sInstrumentation = inst;
H A DStressGetObjectSizeApp.java70 private final Instrumentation inst; field in class:StressGetObjectSizeApp.RoundAndRound
73 public RoundAndRound(Instrumentation inst) { argument
74 this.inst = inst;
82 sum += inst.getObjectSize(anObject);
H A DRetransformBigClassAgent.java33 public static void premain(String agentArgs, final Instrumentation inst) throws Exception { argument
38 inst.addTransformer(trans, true /* canRetransform */);
48 inst.retransformClasses(clz);
H A DRetransformAgent.java43 static Instrumentation inst; field in class:RetransformAgent
116 inst = instArg;
120 inst.addTransformer(t1, true);
122 inst.addTransformer(t2, false);
124 inst.addTransformer(t3, true);
126 inst.addTransformer(t4, false);
130 inst.removeTransformer(t3);
133 inst.retransformClasses(new RetransformApp().getClass());
H A DNativeMethodPrefixAgent.java43 static Instrumentation inst; field in class:NativeMethodPrefixAgent
101 inst = instArg;
107 inst.addTransformer(t1, true);
108 inst.addTransformer(t2, false);
109 inst.addTransformer(t0, true);
H A DRedefineBigClassAgent.java39 public static void premain(String agentArgs, final Instrumentation inst) throws Exception { argument
75 inst.redefineClasses(new ClassDefinition[] { cld });
H A DRedefineClassWithNativeMethodAgent.java33 public static void premain(String agentArgs, final Instrumentation inst) throws Exception { argument
64 inst.redefineClasses(new ClassDefinition[] { cld });
/openjdk7/jdk/src/share/classes/sun/tools/asm/
H A DLabel.java76 Instruction inst = next.next;
77 if (inst.opc == opc_label) {
78 inst = ((Label)inst).getDestination().next;
81 if (inst.opc == opc_ifeq) {
83 lbl = (Label)inst.value;
86 lbl.next = inst.next;
87 inst.next = lbl;
92 if (inst.opc == opc_ifne) {
95 lbl.next = inst
[all...]
H A DAssembler.java69 public void add(Instruction inst) { argument
70 if (inst != null) {
71 last.next = inst;
72 last = inst;
119 for (Instruction inst = lbl.next ; inst != null ; inst = inst.next) {
120 switch (inst.pc) {
122 inst
[all...]
/openjdk7/jdk/test/com/sun/tools/attach/
H A DRedefineAgent.java68 public static void testRedefine(Instrumentation inst) throws Exception { argument
69 Class[] classes = inst.getAllLoadedClasses();
75 inst.addTransformer(new RedefineAgent());
77 classes = inst.getAllLoadedClasses();
92 inst.redefineClasses(cd);
101 public static void agentmain(String args, Instrumentation inst) throws Exception { argument
103 System.out.println("RedefineAgent redefine supported: " + inst.isRedefineClassesSupported());
110 testRedefine(inst);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DrelocInfo_sparc.cpp35 jint inst = ip->long_at(0); local
36 assert(inst != NativeInstruction::illegal_instruction(), "no breakpoint");
37 switch (Assembler::inv_op(inst)) {
41 switch (Assembler::inv_op3(inst)) {
70 switch (Assembler::inv_op3(inst)) {
81 guarantee(Assembler::inv_immed(inst), "must have a simm13 field");
84 inst &= ~Assembler::simm( -1, 13);
85 inst |= Assembler::simm(simm13, 13);
87 assert(ip->long_at(0) == inst, "instructions must match");
89 ip->set_long_at(0, inst);
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DJObjCRuntime.java79 static JObjCRuntime inst() { method in class:JObjCRuntime
86 return inst();
110 Unsafe inst = null;
114 inst = (Unsafe) f.get(null);
115 if(inst == null) throw new NullPointerException("Unsafe.theUnsafe == null");
119 return inst;
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWKeyboardFocusManagerPeer.java33 private static final LWKeyboardFocusManagerPeer inst = new LWKeyboardFocusManagerPeer(); field in class:LWKeyboardFocusManagerPeer
39 return inst;
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWKeyboardFocusManagerPeer.java39 private static final WKeyboardFocusManagerPeer inst = new WKeyboardFocusManagerPeer(); field in class:WKeyboardFocusManagerPeer
42 return inst;
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/
H A DMethodDisambiguator.java37 for (final Clazz clazz : TypeCache.inst().getAllClasses()) {
43 disambiguateMethodNamesFor(TypeCache.inst().getClassForName("NSObject"));
46 disambiguateMethodNamesFor(TypeCache.inst().getClassForName("NSProxy"));
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/types/
H A DType.java44 public static Type VOID = Type.getType("void", NVoid.inst(), null);
45 public static Type VOID_PTR = Type.getType("void*", new NPointer(NVoid.inst()), null);
65 exceptions.put("CFTypeRef", getType("CFTypeRef", new NPointer(NVoid.inst()), new NPointer(NVoid.inst()))); // (^v, ^v) vs. (@, @)
69 return TypeCache.inst().pingType(new Type(name, t32, t64));
81 return _getJType!=null ? _getJType : (_getJType = TypeToJType.inst().getJTypeFor(TypeCache.inst().pingType(this)));
114 final Type merged = new Type(NTypeMerger.inst().mergeName(a.name, b.name),
115 NTypeMerger.inst().merge(a.type32, b.type32),
116 NTypeMerger.inst()
[all...]
H A DTypeToJType.java55 public static TypeToJType inst(){ return INST; } method in class:TypeToJType
75 final Clazz clazz = TypeCache.inst().getClassForName(className);
83 final CFType cfType = TypeCache.inst().getCFTypeForName(type.name);
86 final Opaque opaque = TypeCache.inst().getOpaqueForName(type.name);
93 final Type subType = TypeCache.inst().getTypeByName(subDeclaredType);
97 final JType javaType = TypeToJType.inst().getJTypeFor(subType).getParameterizableType();
125 Struct st = TypeCache.inst().getStructForName(type.name);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXKeyboardFocusManagerPeer.java37 private static final XKeyboardFocusManagerPeer inst = new XKeyboardFocusManagerPeer(); field in class:XKeyboardFocusManagerPeer
43 return inst;
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DNativeEnum.java57 if("true".equals(ignore)) return Type.getType(null, NPrimitive.inst('i'), null);
110 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('i'), null); }
119 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('l'), null); }
127 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('f'), null); }
136 @Override public Type getType() { return Type.getType(null, NPrimitive.inst('d'), null); }
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java129 * by its `inst' field. Throws a NoInstanceException
130 * if this not possible because an `inst' field is null.
143 if (that.inst == null)
149 apply(that.inst);
192 return visit(t.inst);
209 if (that.inst == null) {
211 that.inst = syms.objectType;
213 that.inst = hibounds.head;
215 that.inst = types.glb(hibounds);
217 if (that.inst
555 public Type inst(List<Type> actuals, Types types) { method in class:Infer.UninferredMethodType.UninferredReturnType
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/utils/
H A DNTypeMerger.java72 public static NTypeMerger inst(){ return INST; } method in class:NTypeMerger
147 return new NPointer(NTypeMerger.inst().merge(a.subject, b.subject));
154 NTypeMerger.inst().merge(a.type, b.type),
182 return new NArray(a.length, NTypeMerger.inst().merge(a.type, b.type));
185 protected NType accept(NVoid a, NVoid b) { return NVoid.inst(); }
186 protected NType accept(NObject a, NObject b) { return NObject.inst(); }
187 protected NType accept(NClass a, NClass b) { return NClass.inst(); }
188 protected NType accept(NSelector a, NSelector b) { return NSelector.inst(); }
189 protected NType accept(NUnknown a, NUnknown b) { return NUnknown.inst(); }
/openjdk7/langtools/test/tools/javac/types/
H A DGenericTypeWellFormednessTest.java60 Type inst(Type clazz) { method in class:GenericTypeWellFormednessTest.InstantiableType
138 Type inst(Type clazz) {
151 Type inst(Type clazz) {
152 return subst(clazz, Mapping(clazz.getTypeArguments().head, type1.inst(clazz)));
161 Type inst(Type clazz) {
162 Type t = fac.Wildcard(BoundKind.EXTENDS, type1.inst(clazz));
172 Type inst(Type clazz) {
173 Type t = fac.Wildcard(BoundKind.SUPER, type1.inst(clazz));
181 Type inst(Type clazz) {
224 Type inst
[all...]

Completed in 64 milliseconds

1234