Lines Matching defs:code_file
575 "pipeline codegen <spec_file> <code_file>\n";
585 FILE *code_file = NULL;
601 code_file = fopen(tokens[3], "w");
602 if (!code_file) {
609 code_file,
614 fclose(code_file);
624 "pipeline libbuild <code_file> <lib_file>\n";
633 char *code_file, *lib_file, *obj_file = NULL, *log_file = NULL;
662 code_file = tokens[2];
663 length = strnlen(code_file, MAX_LINE_SIZE);
665 (code_file[length - 2] != '.') ||
666 (code_file[length - 1] != 'c')) {
667 snprintf(out, out_size, MSG_ARG_INVALID, "code_file");
724 code_file,