• Home
  • Raw
  • Download

Lines Matching refs:source_file

80 static int load(const char *source_file, void **dst, size_t *dst_size)  in load()  argument
87 if (strcmp(source_file, "-") == 0) { in load()
90 fd = open(source_file, O_RDONLY); in load()
93 source_file, strerror(-errno)); in load()
213 static int dump(const char *source_file, const char *output_file, int cflags, int sflags) in dump() argument
220 err = load(source_file, (void **)&config, &size); in dump()
249 static int pre_process_conf(const char *source_file, const char *output_file, in pre_process_conf() argument
257 err = load(source_file, (void **)&config, &config_size); in pre_process_conf()
270 inc_path = get_inc_path(source_file); in pre_process_conf()
280 static int compile(const char *source_file, const char *output_file, int cflags, in compile() argument
290 err = load(source_file, (void **)&config, &config_size); in compile()
303 inc_path = get_inc_path(source_file); in compile()
328 source_file, snd_strerror(-err)); in compile()
336 static int decode(const char *source_file, const char *output_file, in decode() argument
345 if (load(source_file, &bin, &size)) in decode()
357 source_file, snd_strerror(-err)); in decode()
398 char *source_file = NULL; in main() local
426 if (source_file) { in main()
430 source_file = optarg; in main()
441 source_file = optarg; in main()
466 if (source_file == NULL || output_file == NULL) { in main()
482 err = compile(source_file, output_file, cflags, pre_processor_defs); in main()
485 err = decode(source_file, output_file, cflags, dflags, sflags); in main()
488 err = pre_process_conf(source_file, output_file, pre_processor_defs); in main()
491 err = dump(source_file, output_file, cflags, sflags); in main()