Home
last modified time | relevance | path

Searched refs:ptr_eq (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/android/binder/
H A Dtransaction.rs179 (Some(from_parent), Some(next)) => Arc::ptr_eq(from_parent, next), in is_stacked_on()
195 if Arc::ptr_eq(&transaction.from.process, &self.to) { in find_target_thread()
320 (Some(tn1), Some(tn2)) => Arc::ptr_eq(tn1, tn2), in can_replace()
H A Dthread.rs357 if !Arc::ptr_eq(transaction, &old) { in pop_transaction_replied()
472 if Arc::ptr_eq(&t.from, self) { in debug_print()
475 } else if Arc::ptr_eq(&t.to, &self.process) { in debug_print()
1151 Some(current) => Arc::ptr_eq(current, transaction), in is_current_transaction()
H A Dnode.rs682 inner.freeze_list.retain(|proc| !Arc::ptr_eq(proc, p)); in remove_freeze_listener()
778 Arc::ptr_eq(&self.node, &other.node), in absorb()
H A Dfreeze.rs54 Arc::ptr_eq(&self.node, node) && self.is_clearing in allow_duplicate()
/linux/rust/syn/
H A Ddiscouraged.rs177 if !Rc::ptr_eq(&self_unexp, &fork_unexp) { in advance_to()
/linux/rust/kernel/list/
H A Darc.rs406 pub fn ptr_eq(this: &Self, other: &Self) -> bool { in ptr_eq() function
407 Arc::ptr_eq(&this.arc, &other.arc) in ptr_eq()