Lines Matching refs:strong

267 	int strong;  member
926 static int binder_inc_node(struct binder_node *node, int strong, int internal, in binder_inc_node() argument
929 if (strong) { in binder_inc_node()
961 static int binder_dec_node(struct binder_node *node, int strong, int internal) in binder_dec_node() argument
963 if (strong) { in binder_dec_node()
1099 if (ref->strong) in binder_delete_ref()
1115 static int binder_inc_ref(struct binder_ref *ref, int strong, in binder_inc_ref() argument
1120 if (strong) { in binder_inc_ref()
1121 if (ref->strong == 0) { in binder_inc_ref()
1126 ref->strong++; in binder_inc_ref()
1139 static int binder_dec_ref(struct binder_ref *ref, int strong) in binder_dec_ref() argument
1141 if (strong) { in binder_dec_ref()
1142 if (ref->strong == 0) { in binder_dec_ref()
1145 ref->desc, ref->strong, ref->weak); in binder_dec_ref()
1148 ref->strong--; in binder_dec_ref()
1149 if (ref->strong == 0) { in binder_dec_ref()
1152 ret = binder_dec_node(ref->node, strong, 1); in binder_dec_ref()
1160 ref->desc, ref->strong, ref->weak); in binder_dec_ref()
1165 if (ref->strong == 0 && ref->weak == 0) in binder_dec_ref()
1825 ref->desc, ref->strong, ref->weak, ref->node->debug_id); in binder_thread_write()
2011 ref->strong, ref->weak, ref->node->debug_id); in binder_thread_write()
2269 int strong = node->internal_strong_refs || node->local_strong_refs; in binder_thread_read() local
2270 int weak = !hlist_empty(&node->refs) || node->local_weak_refs || strong; in binder_thread_read()
2278 } else if (strong && !node->has_strong_ref) { in binder_thread_read()
2284 } else if (!strong && node->has_strong_ref) { in binder_thread_read()
2314 if (!weak && !strong) { in binder_thread_read()
3354 ref->node->debug_id, ref->strong, ref->weak, ref->death); in print_binder_ref()
3487 int count, strong, weak; in print_binder_proc_stats() local
3504 strong = 0; in print_binder_proc_stats()
3510 strong += ref->strong; in print_binder_proc_stats()
3513 seq_printf(m, " refs: %d s %d w %d\n", count, strong, weak); in print_binder_proc_stats()