Home | History | Annotate | Download | only in openssh

Lines Matching defs:cc

388 	struct channel_confirm *cc;
414 while ((cc = TAILQ_FIRST(&c->status_confirms)) != NULL) {
415 if (cc->abandon_cb != NULL)
416 cc->abandon_cb(c, cc->ctx);
417 TAILQ_REMOVE(&c->status_confirms, cc, entry);
418 bzero(cc, sizeof(*cc));
419 xfree(cc);
633 " #%d %.300s (t%d r%d i%d/%d o%d/%d fd %d/%d cc %d)\r\n",
690 struct channel_confirm *cc;
696 cc = xmalloc(sizeof(*cc));
697 cc->cb = cb;
698 cc->abandon_cb = abandon_cb;
699 cc->ctx = ctx;
700 TAILQ_INSERT_TAIL(&c->status_confirms, cc, entry);
2605 struct channel_confirm *cc;
2621 if ((cc = TAILQ_FIRST(&c->status_confirms)) == NULL)
2623 cc->cb(type, c, cc->ctx);
2624 TAILQ_REMOVE(&c->status_confirms, cc, entry);
2625 bzero(cc, sizeof(*cc));
2626 xfree(cc);