Searched defs:invoke (Results 101 - 125 of 195) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMXBeanProxy.java106 abstract Object invoke(MBeanServerConnection mbsc, method in class:MXBeanProxy.Handler
119 Object invoke(MBeanServerConnection mbsc, ObjectName name, Object[] args) method in class:MXBeanProxy.GetHandler
132 Object invoke(MBeanServerConnection mbsc, ObjectName name, Object[] args) method in class:MXBeanProxy.SetHandler
148 Object invoke(MBeanServerConnection mbsc, ObjectName name, Object[] args) method in class:MXBeanProxy.InvokeHandler
150 return mbsc.invoke(name, getName(), args, signature);
156 public Object invoke(MBeanServerConnection mbsc, ObjectName name, method in class:MXBeanProxy
167 Object result = handler.invoke(mbsc, name, openArgs);
H A DPerInterface.java105 Object invoke(Object resource, String operation, Object[] params, method in class:PerInterface
142 * This method is called when invoke doesn't find the named method.
144 * jmx.invoke.getters property is set, and if so whether the method
145 * being invoked might be a getter or a setter. If so we invoke it
155 * and setters to the operations map when jmx.invoke.getters is set.
177 GetPropertyAction act = new GetPropertyAction("jmx.invoke.getters");
/openjdk7/jdk/src/macosx/native/jobjc/src/core/java/com/apple/jobjc/
H A DInvoke.java34 public abstract void invoke(NativeArgumentBuffer argBuf); method in class:Invoke
35 public abstract void invoke(NativeArgumentBuffer buffer, Struct retvalStruct); method in class:Invoke
40 static native void invoke(long cifPtr, long fxnPtr, long retValPtr, long argsPtr); method in class:Invoke.FunCall
62 @Override public void invoke(final NativeArgumentBuffer argBuf) { method in class:Invoke.FunCall
63 invoke(argBuf, argBuf.retValPtr);
66 @Override public void invoke(final NativeArgumentBuffer buffer, final Struct retvalStruct) { method in class:Invoke.FunCall
67 invoke(buffer, retvalStruct.raw.bufferPtr);
70 void invoke(final NativeArgumentBuffer argBuf, final long retValPtr) { method in class:Invoke.FunCall
71 invoke(cif.cif.bufferPtr, fxnPtr, retValPtr, argBuf.buffer.bufferPtr);
97 @Override public void invoke(fina method in class:Invoke.MsgSend
101 @Override public void invoke(final NativeArgumentBuffer buffer, final Struct retvalStruct) { method in class:Invoke.MsgSend
193 @Override public void invoke(final NativeArgumentBuffer argBuf) { method in class:Invoke.MsgSendSuper
197 @Override public void invoke(final NativeArgumentBuffer buffer, final Struct retvalStruct) { method in class:Invoke.MsgSendSuper
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJExpression.java139 JInvocation invoke(JMethod method); method in interface:JExpression
146 JInvocation invoke(String method); method in interface:JExpression
H A DJExpressionImpl.java146 public final JInvocation invoke(JMethod method) { method in class:JExpressionImpl
147 return JExpr.invoke(this, method);
150 public final JInvocation invoke(String method) { method in class:JExpressionImpl
151 return JExpr.invoke(this, method);
H A DTypedAnnotationWriter.java81 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method in class:TypedAnnotationWriter
85 return method.invoke(this,args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/external/statistics/impl/
H A DAverageRangeStatisticImpl.java140 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method in class:AverageRangeStatisticImpl
145 result = method.invoke(this, args);
H A DCountStatisticImpl.java104 public Object invoke(Object proxy, Method m, Object[] args) throws Throwable { method in class:CountStatisticImpl
109 result = m.invoke(this, args);
H A DRangeStatisticImpl.java126 public Object invoke(Object proxy, Method m, Object[] args) throws Throwable { method in class:RangeStatisticImpl
131 result = m.invoke(this, args);
H A DTimeStatisticImpl.java146 public Object invoke(Object proxy, Method m, Object[] args) throws Throwable { method in class:TimeStatisticImpl
151 result = m.invoke(this, args);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/
H A DAMXClient.java246 public Object invoke(String actionName, Object[] params, String[] signature) method in class:AMXClient
249 return server.invoke(oname, actionName, params, signature);
251 throw new GmbalException( "Exception in invoke", ex ) ;
253 throw new GmbalException( "Exception in invoke", ex ) ;
261 throw new GmbalException( "Exception in invoke", ex ) ;
263 throw new GmbalException( "Exception in invoke", ex ) ;
265 throw new GmbalException( "Exception in invoke", ex ) ;
267 throw new GmbalException( "Exception in invoke", ex ) ;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DNextAction.java65 * invoke the next tube's {@link Tube#processRequest(Packet)},
66 * then later invoke the current tube's {@link Tube#processResponse(Packet)}
69 public void invoke(Tube next, Packet p) { method in class:NextAction
75 * invoke the next tube's {@link Tube#processRequest(Packet)},
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DSEIStub.java126 public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { method in class:SEIStub
129 return handler.invoke(proxy, args);
133 return method.invoke(this, args);
/openjdk7/jdk/test/java/lang/invoke/
H A DCallSiteTest.java34 * --java test.java.lang.invoke.CallSiteTest
37 package test.java.lang.invoke;
41 import java.lang.invoke.*;
42 import static java.lang.invoke.MethodHandles.*;
43 import static java.lang.invoke.MethodType.*;
145 return ((CallSite) MH_bsm_mcs().invoke(lookup(), "foo", methodType(int.class, int.class, int.class))).dynamicInvoker();
157 return ((CallSite) MH_bsm_vcs().invoke(lookup(), "foo", methodType(int.class, int.class, int.class))).dynamicInvoker();
H A DJavaDocExamplesTest.java27 * @summary example code used in javadoc for java.lang.invoke API
29 * @run junit/othervm test.java.lang.invoke.JavaDocExamplesTest
35 $DAVINCI/sources/jdk/test/java/lang/invoke/JavaDocExamplesTest.java
38 test.java.lang.invoke.JavaDocExamplesTest
42 package test.java.lang.invoke;
44 import java.lang.invoke.*;
45 import static java.lang.invoke.MethodHandles.*;
46 import static java.lang.invoke.MethodType.*;
237 // weakly typed invocation (using MHs.invoke)
244 x = mh.invoke("on
[all...]
H A DThrowExceptionsTest.java28 * @run junit test.java.lang.invoke.ThrowExceptionsTest
31 package test.java.lang.invoke;
38 import java.lang.invoke.*;
39 import static java.lang.invoke.MethodHandles.*;
40 import static java.lang.invoke.MethodType.*;
134 m.invoke(this);
197 // invoke method, but invoke methods are not cached if one of the
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DDocletInvoker.java160 retVal = invoke(methodName, null, paramTypes, params);
184 retVal = invoke(methodName, new Integer(0), paramTypes, params);
209 retVal = invoke(methodName, Boolean.TRUE, paramTypes, params);
233 retVal = invoke(methodName, JAVA_1_1, paramTypes, params);
252 private Object invoke(String methodName, Object returnValueIfNonExistent, method in class:DocletInvoker
280 return meth.invoke(null , params);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXMBean.java88 public Object invoke(String operationName) throws Exception { method in class:XMBean
89 Object result = getMBeanServerConnection().invoke(
94 public Object invoke(String operationName, Object params[], String sig[]) method in class:XMBean
96 Object result = getMBeanServerConnection().invoke(
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DMBeanExceptionTest.java126 final String[] ops = {"getAttribute", "setAttribute", "invoke"};
150 mbs.invoke(name, target, null, null);
254 public Object invoke(String opName, Object[] params, String[] sig) method in class:MBeanExceptionTest.DynamicExcept
/openjdk7/jdk/test/javax/management/remote/mandatory/notif/
H A DNotificationBufferDeadlockTest.java174 mbsc.invoke(name, "send", null, null);
221 public Object invoke(Object proxy, Method m, Object[] args) method in class:NotificationBufferDeadlockTest.CreateDuringQueryInvocationHandler
228 Object ret = m.invoke(mbs, args);
/openjdk7/jdk/test/sun/invoke/util/
H A DValueConversionsTest.java24 package test.sun.invoke.util;
26 import sun.invoke.util.ValueConversions;
27 import sun.invoke.util.Wrapper;
28 import java.lang.invoke.MethodType;
29 import java.lang.invoke.MethodHandle;
39 * @run junit/othervm test.sun.invoke.util.ValueConversionsTest
42 * test.sun.invoke.util.ValueConversionsTest
46 // @run junit/othervm -DValueConversionsTest.MAX_ARITY=255 -DValueConversionsTest.EXHAUSTIVE=true test.sun.invoke.util.ValueConversionsTest
351 // invoke target as a spreader also:
356 // invoke th
[all...]
/openjdk7/jdk/src/share/classes/sun/invoke/anon/
H A DConstantPoolVisitor.java26 package sun.invoke.anon;
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DBytecodeName.java26 package sun.invoke.util;
H A DVerifyAccess.java26 package sun.invoke.util;
40 private static final int PACKAGE_ALLOWED = java.lang.invoke.MethodHandles.Lookup.PACKAGE;
48 * Return true if the caller class has privileges to invoke a method
202 public static boolean isTypeVisible(java.lang.invoke.MethodType type, Class<?> refc) {
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DInvoker.java34 * Defines static methods to invoke a completion handler or arbitrary task.
153 static <V,A> void invoke(AsynchronousChannel channel, method in class:Invoker
281 static <V,A> void invoke(PendingFuture<V,A> future) { method in class:Invoker
285 invoke(future.channel(),

Completed in 1794 milliseconds

12345678