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.cpp864 * public Object invoke(Object proxy, Method method, Object[] args)
877 Method* invoke; local
888 * Find the invoke() method, looking in "this"s class. (Because we
892 invoke = dvmFindVirtualMethodHierByDescriptor(handler->clazz, "invoke",
894 if (invoke == NULL) {
895 ALOGE("Unable to find invoke()");
899 ALOGV("invoke: %s.%s, this=%p, handler=%s",
944 * Call h.invoke(proxy, method, args).
953 dvmCallMethod(self, invoke, handle
[all...]

Completed in 93 milliseconds