Lines Matching defs:file
5 This file is part of the SANE package.
30 the executable file might be covered by the GNU General Public
166 static int get_value(int section, int option, int defvalue, int file);
183 static int srt_hp3970_scanparam_get(int file, int option, int defvalue);
190 static int srt_hp4370_scanparam_get(int file, int option, int defvalue);
5652 static int srt_hp3970_scanparam_get(int file, int option, int defvalue)
5666 switch(file)
5701 static int srt_hp4370_scanparam_get(int file, int option, int defvalue)
5715 switch(file)
5750 static int srt_scancali_get(int file, int option, int defvalue)
5767 switch(file)
5807 static int srt_truegrayparam_get(int file, int option, int defvalue)
5820 switch(file)
5840 static int srt_caliparam_get(int file, int option, int defvalue)
5853 switch(file)
5953 static int srt_scaninfo_get(int file, int option, int defvalue)
5962 switch(file)
5984 static int srt_sec_get(int file, int section, int option, int defvalue)
5997 case HP4370: rst = srt_hp4370_scanparam_get(file, option, defvalue); break;
5998 default : rst = srt_hp3970_scanparam_get(file, option, defvalue); break;
6002 rst = srt_scancali_get(file, option, defvalue); break;
6004 rst = srt_truegrayparam_get(file, option, defvalue); break;
6006 rst = srt_caliparam_get(file, option, defvalue); break;
6020 rst = srt_scaninfo_get(file, option, defvalue); break;
6026 static int get_value(int section, int option, int defvalue, int file)
6030 switch(file)
6038 rst = srt_sec_get(file, section, option, defvalue); break;