Lines Matching refs:new
50 struct comm_str *iter, *new; in comm_str__findnew() local
67 new = comm_str__alloc(str); in comm_str__findnew()
68 if (!new) in comm_str__findnew()
71 rb_link_node(&new->rb_node, parent, p); in comm_str__findnew()
72 rb_insert_color(&new->rb_node, root); in comm_str__findnew()
74 return new; in comm_str__findnew()
100 struct comm_str *new, *old = comm->comm_str; in comm__override() local
102 new = comm_str__findnew(str, &comm_str_root); in comm__override()
103 if (!new) in comm__override()
106 comm_str__get(new); in comm__override()
108 comm->comm_str = new; in comm__override()