Lines Matching defs:cc
453 CalendarComponent *cc;
479 cc = new0(CalendarComponent, 1);
480 if (!cc)
483 cc->value = value;
484 cc->repeat = repeat;
485 cc->next = *c;
488 *c = cc;
499 CalendarComponent *cc = NULL;
503 cc = new0(CalendarComponent, 1);
504 if (!cc)
507 cc->value = value;
508 cc->repeat = 0;
509 cc->next = *c;
511 *c = cc;
518 CalendarComponent *cc = NULL;
539 r = prepend_component(&t, usec, &cc);
541 free_chain(cc);
546 *c = cc;