Lines Matching defs:coll
114 static void dump_coll(struct collection *coll);
162 struct collection *coll = NULL;
365 coll = get_collection(filename, optind, argc, argv);
366 if (!coll)
368 if (coll->cnt == 0) {
376 dump_coll(coll);
403 starts = coll->cnt;
531 c = lrand48() % coll->cnt;
548 run_child(coll->ary[c], running + i, quiet_mode,
556 if (++c >= coll->cnt)
657 fprintf(logfile, "Total Tests: %d\n", coll->cnt);
1179 struct collection *coll;
1186 coll = malloc(sizeof(struct collection));
1187 coll->cnt = 0;
1222 coll->cnt++;
1254 coll->cnt++;
1258 coll->ary = malloc(coll->cnt * sizeof(struct coll_entry *));
1264 coll->ary[i] = n;
1268 if (i != coll->cnt)
1271 return coll;
1452 static void dump_coll(struct collection *coll)
1456 for (i = 0; i < coll->cnt; ++i) {
1457 fprintf(stderr, "coll %d\n", i);
1458 fprintf(stderr, " name=%s cmdline=%s\n", coll->ary[i]->name,
1459 coll->ary[i]->cmdline);