Lines Matching refs:Method
121 Method* baseMethod;
127 ref = FETCH(1) | (u4)FETCH(2) << 16; /* method ref */
136 ref = FETCH(1); /* method ref */
140 * The object against which we are executing a method is always
160 * Resolve the method. This is the correct method for the static
167 ILOGV("+ unknown method or access denied");
174 * method.
189 * method foo() in Base, and invoke foo() from a method in Base.
193 * the method.
195 dvmThrowAbstractMethodError("abstract method not implemented");
211 LOGW("WRONG METHOD: base=%s.%s virtual[%d]=%s.%s",
227 Method* baseMethod;
233 ref = FETCH(1) | (u4)FETCH(2) << 16; /* method ref */
242 ref = FETCH(1); /* method ref */
261 * Resolve the method. This is the correct method for the static
271 ILOGV("+ unknown method or access denied");
278 * method's class.
280 * We're using the current method's class' superclass, not the
282 * in a method inherited from a superclass, and we want to run
287 * Method does not exist in the superclass. Could happen if
297 dvmThrowAbstractMethodError("abstract method not implemented");
321 ref = FETCH(1) | (u4)FETCH(2) << 16; /* method ref */
330 ref = FETCH(1); /* method ref */
334 * The object against which we are executing a method is always
357 * Given a class and a method index, find the Method* with the
382 ref = FETCH(1) | (u4)FETCH(2) << 16; /* method ref */
391 ref = FETCH(1); /* method ref */
413 ILOGV("+ unknown direct method"); // should be impossible
425 ref = FETCH(1) | (u4)FETCH(2) << 16; /* method ref */
433 method ref */
448 ILOGV("+ unknown method");
479 * The object against which we are executing a method is always
500 * method.
511 dvmThrowAbstractMethodError("abstract method not implemented");
561 * method's class.
563 * We're using the current method's class' superclass, not the
565 * in a method inherited from a superclass, and we want to run
566 * in the method's class' superclass.
572 dvmThrowAbstractMethodError("abstract method not implemented");
626 /* bail without popping the method frame from stack */
633 curMethod = SAVEAREA_FROM_FP(fp)->method;
634 self->interpSave.method = curMethod;
759 const Method* catchMethod = SAVEAREA_FROM_FP(fp)->method;
773 curMethod = SAVEAREA_FROM_FP(fp)->method;
774 self->interpSave.method = curMethod;
808 * Set "methodToCall" to the Method we're calling, and "methodCallRange"
818 * The caller must EXPORT_PC before jumping here, because any method
821 GOTO_TARGET(invokeMethod, bool methodCallRange, const Method* _methodToCall,
889 * the current method's stack frame, and the method to call in
910 LOGV("Stack overflow on method call (start=%p end=%p newBot=%p(%d) size=%d '%s')",
943 newSaveArea->method = methodToCall;
961 self->interpSave.method = curMethod;
972 FINISH(0); // jump to method start
991 * to the method arguments.