Lines Matching defs:new
492 struct chan *new;
509 new = parse_chan(line, in, device, opts, error_out);
510 if (new == NULL)
513 new->input = 1;
514 list_add(&new->list, chans);
515 line->chan_in = new;
517 new = parse_chan(line, out, device, opts, error_out);
518 if (new == NULL)
521 list_add(&new->list, chans);
522 new->output = 1;
523 line->chan_out = new;
526 new = parse_chan(line, str, device, opts, error_out);
527 if (new == NULL)
530 list_add(&new->list, chans);
531 new->input = 1;
532 new->output = 1;
533 line->chan_in = line->chan_out = new;