Lines Matching refs:old
324 ssize_t old = thread_visibility_counter_.fetch_add(adjustment, std::memory_order_relaxed); in AdjustThreadVisibilityCounter() local
325 if (old + adjustment == 0) { in AdjustThreadVisibilityCounter()
2973 ObjPtr<mirror::Class> old; in FindClass() local
2977 old = class_table->Lookup(descriptor, hash); in FindClass()
2978 if (old == nullptr) { in FindClass()
2979 old = result_ptr; // For the comparison below, after releasing the lock. in FindClass()
2986 if (UNLIKELY(old != result_ptr)) { in FindClass()
2995 return EnsureResolved(self, descriptor, old); in FindClass()
7831 ArtMethod* old = FindSameNameAndSignature(interface_name_comparator, in FindMethod() local
7834 if (old == nullptr) { in FindMethod()
7844 CHECK(old == current_method) << "Multiple default implementations selected!"; in FindMethod()