Home
last modified time | relevance | path

Searched refs:source_file (Results 1 – 4 of 4) sorted by relevance

/scripts/
Dnsdeps46 for source_file in $mod_source_files; do
47 sed '/MODULE_IMPORT_NS/Q' $source_file > ${source_file}.tmp
48 offset=$(wc -l ${source_file}.tmp | awk '{print $1;}')
49 cat $source_file | grep MODULE_IMPORT_NS | LANG=C sort -u >> ${source_file}.tmp
50 tail -n +$((offset +1)) ${source_file} | grep -v MODULE_IMPORT_NS >> ${source_file}.tmp
51 if ! diff -q ${source_file} ${source_file}.tmp; then
52 mv ${source_file}.tmp ${source_file}
54 rm ${source_file}.tmp
/scripts/genksyms/
Dlex.l159 if (!source_file) {
160 source_file = xstrdup(cur_filename);
163 in_source_file = (strcmp(cur_filename, source_file) == 0);
Dgenksyms.h50 extern char *cur_filename, *source_file;
Dgenksyms.c32 char *cur_filename, *source_file; variable