Searched defs:invoke (Results 1 - 8 of 8) sorted by relevance

/dalvik/tests/044-proxy/src/
H A DClash.java65 public Object invoke(Object proxy, Method method, Object[] args) method in class:ClashInvocationHandler
H A DClash2.java55 public Object invoke(Object proxy, Method method, Object[] args) method in class:Clash2InvocationHandler
H A DClash3.java70 public Object invoke(Object proxy, Method method, Object[] args) method in class:Clash3InvocationHandler
H A DClash4.java72 public Object invoke(Object proxy, Method method, Object[] args) method in class:Clash4InvocationHandler
H A DWrappedThrow.java188 public Object invoke(Object proxy, Method method, Object[] args) method in class:WTInvocationHandler
232 result = method.invoke(mObj, args);
H A DBasicTest.java222 public Object invoke(Object proxy, Method method, Object[] args) method in class:MyInvocationHandler
251 result = method.invoke(mObj, args);
/dalvik/vm/compiler/
H A DInlineTransformation.cpp22 static inline u4 convertRegId(const DecodedInstruction *invoke, argument
31 return invoke->arg[rank];
33 return invoke->vC + rank;
101 * interpreter and re-execute the invoke.
187 * interpreter and re-execute the invoke.
212 * The invoke becomes no-op so it needs an explicit branch to jump to
239 /* The original invoke instruction is effectively turned into NOP */
309 * Analyze the basic block containing an invoke to see if it can be inlined
320 /* No invoke - continue */
329 * If the invoke itsel
[all...]
/dalvik/vm/reflect/
H A DProxy.cpp865 * public Object invoke(Object proxy, Method method, Object[] args)
878 Method* invoke; local
889 * Find the invoke() method, looking in "this"s class. (Because we
893 invoke = dvmFindVirtualMethodHierByDescriptor(handler->clazz, "invoke",
895 if (invoke == NULL) {
896 ALOGE("Unable to find invoke()");
900 ALOGV("invoke: %s.%s, this=%p, handler=%s",
945 * Call h.invoke(proxy, method, args).
954 dvmCallMethod(self, invoke, handle
[all...]

Completed in 229 milliseconds