Lines Matching refs:defaultValue
329 iniFile_getString( IniFile* f, const char* key, const char* defaultValue )
334 if (!defaultValue)
336 val= defaultValue;
343 iniFile_getInteger( IniFile* f, const char* key, int defaultValue )
346 int value = defaultValue;
358 iniFile_getDouble( IniFile* f, const char* key, double defaultValue )
361 double value = defaultValue;
373 iniFile_getBoolean( IniFile* f, const char* key, const char* defaultValue )
378 value = defaultValue;
393 iniFile_getDiskSize( IniFile* f, const char* key, const char* defaultValue )
399 valStr = defaultValue;
416 iniFile_getInt64( IniFile* f, const char* key, int64_t defaultValue )
419 int64_t value = defaultValue;