Lines Matching defs:dch
683 parse_dest_constraint_hop(const char *s, struct dest_constraint_hop *dch,
692 memset(dch, '\0', sizeof(*dch));
707 dch->user = xstrdup(user);
722 dch->user = user == NULL ? NULL : xstrdup(user);
723 dch->hostname = xstrdup(host);
732 hke->file, hke->line, dch->nkeys);
733 dch->keys = xrecallocarray(dch->keys, dch->nkeys,
734 dch->nkeys + 1, sizeof(*dch->keys));
735 dch->key_is_ca = xrecallocarray(dch->key_is_ca, dch->nkeys,
736 dch->nkeys + 1, sizeof(*dch->key_is_ca));
738 &(dch->keys[dch->nkeys]))) != 0)
740 dch->key_is_ca[dch->nkeys] = want_ca;
741 dch->nkeys++;
743 if (dch->nkeys == 0)