Lines Matching defs:paths
33 char **paths;
240 const char *path = trial->paths[i];
446 char **paths = NULL;
458 paths = calloc(samples_per_frame, sizeof(*paths));
459 if (paths == NULL) {
464 paths[i] = malloc(8);
465 if (paths[i] == NULL) {
469 snprintf(paths[i], 8, "hoge%d", i);
509 trial->paths = paths;
515 if (paths) {
517 free(paths[i]);
518 free(paths);