Lines Matching refs:method
142 * Update method's "nativeFunc" and "insns" after native method resolution.
144 void dvmSetNativeFunc(const Method* method, DalvikBridgeFunc func,
148 * Set the method's "registerMap" field.
150 void dvmSetRegisterMap(Method* method, const RegisterMap* pMap);
153 * Make a method's DexCode (which includes the bytecode) read-write or
158 void dvmMakeCodeReadWrite(Method* meth);
159 void dvmMakeCodeReadOnly(Method* meth);
185 * Store a copy of the method prototype descriptor string
186 * for the given method into the given DexStringCache, returning the
189 INLINE char* dvmCopyDescriptorStringFromMethod(const Method* method,
193 dexProtoGetMethodDescriptor(&method->prototype, pCache);
199 * given method's prototype. For example, if the method descriptor is
203 INLINE int dvmComputeMethodArgsSize(const Method* method)
205 return dexProtoComputeArgsSize(&method->prototype);
209 * Compare the two method prototypes. The two prototypes are compared
212 INLINE int dvmCompareMethodProtos(const Method* method1,
213 const Method* method2)
219 * Compare the two method prototypes, considering only the parameters
223 INLINE int dvmCompareMethodParameterProtos(const Method* method1,
224 const Method* method2)
230 * Compare the two method names and prototypes, a la strcmp(). The
234 int dvmCompareMethodNamesAndProtos(const Method* method1,
235 const Method* method2);
238 * Compare the two method names and prototypes, a la strcmp(), ignoring
243 int dvmCompareMethodNamesAndParameterProtos(const Method* method1,
244 const Method* method2);
247 * Compare a method descriptor string with the prototype of a method,
252 const Method* method)
255 return -dexProtoCompareToDescriptor(&method->prototype, descriptor);
260 * a method, a la strcmp(). The name is considered the "major" order and
265 const DexProto* proto, const Method* method);
268 * Compare a (name, method descriptor) pair with the (name, prototype) of
269 * a method, a la strcmp(). The name is considered the "major" order and
274 const char* descriptor, const Method* method);