Lines Matching refs:old_method

2669     methodOop old_method = _matching_old_methods[j];
2670 jmethodID jmid = old_method->find_jmethod_id_or_null();
2687 methodOop old_method = _matching_old_methods[j];
2694 != old_method) {
2698 if (MethodComparator::methods_EMCP(old_method, new_method)) {
2772 old_method->set_is_obsolete();
2778 // u2 old_num = old_method->method_idnum();
2779 old_method->set_method_idnum(num);
2786 old_method->name()->as_C_string(),
2787 old_method->signature()->as_C_string()));
2789 old_method->set_is_old();
2792 methodOop old_method = _deleted_methods[i];
2794 assert(old_method->vtable_index() < 0,
2798 old_method->set_is_old();
2799 old_method->set_is_obsolete();
2805 old_method->name()->as_C_string(),
2806 old_method->signature()->as_C_string()));
2924 methodOop old_method = old_methods[j];
2926 if (old_method->is_native() && old_method->has_native_function()) {
2927 methodOop new_method = strip_and_search_for_new_native(old_method);
2932 new_method->set_native_function(old_method->native_function(),
2987 methodOop old_method;
3012 old_method = (methodOop) _old_methods->obj_at(oj);
3013 _deleted_methods[_deleted_methods_length++] = old_method;
3016 old_method = (methodOop) _old_methods->obj_at(oj);
3018 if (old_method->name() == new_method->name()) {
3019 if (old_method->signature() == new_method->signature()) {
3020 _matching_old_methods[_matching_methods_length ] = old_method;
3027 _deleted_methods[_deleted_methods_length++] = old_method;
3031 if (old_method->name()->fast_compare(new_method->name()) > 0) {
3037 _deleted_methods[_deleted_methods_length++] = old_method;