Lines Matching refs:where
427 struct bus_match_node *where, in bus_match_add_compare_value() argument
436 assert(where); in bus_match_add_compare_value()
437 assert(IN_SET(where->type, BUS_MATCH_ROOT, BUS_MATCH_VALUE)); in bus_match_add_compare_value()
441 for (c = where->child; c && c->type != t; c = c->next) in bus_match_add_compare_value()
469 c->parent = where; in bus_match_add_compare_value()
470 c->next = where->child; in bus_match_add_compare_value()
473 where->child = c; in bus_match_add_compare_value()
539 struct bus_match_node *where, in bus_match_add_leaf() argument
544 assert(where); in bus_match_add_leaf()
545 assert(IN_SET(where->type, BUS_MATCH_ROOT, BUS_MATCH_VALUE)); in bus_match_add_leaf()
553 n->parent = where; in bus_match_add_leaf()
554 n->next = where->child; in bus_match_add_leaf()
561 where->child = n; in bus_match_add_leaf()